From 2722609ed8cf1f24bb6a8b8a5ad9d7ac6dec58c3 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Thu, 19 Sep 2024 06:57:09 +0200 Subject: Merging upstream version 7.4.7. Signed-off-by: Daniel Baumann --- CHANGES.rst | 316 +- EXAMPLES.rst | 15 +- PKG-INFO | 41 +- doc/_static/conf.py.txt | 346 -- doc/_static/diagrams/sphinx_build_flow.dot | 47 + doc/_static/diagrams/sphinx_core_events_flow.dot | 125 + doc/_static/jupyter-logo.png | Bin 0 -> 128882 bytes doc/_static/linux-logo.png | Bin 0 -> 616389 bytes doc/_static/more.png | Bin 1351 -> 0 bytes doc/_static/python-logo.png | Bin 0 -> 187483 bytes doc/_themes/sphinx13/layout.html | 89 +- doc/_themes/sphinx13/static/sphinx13.css | 345 +- doc/conf.py | 105 +- doc/development/builders.rst | 28 - doc/development/howtos/builders.rst | 28 + doc/development/howtos/index.rst | 8 + doc/development/howtos/setup_extension.rst | 27 + doc/development/html_themes/index.rst | 456 ++ doc/development/html_themes/templating.rst | 479 +++ doc/development/index.rst | 29 +- doc/development/overview.rst | 32 - doc/development/templating.rst | 479 --- doc/development/theming.rst | 433 -- doc/development/tutorials/adding_domain.rst | 237 + doc/development/tutorials/autodoc_ext.rst | 16 +- .../tutorials/examples/autodoc_intenum.py | 7 +- doc/development/tutorials/examples/helloworld.py | 25 +- doc/development/tutorials/examples/recipe.py | 1 + doc/development/tutorials/examples/todo.py | 3 +- doc/development/tutorials/extending_build.rst | 379 ++ doc/development/tutorials/extending_syntax.rst | 223 + doc/development/tutorials/helloworld.rst | 189 - doc/development/tutorials/index.rst | 17 +- doc/development/tutorials/recipe.rst | 227 - doc/development/tutorials/todo.rst | 367 -- doc/extdev/appapi.rst | 288 +- doc/extdev/builderapi.rst | 38 +- doc/extdev/deprecated.rst | 2 +- doc/extdev/envapi.rst | 2 + doc/extdev/event_callbacks.rst | 424 ++ doc/extdev/index.rst | 9 +- doc/extdev/markupapi.rst | 161 +- doc/extdev/utils.rst | 9 + doc/faq.rst | 10 +- doc/glossary.rst | 11 +- doc/index.rst | 156 +- doc/internals/contributing.rst | 8 +- doc/latex.rst | 437 +- doc/man/sphinx-apidoc.rst | 26 +- doc/man/sphinx-autogen.rst | 5 + doc/man/sphinx-build.rst | 10 +- doc/man/sphinx-quickstart.rst | 12 +- doc/support.rst | 29 +- doc/tutorial/automatic-doc-generation.rst | 2 +- doc/tutorial/deploying.rst | 2 +- doc/tutorial/describing-code.rst | 2 +- doc/tutorial/index.rst | 5 +- doc/tutorial/narrative-documentation.rst | 2 +- doc/usage/advanced/intl.rst | 127 +- doc/usage/advanced/websupport/quickstart.rst | 2 +- doc/usage/builders/index.rst | 24 +- doc/usage/configuration.rst | 4543 ++++++++++++-------- doc/usage/domains/c.rst | 4 +- doc/usage/domains/cpp.rst | 2 +- doc/usage/domains/index.rst | 4 +- doc/usage/domains/javascript.rst | 2 +- doc/usage/domains/python.rst | 68 +- doc/usage/domains/restructuredtext.rst | 13 +- doc/usage/domains/standard.rst | 38 + doc/usage/extensions/autodoc.rst | 81 +- doc/usage/extensions/autosectionlabel.rst | 4 +- doc/usage/extensions/autosummary.rst | 2 +- doc/usage/extensions/coverage.rst | 61 +- doc/usage/extensions/doctest.rst | 18 +- doc/usage/extensions/graphviz.rst | 4 +- doc/usage/extensions/ifconfig.rst | 2 +- doc/usage/extensions/inheritance.rst | 2 +- doc/usage/extensions/intersphinx.rst | 4 +- doc/usage/extensions/math.rst | 2 +- doc/usage/installation.rst | 218 +- doc/usage/quickstart.rst | 80 +- doc/usage/referencing.rst | 43 +- doc/usage/restructuredtext/basics.rst | 72 +- doc/usage/restructuredtext/directives.rst | 395 +- doc/usage/restructuredtext/field-lists.rst | 6 +- doc/usage/restructuredtext/index.rst | 5 +- doc/usage/restructuredtext/roles.rst | 2 +- doc/usage/theming.rst | 4 +- pyproject.toml | 54 +- sphinx/__init__.py | 11 +- sphinx/_cli/__init__.py | 296 ++ sphinx/_cli/util/__init__.py | 0 sphinx/_cli/util/colour.py | 103 + sphinx/_cli/util/errors.py | 165 + sphinx/application.py | 121 +- sphinx/builders/__init__.py | 74 +- sphinx/builders/_epub_base.py | 16 +- sphinx/builders/changes.py | 4 +- sphinx/builders/epub3.py | 4 +- sphinx/builders/gettext.py | 20 +- sphinx/builders/html/__init__.py | 142 +- sphinx/builders/latex/__init__.py | 10 +- sphinx/builders/latex/constants.py | 5 + sphinx/builders/linkcheck.py | 111 +- sphinx/builders/texinfo.py | 2 +- sphinx/cmd/build.py | 2 +- sphinx/cmd/quickstart.py | 22 +- sphinx/config.py | 105 +- sphinx/directives/__init__.py | 39 +- sphinx/directives/code.py | 27 +- sphinx/directives/other.py | 27 +- sphinx/directives/patches.py | 26 + sphinx/domains/__init__.py | 2 +- sphinx/domains/c/__init__.py | 10 +- sphinx/domains/c/_ast.py | 448 +- sphinx/domains/c/_symbol.py | 223 +- sphinx/domains/changeset.py | 7 +- sphinx/domains/cpp/__init__.py | 11 +- sphinx/domains/cpp/_ast.py | 847 +++- sphinx/domains/cpp/_symbol.py | 3 + sphinx/domains/javascript.py | 11 +- sphinx/domains/math.py | 5 +- sphinx/domains/python/__init__.py | 52 +- sphinx/domains/python/_annotations.py | 24 +- sphinx/domains/python/_object.py | 12 +- sphinx/domains/rst.py | 4 +- sphinx/domains/std/__init__.py | 109 +- sphinx/environment/__init__.py | 52 +- sphinx/environment/adapters/indexentries.py | 95 +- sphinx/environment/adapters/toctree.py | 2 +- sphinx/environment/collectors/__init__.py | 22 +- sphinx/environment/collectors/asset.py | 8 +- sphinx/environment/collectors/toctree.py | 41 +- sphinx/events.py | 13 +- sphinx/ext/apidoc.py | 547 ++- sphinx/ext/autodoc/__init__.py | 38 +- sphinx/ext/autodoc/directive.py | 23 +- sphinx/ext/autodoc/mock.py | 17 +- sphinx/ext/autodoc/preserve_defaults.py | 2 +- sphinx/ext/autodoc/typehints.py | 4 +- sphinx/ext/autosummary/__init__.py | 33 +- sphinx/ext/autosummary/generate.py | 435 +- .../autosummary/templates/autosummary/module.rst | 28 +- sphinx/ext/coverage.py | 126 +- sphinx/ext/duration.py | 13 +- sphinx/ext/extlinks.py | 5 +- sphinx/ext/graphviz.py | 6 +- sphinx/ext/ifconfig.py | 3 +- sphinx/ext/imgconverter.py | 1 + sphinx/ext/imgmath.py | 13 +- sphinx/ext/inheritance_diagram.py | 6 +- sphinx/ext/intersphinx.py | 859 ---- sphinx/ext/intersphinx/__init__.py | 81 + sphinx/ext/intersphinx/__main__.py | 10 + sphinx/ext/intersphinx/_cli.py | 44 + sphinx/ext/intersphinx/_load.py | 253 ++ sphinx/ext/intersphinx/_resolve.py | 508 +++ sphinx/ext/intersphinx/_shared.py | 53 + sphinx/ext/mathjax.py | 2 +- sphinx/ext/todo.py | 8 +- sphinx/io.py | 8 +- sphinx/locale/__init__.py | 6 +- sphinx/locale/ar/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/ar/LC_MESSAGES/sphinx.mo | Bin 7421 -> 7421 bytes sphinx/locale/ar/LC_MESSAGES/sphinx.po | 1149 +++-- sphinx/locale/bg/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/bg/LC_MESSAGES/sphinx.mo | Bin 492 -> 1082 bytes sphinx/locale/bg/LC_MESSAGES/sphinx.po | 1160 +++-- sphinx/locale/bn/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/bn/LC_MESSAGES/sphinx.mo | Bin 7519 -> 7443 bytes sphinx/locale/bn/LC_MESSAGES/sphinx.po | 1151 +++-- sphinx/locale/ca/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/ca/LC_MESSAGES/sphinx.mo | Bin 86082 -> 88014 bytes sphinx/locale/ca/LC_MESSAGES/sphinx.po | 1155 +++-- sphinx/locale/cak/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/cak/LC_MESSAGES/sphinx.mo | Bin 2391 -> 2391 bytes sphinx/locale/cak/LC_MESSAGES/sphinx.po | 1149 +++-- sphinx/locale/cs/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/cs/LC_MESSAGES/sphinx.mo | Bin 7745 -> 7680 bytes sphinx/locale/cs/LC_MESSAGES/sphinx.po | 1151 +++-- sphinx/locale/cy/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/cy/LC_MESSAGES/sphinx.mo | Bin 5631 -> 5570 bytes sphinx/locale/cy/LC_MESSAGES/sphinx.po | 1151 +++-- sphinx/locale/da/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/da/LC_MESSAGES/sphinx.mo | Bin 12137 -> 12076 bytes sphinx/locale/da/LC_MESSAGES/sphinx.po | 1151 +++-- sphinx/locale/de/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/de/LC_MESSAGES/sphinx.mo | Bin 10544 -> 10469 bytes sphinx/locale/de/LC_MESSAGES/sphinx.po | 1151 +++-- sphinx/locale/de_DE/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/de_DE/LC_MESSAGES/sphinx.mo | Bin 505 -> 505 bytes sphinx/locale/de_DE/LC_MESSAGES/sphinx.po | 1149 +++-- sphinx/locale/el/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/el/LC_MESSAGES/sphinx.mo | Bin 77824 -> 77705 bytes sphinx/locale/el/LC_MESSAGES/sphinx.po | 1195 ++--- sphinx/locale/en_DE/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/en_DE/LC_MESSAGES/sphinx.mo | Bin 506 -> 506 bytes sphinx/locale/en_DE/LC_MESSAGES/sphinx.po | 1193 ++--- sphinx/locale/en_FR/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo | Bin 462 -> 462 bytes sphinx/locale/en_FR/LC_MESSAGES/sphinx.po | 1193 ++--- sphinx/locale/en_GB/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo | Bin 73526 -> 73428 bytes sphinx/locale/en_GB/LC_MESSAGES/sphinx.po | 1195 ++--- sphinx/locale/en_HK/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo | Bin 508 -> 508 bytes sphinx/locale/en_HK/LC_MESSAGES/sphinx.po | 1193 ++--- sphinx/locale/eo/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/eo/LC_MESSAGES/sphinx.mo | Bin 1864 -> 1803 bytes sphinx/locale/eo/LC_MESSAGES/sphinx.po | 1195 ++--- sphinx/locale/es/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/es/LC_MESSAGES/sphinx.mo | Bin 78628 -> 78561 bytes sphinx/locale/es/LC_MESSAGES/sphinx.po | 1195 ++--- sphinx/locale/es_CO/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/es_CO/LC_MESSAGES/sphinx.mo | Bin 546 -> 546 bytes sphinx/locale/es_CO/LC_MESSAGES/sphinx.po | 1193 ++--- sphinx/locale/et/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/et/LC_MESSAGES/sphinx.mo | Bin 31448 -> 31387 bytes sphinx/locale/et/LC_MESSAGES/sphinx.po | 1195 ++--- sphinx/locale/eu/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/eu/LC_MESSAGES/sphinx.mo | Bin 6451 -> 6389 bytes sphinx/locale/eu/LC_MESSAGES/sphinx.po | 1195 ++--- sphinx/locale/fa/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/fa/LC_MESSAGES/sphinx.mo | Bin 94375 -> 94255 bytes sphinx/locale/fa/LC_MESSAGES/sphinx.po | 1195 ++--- sphinx/locale/fi/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/fi/LC_MESSAGES/sphinx.mo | Bin 2860 -> 2860 bytes sphinx/locale/fi/LC_MESSAGES/sphinx.po | 1193 ++--- sphinx/locale/fr/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/fr/LC_MESSAGES/sphinx.mo | Bin 83602 -> 88982 bytes sphinx/locale/fr/LC_MESSAGES/sphinx.po | 1243 +++--- sphinx/locale/fr_FR/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo | Bin 555 -> 555 bytes sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po | 1193 ++--- sphinx/locale/gl/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/gl/LC_MESSAGES/sphinx.mo | Bin 82300 -> 82164 bytes sphinx/locale/gl/LC_MESSAGES/sphinx.po | 1195 ++--- sphinx/locale/he/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/he/LC_MESSAGES/sphinx.mo | Bin 4723 -> 4723 bytes sphinx/locale/he/LC_MESSAGES/sphinx.po | 1193 ++--- sphinx/locale/hi/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/hi/LC_MESSAGES/sphinx.mo | Bin 93942 -> 93768 bytes sphinx/locale/hi/LC_MESSAGES/sphinx.po | 1195 ++--- sphinx/locale/hi_IN/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo | Bin 502 -> 502 bytes sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po | 1193 ++--- sphinx/locale/hr/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/hr/LC_MESSAGES/sphinx.mo | Bin 15878 -> 15818 bytes sphinx/locale/hr/LC_MESSAGES/sphinx.po | 1195 ++--- sphinx/locale/hu/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/hu/LC_MESSAGES/sphinx.mo | Bin 10914 -> 10846 bytes sphinx/locale/hu/LC_MESSAGES/sphinx.po | 1195 ++--- sphinx/locale/id/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/id/LC_MESSAGES/sphinx.mo | Bin 58320 -> 58227 bytes sphinx/locale/id/LC_MESSAGES/sphinx.po | 1195 ++--- sphinx/locale/is/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/is/LC_MESSAGES/sphinx.mo | Bin 2614 -> 2614 bytes sphinx/locale/is/LC_MESSAGES/sphinx.po | 1193 ++--- sphinx/locale/it/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/it/LC_MESSAGES/sphinx.mo | Bin 9978 -> 10143 bytes sphinx/locale/it/LC_MESSAGES/sphinx.po | 1208 +++--- sphinx/locale/ja/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/ja/LC_MESSAGES/sphinx.mo | Bin 83408 -> 83351 bytes sphinx/locale/ja/LC_MESSAGES/sphinx.po | 1195 ++--- sphinx/locale/ka/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/ka/LC_MESSAGES/sphinx.mo | Bin 72238 -> 72338 bytes sphinx/locale/ka/LC_MESSAGES/sphinx.po | 1193 ++--- sphinx/locale/ko/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/ko/LC_MESSAGES/sphinx.mo | Bin 79948 -> 79863 bytes sphinx/locale/ko/LC_MESSAGES/sphinx.po | 1195 ++--- sphinx/locale/lt/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/lt/LC_MESSAGES/sphinx.mo | Bin 6779 -> 6716 bytes sphinx/locale/lt/LC_MESSAGES/sphinx.po | 1195 ++--- sphinx/locale/lv/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/lv/LC_MESSAGES/sphinx.mo | Bin 6449 -> 6387 bytes sphinx/locale/lv/LC_MESSAGES/sphinx.po | 1195 ++--- sphinx/locale/mk/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/mk/LC_MESSAGES/sphinx.mo | Bin 2011 -> 2011 bytes sphinx/locale/mk/LC_MESSAGES/sphinx.po | 1193 ++--- sphinx/locale/nb_NO/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo | Bin 7786 -> 7726 bytes sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po | 1195 ++--- sphinx/locale/ne/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/ne/LC_MESSAGES/sphinx.mo | Bin 8447 -> 8387 bytes sphinx/locale/ne/LC_MESSAGES/sphinx.po | 1195 ++--- sphinx/locale/nl/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/nl/LC_MESSAGES/sphinx.mo | Bin 18068 -> 18008 bytes sphinx/locale/nl/LC_MESSAGES/sphinx.po | 1195 ++--- sphinx/locale/pl/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/pl/LC_MESSAGES/sphinx.mo | Bin 28277 -> 28282 bytes sphinx/locale/pl/LC_MESSAGES/sphinx.po | 1195 ++--- sphinx/locale/pt/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/pt/LC_MESSAGES/sphinx.mo | Bin 544 -> 544 bytes sphinx/locale/pt/LC_MESSAGES/sphinx.po | 1193 ++--- sphinx/locale/pt_BR/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo | Bin 83715 -> 88825 bytes sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po | 1203 +++--- sphinx/locale/pt_PT/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo | Bin 7711 -> 7649 bytes sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po | 1195 ++--- sphinx/locale/ro/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/ro/LC_MESSAGES/sphinx.mo | Bin 8204 -> 8144 bytes sphinx/locale/ro/LC_MESSAGES/sphinx.po | 1195 ++--- sphinx/locale/ru/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/ru/LC_MESSAGES/sphinx.mo | Bin 15170 -> 38486 bytes sphinx/locale/ru/LC_MESSAGES/sphinx.po | 1570 ++++--- sphinx/locale/si/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/si/LC_MESSAGES/sphinx.mo | Bin 3488 -> 3488 bytes sphinx/locale/si/LC_MESSAGES/sphinx.po | 1193 ++--- sphinx/locale/sk/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/sk/LC_MESSAGES/sphinx.mo | Bin 64286 -> 64191 bytes sphinx/locale/sk/LC_MESSAGES/sphinx.po | 1195 ++--- sphinx/locale/sl/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/sl/LC_MESSAGES/sphinx.mo | Bin 5105 -> 5044 bytes sphinx/locale/sl/LC_MESSAGES/sphinx.po | 1195 ++--- sphinx/locale/sphinx.pot | 1196 +++--- sphinx/locale/sq/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/sq/LC_MESSAGES/sphinx.mo | Bin 81067 -> 84403 bytes sphinx/locale/sq/LC_MESSAGES/sphinx.po | 1201 +++--- sphinx/locale/sr/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/sr/LC_MESSAGES/sphinx.mo | Bin 9125 -> 9125 bytes sphinx/locale/sr/LC_MESSAGES/sphinx.po | 1193 ++--- sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo | Bin 584 -> 584 bytes sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo | Bin 579 -> 579 bytes sphinx/locale/sv/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/sv/LC_MESSAGES/sphinx.mo | Bin 6436 -> 6376 bytes sphinx/locale/sv/LC_MESSAGES/sphinx.po | 1195 ++--- sphinx/locale/ta/LC_MESSAGES/sphinx.js | 108 +- sphinx/locale/ta/LC_MESSAGES/sphinx.mo | Bin 137491 -> 647 bytes sphinx/locale/ta/LC_MESSAGES/sphinx.po | 3003 +++++++------ sphinx/locale/te/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/te/LC_MESSAGES/sphinx.mo | Bin 489 -> 489 bytes sphinx/locale/te/LC_MESSAGES/sphinx.po | 1193 ++--- sphinx/locale/tr/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/tr/LC_MESSAGES/sphinx.mo | Bin 55037 -> 54937 bytes sphinx/locale/tr/LC_MESSAGES/sphinx.po | 1195 ++--- sphinx/locale/uk_UA/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo | Bin 6287 -> 6220 bytes sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po | 1195 ++--- sphinx/locale/ur/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/ur/LC_MESSAGES/sphinx.mo | Bin 487 -> 487 bytes sphinx/locale/ur/LC_MESSAGES/sphinx.po | 1193 ++--- sphinx/locale/vi/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/vi/LC_MESSAGES/sphinx.mo | Bin 5710 -> 5644 bytes sphinx/locale/vi/LC_MESSAGES/sphinx.po | 1195 ++--- sphinx/locale/yue/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/yue/LC_MESSAGES/sphinx.mo | Bin 487 -> 487 bytes sphinx/locale/yue/LC_MESSAGES/sphinx.po | 1193 ++--- sphinx/locale/zh_HK/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo | Bin 501 -> 501 bytes sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po | 1193 ++--- sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo | Bin 516 -> 516 bytes sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po | 1193 ++--- sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo | Bin 74071 -> 79254 bytes sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po | 1251 +++--- sphinx/registry.py | 8 +- sphinx/roles.py | 2 +- sphinx/search/__init__.py | 26 +- sphinx/templates/apidoc/module.rst.jinja | 9 + sphinx/templates/apidoc/module.rst_t | 9 - sphinx/templates/apidoc/package.rst.jinja | 57 + sphinx/templates/apidoc/package.rst_t | 57 - sphinx/templates/apidoc/toc.rst.jinja | 8 + sphinx/templates/apidoc/toc.rst_t | 8 - sphinx/templates/epub3/content.opf.jinja | 50 + sphinx/templates/epub3/content.opf_t | 50 - sphinx/templates/epub3/nav.xhtml.jinja | 26 + sphinx/templates/epub3/nav.xhtml_t | 26 - sphinx/templates/epub3/toc.ncx.jinja | 24 + sphinx/templates/epub3/toc.ncx_t | 24 - sphinx/templates/gettext/message.pot.jinja | 33 + sphinx/templates/gettext/message.pot_t | 33 - sphinx/templates/imgmath/preview.tex.jinja | 18 + sphinx/templates/imgmath/preview.tex_t | 18 - sphinx/templates/imgmath/template.tex.jinja | 14 + sphinx/templates/imgmath/template.tex_t | 14 - sphinx/templates/latex/latex.tex.jinja | 108 + sphinx/templates/latex/latex.tex_t | 108 - sphinx/templates/latex/longtable.tex.jinja | 74 + sphinx/templates/latex/longtable.tex_t | 74 - sphinx/templates/latex/sphinxmessages.sty.jinja | 21 + sphinx/templates/latex/sphinxmessages.sty_t | 21 - sphinx/templates/latex/tabular.tex.jinja | 54 + sphinx/templates/latex/tabular.tex_t | 54 - sphinx/templates/latex/tabulary.tex.jinja | 54 + sphinx/templates/latex/tabulary.tex_t | 54 - sphinx/templates/quickstart/Makefile.jinja | 98 + sphinx/templates/quickstart/Makefile.new.jinja | 21 + sphinx/templates/quickstart/Makefile.new_t | 21 - sphinx/templates/quickstart/Makefile_t | 98 - sphinx/templates/quickstart/conf.py.jinja | 71 + sphinx/templates/quickstart/conf.py_t | 71 - sphinx/templates/quickstart/make.bat.jinja | 110 + sphinx/templates/quickstart/make.bat.new.jinja | 36 + sphinx/templates/quickstart/make.bat.new_t | 36 - sphinx/templates/quickstart/make.bat_t | 110 - sphinx/templates/quickstart/root_doc.rst.jinja | 18 + sphinx/templates/quickstart/root_doc.rst_t | 21 - sphinx/testing/fixtures.py | 42 +- sphinx/testing/path.py | 8 +- sphinx/testing/util.py | 21 +- sphinx/texinputs/Makefile.jinja | 92 + sphinx/texinputs/Makefile_t | 92 - sphinx/texinputs/latexmkjarc.jinja | 22 + sphinx/texinputs/latexmkjarc_t | 22 - sphinx/texinputs/latexmkrc.jinja | 32 + sphinx/texinputs/latexmkrc_t | 32 - sphinx/texinputs/make.bat.jinja | 50 + sphinx/texinputs/make.bat_t | 50 - sphinx/texinputs/sphinx.sty | 781 ++-- sphinx/texinputs/sphinxlatexadmonitions.sty | 275 +- sphinx/texinputs/sphinxlatexliterals.sty | 25 +- sphinx/texinputs/sphinxlatexstyletext.sty | 42 +- sphinx/texinputs/sphinxlatextables.sty | 25 +- sphinx/texinputs/sphinxpackageboxes.sty | 57 +- sphinx/texinputs/sphinxpackagefootnote.sty | 7 +- sphinx/texinputs_win/Makefile.jinja | 86 + sphinx/texinputs_win/Makefile_t | 86 - sphinx/themes/agogo/layout.html | 6 +- sphinx/themes/agogo/static/agogo.css.jinja | 563 +++ sphinx/themes/agogo/static/agogo.css_t | 563 --- sphinx/themes/basic/genindex-single.html | 3 +- sphinx/themes/basic/layout.html | 9 +- sphinx/themes/basic/static/basic.css.jinja | 925 ++++ sphinx/themes/basic/static/basic.css_t | 925 ---- .../basic/static/documentation_options.js.jinja | 13 + .../themes/basic/static/documentation_options.js_t | 13 - sphinx/themes/basic/static/language_data.js.jinja | 26 + sphinx/themes/basic/static/language_data.js_t | 26 - sphinx/themes/basic/static/searchtools.js | 7 +- sphinx/themes/bizstyle/static/bizstyle.css.jinja | 523 +++ sphinx/themes/bizstyle/static/bizstyle.css_t | 523 --- sphinx/themes/bizstyle/static/bizstyle.js.jinja | 30 + sphinx/themes/bizstyle/static/bizstyle.js_t | 30 - sphinx/themes/classic/static/classic.css.jinja | 353 ++ sphinx/themes/classic/static/classic.css_t | 353 -- sphinx/themes/classic/static/sidebar.js.jinja | 72 + sphinx/themes/classic/static/sidebar.js_t | 72 - sphinx/themes/epub/static/epub.css.jinja | 734 ++++ sphinx/themes/epub/static/epub.css_t | 734 ---- sphinx/themes/haiku/layout.html | 8 +- sphinx/themes/haiku/static/haiku.css.jinja | 375 ++ sphinx/themes/haiku/static/haiku.css_t | 375 -- sphinx/themes/nature/static/nature.css.jinja | 252 ++ sphinx/themes/nature/static/nature.css_t | 252 -- sphinx/themes/nonav/static/nonav.css.jinja | 589 +++ sphinx/themes/nonav/static/nonav.css_t | 589 --- sphinx/themes/pyramid/layout.html | 2 +- sphinx/themes/pyramid/static/epub.css.jinja | 312 ++ sphinx/themes/pyramid/static/epub.css_t | 312 -- sphinx/themes/pyramid/static/pyramid.css.jinja | 348 ++ sphinx/themes/pyramid/static/pyramid.css_t | 348 -- sphinx/themes/scrolls/layout.html | 4 +- sphinx/themes/scrolls/static/scrolls.css.jinja | 502 +++ sphinx/themes/scrolls/static/scrolls.css_t | 502 --- sphinx/themes/sphinxdoc/static/sphinxdoc.css.jinja | 354 ++ sphinx/themes/sphinxdoc/static/sphinxdoc.css_t | 354 -- .../traditional/static/traditional.css.jinja | 765 ++++ sphinx/themes/traditional/static/traditional.css_t | 765 ---- sphinx/theming.py | 6 +- sphinx/transforms/__init__.py | 54 +- sphinx/transforms/i18n.py | 15 +- sphinx/transforms/post_transforms/__init__.py | 2 +- sphinx/transforms/post_transforms/images.py | 17 +- sphinx/util/_pathlib.py | 4 +- sphinx/util/cfamily.py | 82 +- sphinx/util/console.py | 2 +- sphinx/util/display.py | 27 +- sphinx/util/docutils.py | 128 +- sphinx/util/fileutil.py | 59 +- sphinx/util/images.py | 1 + sphinx/util/inspect.py | 90 +- sphinx/util/inventory.py | 22 + sphinx/util/logging.py | 35 +- sphinx/util/math.py | 4 +- sphinx/util/nodes.py | 21 +- sphinx/util/osutil.py | 36 +- sphinx/util/parsing.py | 93 + sphinx/util/tags.py | 118 +- sphinx/util/typing.py | 443 +- sphinx/versioning.py | 34 +- sphinx/writers/html5.py | 45 +- sphinx/writers/latex.py | 101 +- sphinx/writers/manpage.py | 7 +- sphinx/writers/texinfo.py | 33 +- tests/js/fixtures/cpp/searchindex.js | 1 + tests/js/fixtures/multiterm/searchindex.js | 1 + tests/js/fixtures/partial/searchindex.js | 1 + tests/js/fixtures/titles/searchindex.js | 1 + tests/js/language_data.js | 26 + tests/js/roots/cpp/conf.py | 0 tests/js/roots/cpp/index.rst | 10 + tests/js/roots/multiterm/conf.py | 0 tests/js/roots/multiterm/index.rst | 13 + tests/js/roots/partial/conf.py | 0 tests/js/roots/partial/index.rst | 9 + tests/js/roots/titles/conf.py | 6 + tests/js/roots/titles/index.rst | 20 + tests/js/roots/titles/relevance.py | 7 + tests/js/roots/titles/relevance.rst | 13 + tests/js/searchtools.js | 166 +- .../conf.py | 5 +- tests/roots/test-add_source_parser/conf.py | 1 - tests/roots/test-autosummary/conf.py | 2 - tests/roots/test-build-text/conf.py | 4 +- .../index.rst | 13 + tests/roots/test-domain-py/index.rst | 1 + tests/roots/test-domain-py/module.rst | 3 + tests/roots/test-domain-py/roles.rst | 6 + tests/roots/test-domain-py/type_alias.rst | 15 + tests/roots/test-ext-autodoc/conf.py | 3 - tests/roots/test-ext-autodoc/target/annotated.py | 36 +- .../test-ext-autosummary-import_cycle/conf.py | 7 + .../test-ext-autosummary-import_cycle/index.rst | 6 + .../spam/__init__.py | 1 + .../test-ext-autosummary-import_cycle/spam/eggs.py | 10 + .../test-ext-autosummary-module_prefix/conf.py | 8 + .../test-ext-autosummary-module_prefix/index.rst | 5 + .../pkg/__init__.py | 0 .../pkg/mod0/__init__.py | 0 .../pkg/mod1/__init__.py | 0 tests/roots/test-ext-autosummary/conf.py | 3 - tests/roots/test-ext-coverage/conf.py | 5 +- tests/roots/test-ext-coverage/coverage_ignored.py | 22 - .../test-ext-coverage/coverage_not_ignored.py | 22 - tests/roots/test-ext-coverage/grog/__init__.py | 0 .../test-ext-coverage/grog/coverage_ignored.py | 22 + .../test-ext-coverage/grog/coverage_missing.py | 7 + .../test-ext-coverage/grog/coverage_not_ignored.py | 22 + tests/roots/test-ext-coverage/index.rst | 4 +- tests/roots/test-ext-doctest-skipif/conf.py | 4 +- tests/roots/test-ext-doctest/conf.py | 4 +- tests/roots/test-html_assets/extra/API.html.jinja | 1 + tests/roots/test-html_assets/extra/API.html_t | 1 - tests/roots/test-html_assets/static/API.html.jinja | 1 + tests/roots/test-html_assets/static/API.html_t | 1 - tests/roots/test-images/index.rst | 5 + tests/roots/test-inheritance/conf.py | 1 - tests/roots/test-intl/conf.py | 4 +- .../test-intl/glossary_terms_inconsistency.txt | 1 + tests/roots/test-intl/index.txt | 1 + tests/roots/test-intl/markup.txt | 6 + tests/roots/test-intl/role_xref.txt | 3 + .../xx/LC_MESSAGES/glossary_terms_inconsistency.po | 3 + .../roots/test-intl/xx/LC_MESSAGES/literalblock.po | 32 +- tests/roots/test-intl/xx/LC_MESSAGES/markup.po | 25 + .../roots/test-latex-figure-in-admonition/conf.py | 2 + .../test-latex-figure-in-admonition/index.rst | 19 +- .../_mytemplates/latex/longtable.tex.jinja | 1 + .../_mytemplates/latex/longtable.tex_t | 1 - .../_mytemplates/latex/tabulary.tex_t | 1 + .../index.rst | 1 + tests/roots/test-markup-rubric/conf.py | 1 + tests/roots/test-markup-rubric/index.rst | 32 + tests/roots/test-root/conf.py | 7 +- tests/roots/test-root/images.txt | 8 + tests/roots/test-root/markup.txt | 13 + tests/roots/test-templating/conf.py | 4 +- .../staticfiles/static/legacytmpl.html_t | 2 + .../staticfiles/static/statictmpl.html.jinja | 2 + .../staticfiles/static/statictmpl.html_t | 2 - .../document_scoping.rst | 23 + tests/roots/test-toctree-domain-objects/index.rst | 1 + tests/roots/test-util-copyasset_overwrite/conf.py | 7 + .../roots/test-util-copyasset_overwrite/index.rst | 0 tests/roots/test-util-copyasset_overwrite/myext.py | 22 + .../myext_static/custom-styles.css | 1 + .../user_static/custom-styles.css | 1 + tests/roots/test-versioning/conf.py | 4 +- tests/test_addnodes.py | 2 +- tests/test_application.py | 2 +- tests/test_builders/test_build.py | 2 +- tests/test_builders/test_build_dirhtml.py | 8 +- tests/test_builders/test_build_epub.py | 11 +- tests/test_builders/test_build_gettext.py | 51 +- tests/test_builders/test_build_html.py | 77 +- tests/test_builders/test_build_html_5_output.py | 33 +- tests/test_builders/test_build_html_assets.py | 2 +- tests/test_builders/test_build_html_download.py | 1 - tests/test_builders/test_build_html_image.py | 5 +- tests/test_builders/test_build_latex.py | 166 +- tests/test_builders/test_build_linkcheck.py | 235 +- tests/test_builders/test_build_manpage.py | 10 +- tests/test_builders/test_build_texinfo.py | 10 +- tests/test_config/test_config.py | 18 +- tests/test_directives/test_directive_code.py | 16 +- tests/test_directives/test_directive_other.py | 12 + tests/test_domains/test_domain_cpp.py | 108 +- tests/test_domains/test_domain_py.py | 80 +- tests/test_domains/test_domain_py_pyobject.py | 71 + tests/test_environment/test_environment.py | 2 +- .../test_environment_indexentries.py | 86 +- tests/test_environment/test_environment_toctree.py | 37 +- tests/test_extensions/test_ext_apidoc.py | 25 +- tests/test_extensions/test_ext_autodoc.py | 54 +- .../test_extensions/test_ext_autodoc_automodule.py | 16 + tests/test_extensions/test_ext_autodoc_configs.py | 31 +- tests/test_extensions/test_ext_autosummary.py | 38 +- .../test_ext_autosummary_imports.py | 49 + tests/test_extensions/test_ext_coverage.py | 40 +- tests/test_extensions/test_ext_graphviz.py | 2 +- tests/test_extensions/test_ext_imgconverter.py | 4 +- tests/test_extensions/test_ext_imgmockconverter.py | 2 +- .../test_ext_inheritance_diagram.py | 2 +- tests/test_extensions/test_ext_intersphinx.py | 33 +- tests/test_extensions/test_ext_math.py | 22 +- tests/test_extensions/test_ext_todo.py | 2 +- tests/test_extensions/test_ext_viewcode.py | 4 + tests/test_intl/test_catalogs.py | 2 +- tests/test_intl/test_intl.py | 61 +- tests/test_markup/test_markup.py | 18 +- tests/test_markup/test_smartquotes.py | 6 +- tests/test_search.py | 60 +- tests/test_theming/test_theming.py | 7 +- .../test_transforms_post_transforms.py | 6 +- .../test_transforms_post_transforms_code.py | 2 +- .../test_transforms_post_transforms_images.py | 46 + tests/test_util/intersphinx_data.py | 12 + .../test_util_docutils_sphinx_directive.py | 139 + tests/test_util/test_util_fileutil.py | 43 +- tests/test_util/test_util_i18n.py | 10 +- tests/test_util/test_util_inspect.py | 6 +- tests/test_util/test_util_inventory.py | 19 + tests/test_util/test_util_typing.py | 197 +- tests/test_util/typing_test_data.py | 6 +- tox.ini | 42 +- utils/babel_runner.py | 39 +- utils/bump_docker.py | 9 +- utils/generate_js_fixtures.py | 39 + utils/release-checklist.rst | 4 +- 632 files changed, 70611 insertions(+), 49843 deletions(-) delete mode 100644 doc/_static/conf.py.txt create mode 100644 doc/_static/diagrams/sphinx_build_flow.dot create mode 100644 doc/_static/diagrams/sphinx_core_events_flow.dot create mode 100644 doc/_static/jupyter-logo.png create mode 100644 doc/_static/linux-logo.png delete mode 100644 doc/_static/more.png create mode 100644 doc/_static/python-logo.png delete mode 100644 doc/development/builders.rst create mode 100644 doc/development/howtos/builders.rst create mode 100644 doc/development/howtos/index.rst create mode 100644 doc/development/howtos/setup_extension.rst create mode 100644 doc/development/html_themes/index.rst create mode 100644 doc/development/html_themes/templating.rst delete mode 100644 doc/development/overview.rst delete mode 100644 doc/development/templating.rst delete mode 100644 doc/development/theming.rst create mode 100644 doc/development/tutorials/adding_domain.rst create mode 100644 doc/development/tutorials/extending_build.rst create mode 100644 doc/development/tutorials/extending_syntax.rst delete mode 100644 doc/development/tutorials/helloworld.rst delete mode 100644 doc/development/tutorials/recipe.rst delete mode 100644 doc/development/tutorials/todo.rst create mode 100644 doc/extdev/event_callbacks.rst create mode 100644 sphinx/_cli/__init__.py create mode 100644 sphinx/_cli/util/__init__.py create mode 100644 sphinx/_cli/util/colour.py create mode 100644 sphinx/_cli/util/errors.py delete mode 100644 sphinx/ext/intersphinx.py create mode 100644 sphinx/ext/intersphinx/__init__.py create mode 100644 sphinx/ext/intersphinx/__main__.py create mode 100644 sphinx/ext/intersphinx/_cli.py create mode 100644 sphinx/ext/intersphinx/_load.py create mode 100644 sphinx/ext/intersphinx/_resolve.py create mode 100644 sphinx/ext/intersphinx/_shared.py create mode 100644 sphinx/templates/apidoc/module.rst.jinja delete mode 100644 sphinx/templates/apidoc/module.rst_t create mode 100644 sphinx/templates/apidoc/package.rst.jinja delete mode 100644 sphinx/templates/apidoc/package.rst_t create mode 100644 sphinx/templates/apidoc/toc.rst.jinja delete mode 100644 sphinx/templates/apidoc/toc.rst_t create mode 100644 sphinx/templates/epub3/content.opf.jinja delete mode 100644 sphinx/templates/epub3/content.opf_t create mode 100644 sphinx/templates/epub3/nav.xhtml.jinja delete mode 100644 sphinx/templates/epub3/nav.xhtml_t create mode 100644 sphinx/templates/epub3/toc.ncx.jinja delete mode 100644 sphinx/templates/epub3/toc.ncx_t create mode 100644 sphinx/templates/gettext/message.pot.jinja delete mode 100644 sphinx/templates/gettext/message.pot_t create mode 100644 sphinx/templates/imgmath/preview.tex.jinja delete mode 100644 sphinx/templates/imgmath/preview.tex_t create mode 100644 sphinx/templates/imgmath/template.tex.jinja delete mode 100644 sphinx/templates/imgmath/template.tex_t create mode 100644 sphinx/templates/latex/latex.tex.jinja delete mode 100644 sphinx/templates/latex/latex.tex_t create mode 100644 sphinx/templates/latex/longtable.tex.jinja delete mode 100644 sphinx/templates/latex/longtable.tex_t create mode 100644 sphinx/templates/latex/sphinxmessages.sty.jinja delete mode 100644 sphinx/templates/latex/sphinxmessages.sty_t create mode 100644 sphinx/templates/latex/tabular.tex.jinja delete mode 100644 sphinx/templates/latex/tabular.tex_t create mode 100644 sphinx/templates/latex/tabulary.tex.jinja delete mode 100644 sphinx/templates/latex/tabulary.tex_t create mode 100644 sphinx/templates/quickstart/Makefile.jinja create mode 100644 sphinx/templates/quickstart/Makefile.new.jinja delete mode 100644 sphinx/templates/quickstart/Makefile.new_t delete mode 100644 sphinx/templates/quickstart/Makefile_t create mode 100644 sphinx/templates/quickstart/conf.py.jinja delete mode 100644 sphinx/templates/quickstart/conf.py_t create mode 100644 sphinx/templates/quickstart/make.bat.jinja create mode 100644 sphinx/templates/quickstart/make.bat.new.jinja delete mode 100644 sphinx/templates/quickstart/make.bat.new_t delete mode 100644 sphinx/templates/quickstart/make.bat_t create mode 100644 sphinx/templates/quickstart/root_doc.rst.jinja delete mode 100644 sphinx/templates/quickstart/root_doc.rst_t create mode 100644 sphinx/texinputs/Makefile.jinja delete mode 100644 sphinx/texinputs/Makefile_t create mode 100644 sphinx/texinputs/latexmkjarc.jinja delete mode 100644 sphinx/texinputs/latexmkjarc_t create mode 100644 sphinx/texinputs/latexmkrc.jinja delete mode 100644 sphinx/texinputs/latexmkrc_t create mode 100644 sphinx/texinputs/make.bat.jinja delete mode 100644 sphinx/texinputs/make.bat_t create mode 100644 sphinx/texinputs_win/Makefile.jinja delete mode 100644 sphinx/texinputs_win/Makefile_t create mode 100644 sphinx/themes/agogo/static/agogo.css.jinja delete mode 100644 sphinx/themes/agogo/static/agogo.css_t create mode 100644 sphinx/themes/basic/static/basic.css.jinja delete mode 100644 sphinx/themes/basic/static/basic.css_t create mode 100644 sphinx/themes/basic/static/documentation_options.js.jinja delete mode 100644 sphinx/themes/basic/static/documentation_options.js_t create mode 100644 sphinx/themes/basic/static/language_data.js.jinja delete mode 100644 sphinx/themes/basic/static/language_data.js_t create mode 100644 sphinx/themes/bizstyle/static/bizstyle.css.jinja delete mode 100644 sphinx/themes/bizstyle/static/bizstyle.css_t create mode 100644 sphinx/themes/bizstyle/static/bizstyle.js.jinja delete mode 100644 sphinx/themes/bizstyle/static/bizstyle.js_t create mode 100644 sphinx/themes/classic/static/classic.css.jinja delete mode 100644 sphinx/themes/classic/static/classic.css_t create mode 100644 sphinx/themes/classic/static/sidebar.js.jinja delete mode 100644 sphinx/themes/classic/static/sidebar.js_t create mode 100644 sphinx/themes/epub/static/epub.css.jinja delete mode 100644 sphinx/themes/epub/static/epub.css_t create mode 100644 sphinx/themes/haiku/static/haiku.css.jinja delete mode 100644 sphinx/themes/haiku/static/haiku.css_t create mode 100644 sphinx/themes/nature/static/nature.css.jinja delete mode 100644 sphinx/themes/nature/static/nature.css_t create mode 100644 sphinx/themes/nonav/static/nonav.css.jinja delete mode 100644 sphinx/themes/nonav/static/nonav.css_t create mode 100644 sphinx/themes/pyramid/static/epub.css.jinja delete mode 100644 sphinx/themes/pyramid/static/epub.css_t create mode 100644 sphinx/themes/pyramid/static/pyramid.css.jinja delete mode 100644 sphinx/themes/pyramid/static/pyramid.css_t create mode 100644 sphinx/themes/scrolls/static/scrolls.css.jinja delete mode 100644 sphinx/themes/scrolls/static/scrolls.css_t create mode 100644 sphinx/themes/sphinxdoc/static/sphinxdoc.css.jinja delete mode 100644 sphinx/themes/sphinxdoc/static/sphinxdoc.css_t create mode 100644 sphinx/themes/traditional/static/traditional.css.jinja delete mode 100644 sphinx/themes/traditional/static/traditional.css_t create mode 100644 sphinx/util/parsing.py create mode 100644 tests/js/fixtures/cpp/searchindex.js create mode 100644 tests/js/fixtures/multiterm/searchindex.js create mode 100644 tests/js/fixtures/partial/searchindex.js create mode 100644 tests/js/fixtures/titles/searchindex.js create mode 100644 tests/js/language_data.js create mode 100644 tests/js/roots/cpp/conf.py create mode 100644 tests/js/roots/cpp/index.rst create mode 100644 tests/js/roots/multiterm/conf.py create mode 100644 tests/js/roots/multiterm/index.rst create mode 100644 tests/js/roots/partial/conf.py create mode 100644 tests/js/roots/partial/index.rst create mode 100644 tests/js/roots/titles/conf.py create mode 100644 tests/js/roots/titles/index.rst create mode 100644 tests/js/roots/titles/relevance.py create mode 100644 tests/js/roots/titles/relevance.rst create mode 100644 tests/roots/test-domain-py/type_alias.rst create mode 100644 tests/roots/test-ext-autosummary-import_cycle/conf.py create mode 100644 tests/roots/test-ext-autosummary-import_cycle/index.rst create mode 100644 tests/roots/test-ext-autosummary-import_cycle/spam/__init__.py create mode 100644 tests/roots/test-ext-autosummary-import_cycle/spam/eggs.py create mode 100644 tests/roots/test-ext-autosummary-module_prefix/conf.py create mode 100644 tests/roots/test-ext-autosummary-module_prefix/index.rst create mode 100644 tests/roots/test-ext-autosummary-module_prefix/pkg/__init__.py create mode 100644 tests/roots/test-ext-autosummary-module_prefix/pkg/mod0/__init__.py create mode 100644 tests/roots/test-ext-autosummary-module_prefix/pkg/mod1/__init__.py delete mode 100644 tests/roots/test-ext-coverage/coverage_ignored.py delete mode 100644 tests/roots/test-ext-coverage/coverage_not_ignored.py create mode 100644 tests/roots/test-ext-coverage/grog/__init__.py create mode 100644 tests/roots/test-ext-coverage/grog/coverage_ignored.py create mode 100644 tests/roots/test-ext-coverage/grog/coverage_missing.py create mode 100644 tests/roots/test-ext-coverage/grog/coverage_not_ignored.py create mode 100644 tests/roots/test-html_assets/extra/API.html.jinja delete mode 100644 tests/roots/test-html_assets/extra/API.html_t create mode 100644 tests/roots/test-html_assets/static/API.html.jinja delete mode 100644 tests/roots/test-html_assets/static/API.html_t create mode 100644 tests/roots/test-intl/markup.txt create mode 100644 tests/roots/test-intl/xx/LC_MESSAGES/markup.po create mode 100644 tests/roots/test-latex-table/_mytemplates/latex/longtable.tex.jinja delete mode 100644 tests/roots/test-latex-table/_mytemplates/latex/longtable.tex_t create mode 100644 tests/roots/test-latex-table/_mytemplates/latex/tabulary.tex_t create mode 100644 tests/roots/test-theming/test_theme/staticfiles/static/legacytmpl.html_t create mode 100644 tests/roots/test-theming/test_theme/staticfiles/static/statictmpl.html.jinja delete mode 100644 tests/roots/test-theming/test_theme/staticfiles/static/statictmpl.html_t create mode 100644 tests/roots/test-toctree-domain-objects/document_scoping.rst create mode 100644 tests/roots/test-util-copyasset_overwrite/conf.py create mode 100644 tests/roots/test-util-copyasset_overwrite/index.rst create mode 100644 tests/roots/test-util-copyasset_overwrite/myext.py create mode 100644 tests/roots/test-util-copyasset_overwrite/myext_static/custom-styles.css create mode 100644 tests/roots/test-util-copyasset_overwrite/user_static/custom-styles.css create mode 100644 tests/test_extensions/test_ext_autosummary_imports.py create mode 100644 tests/test_transforms/test_transforms_post_transforms_images.py create mode 100644 tests/test_util/test_util_docutils_sphinx_directive.py create mode 100755 utils/generate_js_fixtures.py diff --git a/CHANGES.rst b/CHANGES.rst index cfc924b..b5473f9 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,261 @@ +Release 7.4.7 (released Jul 20, 2024) +===================================== + +Bugs fixed +---------- + +* #12096: Warn when files are overwritten in the build directory. + Patch by Adam Turner and Bénédikt Tran. +* #12620: Ensure that old-style object description options are respected. + Patch by Adam Turner. +* #12601, #12625: Support callable objects in :py:class:`~typing.Annotated` type + metadata in the Python domain. + Patch by Adam Turner. +* #12601, #12622: Resolve :py:class:`~typing.Annotated` warnings with + ``sphinx.ext.autodoc``, + especially when using :mod:`dataclasses` as type metadata. + Patch by Adam Turner. +* #12589, #12626: autosummary: Fix warnings with :rst:role:`!autolink`. + Patch by Adam Turner. + +Release 7.4.6 (released Jul 18, 2024) +===================================== + +Bugs fixed +---------- + +* #12589, #9743, #12609: autosummary: Do not add the package prefix when + generating autosummary directives for modules within a package. + Patch by Adam Turner. +* #12613: Reduce log severity for ambiguity detection during inventory loading. + Patch by James Addison. + +Release 7.4.5 (released Jul 16, 2024) +===================================== + +Bugs fixed +---------- + +* #12593, #12600: Revert coercing the type of selected :confval:`html_sidebars` + values to a list. + Log an error message when string values are detected. + Patch by Adam Turner. +* #12594: LaTeX: since 7.4.0, :rst:dir:`seealso` and other "light" admonitions + now break PDF builds if they contain a :dudir:`figure` directive; and also + if they are contained in a table cell (rendered by ``tabulary``). + Patch by Jean-François B. + +Release 7.4.4 (released Jul 15, 2024) +===================================== + +Bugs fixed +---------- + +* #12585, #12586: Do not warn when an intersphinx inventory contains + case-insensitively ambiguous duplicate items. + Patch by James Addison. + +Release 7.4.3 (released Jul 15, 2024) +===================================== + +Bugs fixed +---------- + +* #12582: Restore support for list-styled :confval:`source_suffix` values + with extensions that register parsers. + Patch by Adam Turner. + +Release 7.4.2 (released Jul 15, 2024) +===================================== + +Bugs fixed +---------- + +* #12580, #12583: Resolve failures with the C domain on incremental builds + with Sphinx 7.3.7 and earlier. + Patch by Adam Turner. + +Release 7.4.1 (released Jul 15, 2024) +===================================== + +Bugs fixed +---------- + +* Fix invalid HTML when a rubric node with invalid ``heading-level`` is used. + Patch by Adam Turner. +* #12579, #12581: Restore support for ``typing.ParamSpec`` in autodoc. + Patch by Adam Turner. + +Release 7.4.0 (released Jul 15, 2024) +===================================== + +Dependencies +------------ + +* #12555: Drop Docutils 0.18.1 and Docutils 0.19 support. + Patch by Adam Turner. +* LaTeX: the ``xcolor`` package is now required (but is for example part of + Ubuntu ``texlive-latex-recommended`` which has always been required). +* LaTeX: the ``fontawesome5`` LaTeX package is needed for the default choices + of icons now used in admonition titles in PDF output; but if unavailable the + PDF build will simply silently omit rendering such icons. Check the + documentation of the ``iconpackage`` key of :ref:`'sphinxsetup' + ` for more. + +Deprecated +---------- + +* LaTeX: the ``sphinxlightbox`` environment is not used anymore, all types + of admonitions use (by default) only ``sphinxheavybox``. + +Features added +-------------- + +.. rst-class:: compact + +* #11165: Support the `officially recommended`_ ``.jinja`` suffix for template + files. + Patch by James Addison and Adam Turner + + .. _officially recommended: https://jinja.palletsprojects.com/en/latest/templates/#template-file-extension +* #12325: Flatten ``Union[Literal[T], Literal[U], ...]`` to ``Literal[T, U, ...]`` + when turning annotations into strings. + Patch by Adam Turner. +* #12319: ``sphinx.ext.extlinks``: Add ``extlink-{name}`` CSS class to links. + Patch by Hugo van Kemenade. +* #12387: Improve CLI progress message, when copying assets. + Patch by INADA Nakoi and Bénédikt Tran. +* #12361: Add :attr:`.BuildEnvironment.parser`. + Patch by Chris Sewell. +* #12358: Add :attr:`.Sphinx.fresh_env_used`. + Patch by Chris Sewell. +* #12329: Add detection of ambiguous ``std:label`` and ``std:term`` references during + loading and resolution of Intersphinx targets. + Patch by James Addison. +* #12422: Do not duplicate "navigation" in aria-label of built-in themes. + Patch by Thomas Weißschuh +* #12421: Include project name in ``logo_alt`` of built-in themes. + Patch by Thomas Weißschuh +* #12448: Add :option:`sphinx-apidoc --remove-old` option. + Patch by Chris Sewell. +* #12456: Add :option:`sphinx-autogen --remove-old` option. + Patch by Chris Sewell. +* #12479: Add warning subtype ``toc.no_title``. + Patch by Ondřej Navrátil. +* #12492: Add helper methods for parsing reStructuredText content into nodes from + within a directive. + + - :py:meth:`~sphinx.util.docutils.SphinxDirective.parse_content_to_nodes()` + parses the directive's content and returns a list of Docutils nodes. + - :py:meth:`~sphinx.util.docutils.SphinxDirective.parse_text_to_nodes()` + parses the provided text and returns a list of Docutils nodes. + - :py:meth:`~sphinx.util.docutils.SphinxDirective.parse_inline()` + parses the provided text into inline elements and text nodes. + + Patch by Adam Turner. +* #12258: Support ``typing_extensions.Unpack`` + Patch by Bénédikt Tran and Adam Turner. +* #12524: Add a ``class`` option to the :rst:dir:`toctree` directive. + Patch by Tim Hoffmann. +* #12536: Add the :rst:dir:`confval` directive. + Patch by Adam Turner. +* #12537: :confval:`c_id_attributes`, :confval:`c_paren_attributes`, + :confval:`cpp_id_attributes`, and :confval:`cpp_paren_attributes` + can now be a tuple of strings. + :confval:`c_extra_keywords`, :confval:`gettext_additional_targets`, + :confval:`html_domain_indices`, :confval:`latex_domain_indices`, + and :confval:`texinfo_domain_indices`, + can now be a set of strings. + Patch by Adam Turner. +* #12523: Added configuration option, :confval:`math_numsep`, to define the + separator for math numbering. + Patch by Thomas Fanning +* #11592: Add :confval:`coverage_modules` to the coverage builder + to allow explicitly specifying which modules should be documented. + Patch by Stephen Finucane. +* #7896, #11989: Add a :rst:dir:`py:type` directive for documenting type aliases, + and a :rst:role:`py:type` role for linking to them. + Patch by Ashley Whetter. +* #12549: Add optional ``description`` argument to + :meth:`.Sphinx.add_config_value`. + Patch by Chris Sewell. +* #6792: Prohibit module import cycles in :mod:`sphinx.ext.autosummary`. + Patch by Trevor Bekolay. +* #12508: LaTeX: Revamped styling of all admonitions, with addition of a + title row with icon. + Patch by Jean-François B. +* #11773: Display :py:class:`~typing.Annotated` annotations + with their metadata in the Python domain. + Patch by Adam Turner and David Stansby. +* #12506: Add ``heading-level`` option to :rst:dir:`rubric` directive. + Patch by Chris Sewell. +* #12567: Add the :event:`write-started` event. + Patch by Chris Sewell. + +Bugs fixed +---------- + +* #12314: Properly format ``collections.abc.Callable`` in annotations. + Patch by Adam Turner. +* #12162: Fix a performance regression in the C domain that has + been present since version 3.0.0. + Patch by Donald Hunter. +* #12320: Fix removal of anchors from search summaries (regression in 7.3.0). + Patch by Will Lachance. +* #12251: Fix ``merge_domaindata()`` in ``sphinx.ext.duration``. + Patch by Matthias Geier. +* #12224: Properly detect WebP files. + Patch by Benjamin Cabé. +* #12380: LaTeX: Avoid footnote markers ``Page N`` when ``N`` is already + the current page number. + Patch by Jean-François B. +* #12410: LaTeX: for French and ``'lualatex'`` as :confval:`latex_engine` + use ``babel`` as with ``'xelatex'`` (and not ``polyglossia``). + Patch by Jean-François B. +* #12520: LaTeX: let :rst:dir:`todolist` produce correct hyperlinks in PDF. + Patch by Jean-François B. +* #12416: Ensure that configuration setting aliases are always synchronised + when one value or the other is modified. + Patch by Bénédikt Tran. +* #12220: Fix loading custom template translations for ``en`` locale. + Patch by Nicolas Peugnet. +* #12459: Add valid-type arguments to the ``linkcheck_rate_limit_timeout`` + configuration setting. + Patch by James Addison. +* #12331: Resolve data-URI-image-extraction regression from v7.3.0 affecting + builders without native support for data-URIs in their output format. + Patch by James Addison. +* #12494: Fix invalid genindex.html file produced with translated docs + (regression in 7.1.0). + Patch by Nicolas Peugnet. +* #11961: Omit anchor references from document title entries in the search index, + removing duplication of search results. + Patch by James Addison. +* #12425: Use Docutils' SVG processing in the HTML builder + and remove Sphinx's custom logic. + Patch by Tunç Başar Köse. +* #12391: Adjust scoring of matches during HTML search so that document main + titles tend to rank higher than subsection titles. In addition, boost matches + on the name of programming domain objects relative to title/subtitle matches. + Patch by James Addison and Will Lachance. +* #9634: Do not add a fallback language by stripping the country code. + Patch by Alvin Wong. +* #12352: Add domain objects to the table of contents + in the same order as defined in the document. + Previously, each domain used language-specific nesting rules, + which removed control from document authors. + Patch by Jakob Lykke Andersen and Adam Turner. +* #11041: linkcheck: Ignore URLs that respond with non-Unicode content. + Patch by James Addison. +* #12543: Fix :pep:`695` formatting for LaTeX output. + Patch by Bénédikt Tran. + +Testing +------- + +* karma: refactor HTML search tests to use fixtures generated by Sphinx. + Patch by James Addison. + Release 7.3.7 (released Apr 19, 2024) ===================================== @@ -117,7 +375,7 @@ Features added Patch by Adam Turner. * Add ``:no-search:`` as an alias of the ``:nosearch:`` metadata field. Patch by Adam Turner. -* #11803: autodoc: Use an overriden ``__repr__()`` function in an enum, +* #11803: autodoc: Use an overridden ``__repr__()`` function in an enum, if defined. Patch by Shengyu Zhang. * #11825: Allow custom targets in the manpage role. Patch by Nicolas Peugnet. @@ -751,7 +1009,7 @@ Bugs fixed * #11116: Reverted to previous Sphinx 5 node copying method * #11117: Reverted changes to parallel image processing from Sphinx 6.1.0 -* #11119: Supress ``ValueError`` in the ``linkcheck`` builder +* #11119: Suppress ``ValueError`` in the ``linkcheck`` builder Release 6.1.2 (released Jan 07, 2023) ===================================== @@ -838,7 +1096,7 @@ Bugs fixed * #10962: HTML: Fix the multi-word key name lookup table. * Fixed support for Python 3.12 alpha 3 (changes in the ``enum`` module). * #11069: HTML Theme: Removed outdated "shortcut" link relation keyword. -* #10952: Properly terminate parallel processes on programme interuption. +* #10952: Properly terminate parallel processes on programme interruption. * #10988: Speed up ``TocTree.resolve()`` through more efficient copying. * #6744: LaTeX: support for seealso directive should be via an environment to allow styling. @@ -1015,9 +1273,9 @@ Release 5.1.1 (released Jul 26, 2022) Bugs fixed ---------- -* #10701: Fix ValueError in the new ``deque`` based ``sphinx.ext.napolean`` +* #10701: Fix ValueError in the new ``deque`` based ``sphinx.ext.napoleon`` iterator implementation. -* #10702: Restore compatability with third-party builders. +* #10702: Restore compatibility with third-party builders. Release 5.1.0 (released Jul 24, 2022) ===================================== @@ -1073,8 +1331,8 @@ Bugs fixed ``-``, ``~``, and ``**``). Patch by Adam Turner (refs: #10551). * #10460: logging: Always show node source locations as absolute paths. * HTML Search: HTML tags are displayed as a part of object name -* HTML Search: search snipets should not be folded -* HTML Search: Minor errors are emitted on fetching search snipets +* HTML Search: search snippets should not be folded +* HTML Search: Minor errors are emitted on fetching search snippets * HTML Search: The markers for header links are shown in the search result * #10520: HTML Theme: Fix use of sidebar classes in ``agogo.css_t``. * #6679: HTML Theme: Fix inclusion of hidden toctrees in the agogo theme. @@ -1254,7 +1512,7 @@ Bugs fixed * #9974: html: Updated jQuery version from 3.5.1 to 3.6.0 * #10236: html search: objects are duplicated in search result * #9962: texinfo: Deprecation message for ``@definfoenclose`` command on - bulding texinfo document + building texinfo document * #10000: LaTeX: glossary terms with common definition are rendered with too much vertical whitespace * #10188: LaTeX: alternating multiply referred footnotes produce a ``?`` in @@ -1276,7 +1534,7 @@ Bugs fixed not provide correct information * #10456: py domain: ``:meta:`` fields are displayed if docstring contains two or more meta-field -* #9096: sphinx-build: the value of progress bar for paralle build is wrong +* #9096: sphinx-build: the value of progress bar for parallel build is wrong * #10110: sphinx-build: exit code is not changed when error is raised on builder-finished event @@ -1336,7 +1594,7 @@ Bugs fixed the name is also used in the different document * #10269: manpage: Failed to resolve the title of :rst:role:`ref` cross references * #10179: i18n: suppress "rST localization" warning -* #10118: imgconverter: Unnecessary availablity check is called for remote URIs +* #10118: imgconverter: Unnecessary availability check is called for remote URIs * #10181: napoleon: attributes are displayed like class attributes for google style docstrings when :confval:`napoleon_use_ivar` is enabled * #10122: sphinx-build: make.bat does not check the installation of sphinx-build @@ -1385,7 +1643,7 @@ Features added * #9391: texinfo: improve variable in ``samp`` role * #9578: texinfo: Add :confval:`texinfo_cross_references` to disable cross references for readability with standalone readers -* #9822 (and #9062), add new Intersphinx role :rst:role:`external` for explict +* #9822, #9062: add new Intersphinx role :rst:role:`external` for explicit lookup in the external projects, without resolving to the local project. Bugs fixed @@ -1408,7 +1666,7 @@ Bugs fixed * #9909: HTML, prevent line-wrapping in literal text. * #10061: html theme: Configuration values added by themes are not be able to override from conf.py -* #10073: imgconverter: Unnecessary availablity check is called for "data" URIs +* #10073: imgconverter: Unnecessary availability check is called for "data" URIs * #9925: LaTeX: prohibit also with ``'xelatex'`` line splitting at dashes of inline and parsed literals * #9944: LaTeX: extra vertical whitespace for some nested declarations @@ -1438,7 +1696,7 @@ Release 4.3.1 (released Nov 28, 2021) Features added -------------- -* #9864: mathjax: Support chnaging the loading method of MathJax to "defer" via +* #9864: mathjax: Support changing the loading method of MathJax to "defer" via :confval:`mathjax_options` Bugs fixed @@ -1935,13 +2193,13 @@ Features added 4.0.0b2 -* #8818: autodoc: Super class having ``Any`` arguments causes nit-picky warning +* #8818: autodoc: Super class having ``Any`` arguments causes nitpicky warning * #9095: autodoc: TypeError is raised on processing broken metaclass * #9110: autodoc: metadata of GenericAlias is not rendered as a reference in py37+ * #9098: html: copy-range protection for doctests doesn't work in Safari * #9103: LaTeX: imgconverter: conversion runs even if not needed -* #8127: py domain: Ellipsis in info-field-list causes nit-picky warning +* #8127: py domain: Ellipsis in info-field-list causes nitpicky warning * #9121: py domain: duplicated warning is emitted when both canonical and its alias objects are defined on the document * #9023: More CSS classes on domain descriptions, see :ref:`nodes` for details. @@ -2174,7 +2432,7 @@ Bugs fixed * #4304: linkcheck: Fix race condition that could lead to checking the availability of the same URL twice * #8791: linkcheck: The docname for each hyperlink is not displayed -* #7118: sphinx-quickstart: questionare got Mojibake if libreadline unavailable +* #7118: sphinx-quickstart: questionnaire got Mojibake if libreadline unavailable * #8094: texinfo: image files on the different directory with document are not copied * #8782: todo: Cross references in todolist get broken @@ -2954,7 +3212,7 @@ Features added * #247: autosummary: Add :confval:`autosummary_generate_overwrite` to overwrite old stub file -* #5923: autodoc: ``:inherited-members:`` option takes a name of anchestor class +* #5923: autodoc: ``:inherited-members:`` option takes a name of ancestor class not to document inherited members of the class and uppers * #6830: autodoc: consider a member private if docstring contains ``:meta private:`` in info-field-list @@ -3190,7 +3448,7 @@ Bugs fixed * #6925: html: Remove redundant type="text/javascript" from +

You should have been redirected.

+ If not, click here to continue. + + +""" # noqa: E501 -def setup(app): +def build_redirects(app: Sphinx, exception: Exception | None) -> None: + # this is a very simple implementation of + # https://github.com/wpilibsuite/sphinxext-rediraffe/blob/main/sphinxext/rediraffe.py + # to re-direct some old pages to new ones + if exception is not None or app.builder.name != 'html': + return + for page, rel_redirect in ( + (('development', 'overview.html'), 'index.html'), + (('development', 'builders.html'), 'howtos/builders.html'), + (('development', 'theming.html'), 'html_themes/index.html'), + (('development', 'templating.html'), 'html_themes/templating.html'), + (('development', 'tutorials', 'helloworld.html'), 'extending_syntax.html'), + (('development', 'tutorials', 'todo.html'), 'extending_build.html'), + (('development', 'tutorials', 'recipe.html'), 'adding_domain.html'), + ): + path = app.outdir.joinpath(*page) + if path.exists(): + continue + path.parent.mkdir(parents=True, exist_ok=True) + with path.open('w', encoding='utf-8') as f: + f.write(REDIRECT_TEMPLATE.replace('{{rel_url}}', rel_redirect)) + + +def setup(app: Sphinx) -> None: from sphinx.ext.autodoc import cut_lines from sphinx.util.docfields import GroupedField app.connect('autodoc-process-docstring', cut_lines(4, what=['module'])) - app.connect('source-read', linkify_issues_in_changelog) - app.add_object_type( - 'confval', - 'confval', - objname='configuration value', - indextemplate='pair: %s; configuration value', - ) + app.connect('include-read', linkify_issues_in_changelog) + app.connect('build-finished', build_redirects) fdesc = GroupedField('parameter', label='Parameters', names=['param'], can_collapse=True) app.add_object_type( - 'event', 'event', 'pair: %s; event', parse_event, doc_field_types=[fdesc] + 'event', + 'event', + 'pair: %s; event', + parse_event, + doc_field_types=[fdesc], ) diff --git a/doc/development/builders.rst b/doc/development/builders.rst deleted file mode 100644 index 7792fbd..0000000 --- a/doc/development/builders.rst +++ /dev/null @@ -1,28 +0,0 @@ -Configuring builders -==================== - -Discover builders by entry point --------------------------------- - -.. versionadded:: 1.6 - -:term:`builder` extensions can be discovered by means of `entry points`_ so -that they do not have to be listed in the :confval:`extensions` configuration -value. - -Builder extensions should define an entry point in the ``"sphinx.builders"`` -group. The name of the entry point needs to match your builder's -:attr:`~.Builder.name` attribute, which is the name passed to the -:option:`sphinx-build -b` option. The entry point value should equal the -dotted name of the extension module. Here is an example of how an entry point -for 'mybuilder' can be defined in the extension's ``pyproject.toml`` - -.. code-block:: toml - - [project.entry-points."sphinx.builders"] - mybuilder = "my.extension.module" - -Note that it is still necessary to register the builder using -:meth:`~.Sphinx.add_builder` in the extension's :func:`setup` function. - -.. _entry points: https://setuptools.pypa.io/en/latest/userguide/entry_point.html diff --git a/doc/development/howtos/builders.rst b/doc/development/howtos/builders.rst new file mode 100644 index 0000000..7792fbd --- /dev/null +++ b/doc/development/howtos/builders.rst @@ -0,0 +1,28 @@ +Configuring builders +==================== + +Discover builders by entry point +-------------------------------- + +.. versionadded:: 1.6 + +:term:`builder` extensions can be discovered by means of `entry points`_ so +that they do not have to be listed in the :confval:`extensions` configuration +value. + +Builder extensions should define an entry point in the ``"sphinx.builders"`` +group. The name of the entry point needs to match your builder's +:attr:`~.Builder.name` attribute, which is the name passed to the +:option:`sphinx-build -b` option. The entry point value should equal the +dotted name of the extension module. Here is an example of how an entry point +for 'mybuilder' can be defined in the extension's ``pyproject.toml`` + +.. code-block:: toml + + [project.entry-points."sphinx.builders"] + mybuilder = "my.extension.module" + +Note that it is still necessary to register the builder using +:meth:`~.Sphinx.add_builder` in the extension's :func:`setup` function. + +.. _entry points: https://setuptools.pypa.io/en/latest/userguide/entry_point.html diff --git a/doc/development/howtos/index.rst b/doc/development/howtos/index.rst new file mode 100644 index 0000000..9800655 --- /dev/null +++ b/doc/development/howtos/index.rst @@ -0,0 +1,8 @@ +How-tos +======= + +.. toctree:: + :maxdepth: 1 + + setup_extension + builders diff --git a/doc/development/howtos/setup_extension.rst b/doc/development/howtos/setup_extension.rst new file mode 100644 index 0000000..bcb4daf --- /dev/null +++ b/doc/development/howtos/setup_extension.rst @@ -0,0 +1,27 @@ +Depend on another extension +=========================== + +Sometimes your extension depends on the functionality of another +Sphinx extension. Most Sphinx extensions are activated in a +project's :file:`conf.py` file, but this is not available to you as an +extension developer. + +.. module:: sphinx.application + :no-index: + +To ensure that another extension is activated as a part of your own extension, +use the :meth:`sphinx.application.Sphinx.setup_extension` method. This will +activate another extension at run-time, ensuring that you have access to its +functionality. + +For example, the following code activates the :mod:`sphinx.ext.autodoc` extension: + +.. code-block:: python + + def setup(app): + app.setup_extension('sphinx.ext.autodoc') + +.. note:: + + Since your extension will depend on another, make sure to include + it as a part of your extension's installation requirements. diff --git a/doc/development/html_themes/index.rst b/doc/development/html_themes/index.rst new file mode 100644 index 0000000..8724398 --- /dev/null +++ b/doc/development/html_themes/index.rst @@ -0,0 +1,456 @@ +.. _extension-html-theme: + +HTML theme development +====================== + +.. versionadded:: 0.6 + +.. note:: + + This document provides information about creating your own theme. If you + simply wish to use a pre-existing HTML themes, refer to + :doc:`/usage/theming`. + +Sphinx supports changing the appearance of its HTML output via *themes*. A +theme is a collection of HTML templates, stylesheet(s) and other static files. +Additionally, it has a configuration file which specifies from which theme to +inherit, which highlighting style to use, and what options exist for customizing +the theme's look and feel. + +Themes are meant to be project-unaware, so they can be used for different +projects without change. + +.. note:: + + See :ref:`dev-extensions` for more information that may + be helpful in developing themes. + + +Creating themes +--------------- + +Themes take the form of either a directory or a zipfile (whose name is the +theme name), containing the following: + +* Either a :file:`theme.toml` file (preferred) or a :file:`theme.conf` file. +* HTML templates, if needed. +* A ``static/`` directory containing any static files that will be copied to the + output static directory on build. These can be images, styles, script files. + +Theme configuration (``theme.toml``) +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +The :file:`theme.toml` file is a TOML_ document, +containing two tables: ``[theme]`` and ``[options]``. + +The ``[theme]`` table defines the theme's settings: + +* **inherit** (string): The name of the base theme from which to inherit + settings, options, templates, and static files. + All static files from theme 'ancestors' will be used. + The theme will use all options defined in inherited themes. + Finally, inherited themes will be used to locate missing templates + (for example, if ``"basic"`` is used as the base theme, most templates will + already be defined). + + If set to ``"none"``, the theme will not inherit from any other theme. + Inheritance is recursive, forming a chain of inherited themes + (e.g. ``default`` -> ``classic`` -> ``basic`` -> ``none``). + +* **stylesheets** (list of strings): A list of CSS filenames which will be + included in generated HTML header. + Setting the :confval:`html_style` config value will override this setting. + + Other mechanisms for including multiple stylesheets include ``@import`` in CSS + or using a custom HTML template with appropriate ```` tags. + +* **sidebars** (list of strings): A list of sidebar templates. + This can be overridden by the user via the :confval:`html_sidebars` config value. + +* **pygments_style** (table): A TOML table defining the names of Pygments styles + to use for highlighting syntax. + The table has two recognised keys: ``default`` and ``dark``. + The style defined in the ``dark`` key will be used when + the CSS media query ``(prefers-color-scheme: dark)`` evaluates to true. + + ``[theme.pygments_style.default]`` can be overridden by the user via the + :confval:`pygments_style` config value. + +The ``[options]`` table defines the options for the theme. +It is structured such that each key-value pair corresponds to a variable name +and the corresponding default value. +These options can be overridden by the user in :confval:`html_theme_options` +and are accessible from all templates as ``theme_``. + +.. versionadded:: 7.3 + ``theme.toml`` support. + +.. _TOML: https://toml.io/en/ + +Exemplar :file:`theme.toml` file: + +.. code-block:: toml + + [theme] + inherit = "basic" + stylesheets = [ + "main-CSS-stylesheet.css", + ] + sidebars = [ + "localtoc.html", + "relations.html", + "sourcelink.html", + "searchbox.html", + ] + # Style names from https://pygments.org/styles/ + pygments_style = { default = "style_name", dark = "dark_style" } + + [options] + variable = "default value" + +Theme configuration (``theme.conf``) +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +The :file:`theme.conf` file is in INI format [1]_ (readable by the standard +Python :mod:`configparser` module) and has the following structure: + +.. code-block:: ini + + [theme] + inherit = base theme + stylesheet = main CSS name + pygments_style = stylename + sidebars = localtoc.html, relations.html, sourcelink.html, searchbox.html + + [options] + variable = default value + +* The **inherit** setting gives the name of a "base theme", or ``none``. The + base theme will be used to locate missing templates (most themes will not have + to supply most templates if they use ``basic`` as the base theme), its options + will be inherited, and all of its static files will be used as well. If you + want to also inherit the stylesheet, include it via CSS' ``@import`` in your + own. + +* The **stylesheet** setting gives a list of CSS filenames separated commas which + will be referenced in the HTML header. You can also use CSS' ``@import`` + technique to include one from the other, or use a custom HTML template that + adds ```` tags as necessary. Setting the + :confval:`html_style` config value will override this setting. + +* The **pygments_style** setting gives the name of a Pygments style to use for + highlighting. This can be overridden by the user in the + :confval:`pygments_style` config value. + +* The **pygments_dark_style** setting gives the name of a Pygments style to use + for highlighting when the CSS media query ``(prefers-color-scheme: dark)`` + evaluates to true. It is injected into the page using + :meth:`~sphinx.application.Sphinx.add_css_file()`. + +* The **sidebars** setting gives the comma separated list of sidebar templates + for constructing sidebars. This can be overridden by the user in the + :confval:`html_sidebars` config value. + +* The **options** section contains pairs of variable names and default values. + These options can be overridden by the user in :confval:`html_theme_options` + and are accessible from all templates as ``theme_``. + +.. versionadded:: 1.7 + sidebar settings + +.. versionchanged:: 5.1 + + The stylesheet setting accepts multiple CSS filenames + +Convert ``theme.conf`` to ``theme.toml`` +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +INI-style theme configuration files (``theme.conf``) can be converted to TOML +via a helper programme distributed with Sphinx. +This is intended for one-time use, and may be removed without notice in a future +version of Sphinx. + +.. code-block:: console + + $ python -m sphinx.theming conf_to_toml [THEME DIRECTORY PATH] + +The required argument is a path to a directory containing a ``theme.conf`` file. +The programme will write a ``theme.toml`` file in the same directory, +and will not modify the original ``theme.conf`` file. + +.. versionadded:: 7.3 + +.. _distribute-your-theme: + +Distribute your theme as a Python package +----------------------------------------- + +As a way to distribute your theme, you can use a Python package. This makes it +easier for users to set up your theme. + +To distribute your theme as a Python package, please define an entry point +called ``sphinx.html_themes`` in your ``pyproject.toml`` file, +and write a ``setup()`` function to register your theme +using the :meth:`~sphinx.application.Sphinx.add_html_theme` API: + +.. code-block:: toml + + # pyproject.toml + + [project.entry-points."sphinx.html_themes"] + name_of_theme = "your_theme_package" + +.. code-block:: python + + # your_theme_package.py + from os import path + + def setup(app): + app.add_html_theme('name_of_theme', path.abspath(path.dirname(__file__))) + +If your theme package contains two or more themes, please call +``add_html_theme()`` twice or more. + +.. versionadded:: 1.2 + 'sphinx_themes' entry_points feature. + +.. deprecated:: 1.6 + ``sphinx_themes`` entry_points has been deprecated. + +.. versionadded:: 1.6 + ``sphinx.html_themes`` entry_points feature. + + +Templating +---------- + +.. toctree:: + :hidden: + + templating + +The :doc:`guide to templating ` is helpful if you want to write your +own templates. What is important to keep in mind is the order in which Sphinx +searches for templates: + +* First, in the user's ``templates_path`` directories. +* Then, in the selected theme. +* Then, in its base theme, its base's base theme, etc. + +When extending a template in the base theme with the same name, use the theme +name as an explicit directory: ``{% extends "basic/layout.html" %}``. From a +user ``templates_path`` template, you can still use the "exclamation mark" +syntax as :ref:`described in the templating document `. + + +.. _theming-static-templates: + +Static templates +~~~~~~~~~~~~~~~~ + +Since theme options are meant for the user to configure a theme more easily, +without having to write a custom stylesheet, it is necessary to be able to +template static files as well as HTML files. Therefore, Sphinx supports +so-called "static templates", like this: + +If the name of a file in the ``static/`` directory of a theme (or in the user's +static path) ends with ``.jinja`` or ``_t``, it will be processed by the +template engine. The suffix will be removed from the final file name. + +For example, a theme with a ``static/theme_styles.css.jinja`` file could use +templating to put options into the stylesheet. +When a documentation project is built with that theme, +the output directory will contain a ``_static/theme_styles.css`` file +where all template tags have been processed. + +.. versionchanged:: 7.4 + + The preferred suffix for static templates is now ``.jinja``, in line with + the Jinja project's `recommended file extension`_. + + The ``_t`` file suffix for static templates is now considered 'legacy', and + support may eventually be removed. + + If a static template with either a ``_t`` suffix or a ``.jinja`` suffix is + detected, it will be processed by the template engine, with the suffix + removed from the final file name. + + .. _recommended file extension: https://jinja.palletsprojects.com/en/latest/templates/#template-file-extension + + +Use custom page metadata in HTML templates +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Any key / value pairs in :doc:`field lists ` +that are placed *before* the page's title will be available to the Jinja +template when building the page within the :data:`meta` attribute. For example, +if a page had the following text before its first title: + +.. code-block:: rst + + :mykey: My value + + My first title + -------------- + +Then it could be accessed within a Jinja template like so: + +.. code-block:: jinja + + {%- if meta is mapping %} + {{ meta.get("mykey") }} + {%- endif %} + +Note the check that ``meta`` is a dictionary ("mapping" in Jinja +terminology) to ensure that using it in this way is valid. + + +Defining custom template functions +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Sometimes it is useful to define your own function in Python that you wish to +then use in a template. For example, if you'd like to insert a template value +with logic that depends on the user's configuration in the project, or if you'd +like to include non-trivial checks and provide friendly error messages for +incorrect configuration in the template. + +To define your own template function, you'll need to define two functions +inside your module: + +* A **page context event handler** (or **registration**) function. This is + connected to the :class:`.Sphinx` application via an event callback. +* A **template function** that you will use in your Jinja template. + +First, define the registration function, which accepts the arguments for +:event:`html-page-context`. + +Within the registration function, define the template function that you'd like to +use within Jinja. The template function should return a string or Python objects +(lists, dictionaries) with strings inside that Jinja uses in the templating process + +.. note:: + + The template function will have access to all of the variables that + are passed to the registration function. + +At the end of the registration function, add the template function to the +Sphinx application's context with ``context['template_func'] = template_func``. + +Finally, in your extension's ``setup()`` function, add your registration +function as a callback for :event:`html-page-context`. + +.. code-block:: python + + # The registration function + def setup_my_func(app, pagename, templatename, context, doctree): + # The template function + def my_func(mystring): + return "Your string is %s" % mystring + # Add it to the page's context + context['my_func'] = my_func + + # Your extension's setup function + def setup(app): + app.connect("html-page-context", setup_my_func) + +Now, you will have access to this function in jinja like so: + +.. code-block:: jinja + +
+ {{ my_func("some string") }} +
+ + +Add your own static files to the build assets +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +By default, Sphinx copies static files on the ``static/`` directory of the template +directory. However, if your package needs to place static files outside of the +``static/`` directory for some reasons, you need to copy them to the ``_static/`` +directory of HTML outputs manually at the build via an event hook. Here is an +example of code to accomplish this: + +.. code-block:: python + + from os import path + from sphinx.util.fileutil import copy_asset_file + + def copy_custom_files(app, exc): + if app.builder.format == 'html' and not exc: + staticdir = path.join(app.builder.outdir, '_static') + copy_asset_file('path/to/myextension/_static/myjsfile.js', staticdir) + + def setup(app): + app.connect('build-finished', copy_custom_files) + + +Inject JavaScript based on user configuration +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +If your extension makes use of JavaScript, it can be useful to allow users +to control its behavior using their Sphinx configuration. However, this can +be difficult to do if your JavaScript comes in the form of a static library +(which will not be built with Jinja). + +There are two ways to inject variables into the JavaScript space based on user +configuration. + +First, you may append ``_t`` to the end of any static files included with your +extension. This will cause Sphinx to process these files with the templating +engine, allowing you to embed variables and control behavior. + +For example, the following JavaScript structure: + +.. code-block:: none + + mymodule/ + ├── _static + │   └── myjsfile.js_t + └── mymodule.py + +Will result in the following static file placed in your HTML's build output: + +.. code-block:: none + + _build/ + └── html + └── _static +    └── myjsfile.js + +See :ref:`theming-static-templates` for more information. + +Second, you may use the :meth:`.Sphinx.add_js_file` method without pointing it +to a file. Normally, this method is used to insert a new JavaScript file +into your site. However, if you do *not* pass a file path, but instead pass +a string to the "body" argument, then this text will be inserted as JavaScript +into your site's head. This allows you to insert variables into your project's +JavaScript from Python. + +For example, the following code will read in a user-configured value and then +insert this value as a JavaScript variable, which your extension's JavaScript +code may use: + +.. code-block:: python + + # This function reads in a variable and inserts it into JavaScript + def add_js_variable(app): + # This is a configuration that you've specified for users in `conf.py` + js_variable = app.config['my_javascript_variable'] + js_text = "var my_variable = '%s';" % js_variable + app.add_js_file(None, body=js_text) + # We connect this function to the step after the builder is initialized + def setup(app): + # Tell Sphinx about this configuration variable + app.add_config_value('my_javascript_variable', 0, 'html') + # Run the function after the builder is initialized + app.connect('builder-inited', add_js_variable) + +As a result, in your theme you can use code that depends on the presence of +this variable. Users can control the variable's value by defining it in their +:file:`conf.py` file. + + +.. [1] It is not an executable Python file, as opposed to :file:`conf.py`, + because that would pose an unnecessary security risk if themes are + shared. diff --git a/doc/development/html_themes/templating.rst b/doc/development/html_themes/templating.rst new file mode 100644 index 0000000..e2de045 --- /dev/null +++ b/doc/development/html_themes/templating.rst @@ -0,0 +1,479 @@ +.. highlight:: html+jinja + +.. _templating: + +========== +Templating +========== + +Sphinx uses the `Jinja `_ templating engine +for its HTML templates. Jinja is a text-based engine, inspired by Django +templates, so anyone having used Django will already be familiar with it. It +also has excellent documentation for those who need to make themselves familiar +with it. + + +Do I need to use Sphinx's templates to produce HTML? +---------------------------------------------------- + +No. You have several other options: + +* You can write a :class:`~sphinx.application.TemplateBridge` subclass that + calls your template engine of choice, and set the :confval:`template_bridge` + configuration value accordingly. + +* You can :ref:`write a custom builder ` that derives from + :class:`~sphinx.builders.html.StandaloneHTMLBuilder` and calls your template + engine of choice. + +* You can use the :class:`~sphinxcontrib.serializinghtml.PickleHTMLBuilder` that + produces pickle files with the page contents, and postprocess them using a + custom tool, or use them in your Web application. + +.. _templating-primer: + +Jinja/Sphinx Templating Primer +------------------------------ + +The default templating language in Sphinx is Jinja. It's Django/Smarty inspired +and easy to understand. The most important concept in Jinja is :dfn:`template +inheritance`, which means that you can overwrite only specific blocks within a +template, customizing it while also keeping the changes at a minimum. + +To customize the output of your documentation you can override all the templates +(both the layout templates and the child templates) by adding files with the +same name as the original filename into the template directory of the structure +the Sphinx quickstart generated for you. + +Sphinx will look for templates in the folders of :confval:`templates_path` +first, and if it can't find the template it's looking for there, it falls back +to the selected theme's templates. + +A template contains **variables**, which are replaced with values when the +template is evaluated, **tags**, which control the logic of the template and +**blocks** which are used for template inheritance. + +Sphinx's *basic* theme provides base templates with a couple of blocks it will +fill with data. These are located in the :file:`themes/basic` subdirectory of +the Sphinx installation directory, and used by all builtin Sphinx themes. +Templates with the same name in the :confval:`templates_path` override templates +supplied by the selected theme. + +For example, to add a new link to the template area containing related links all +you have to do is to add a new template called ``layout.html`` with the +following contents:: + + {% extends "!layout.html" %} + {% block rootrellink %} +
  • Project Homepage »
  • + {{ super() }} + {% endblock %} + +By prefixing the name of the overridden template with an exclamation mark, +Sphinx will load the layout template from the underlying HTML theme. + +.. important:: + If you override a block, call ``{{ super() }}`` somewhere to render the + block's original content in the extended template -- unless you don't want + that content to show up. + + +Working with the builtin templates +---------------------------------- + +The builtin **basic** theme supplies the templates that all builtin Sphinx +themes are based on. It has the following elements you can override or use: + +Blocks +~~~~~~ + +The following blocks exist in the ``layout.html`` template: + +``doctype`` + The doctype of the output format. By default this is XHTML 1.0 Transitional + as this is the closest to what Sphinx and Docutils generate and it's a good + idea not to change it unless you want to switch to HTML 5 or a different but + compatible XHTML doctype. + +``linktags`` + This block adds a couple of ```` tags to the head section of the + template. + +``extrahead`` + This block is empty by default and can be used to add extra contents into + the ```` tag of the generated HTML file. This is the right place to + add references to JavaScript or extra CSS files. + +``relbar1``, ``relbar2`` + This block contains the *relation bar*, the list of related links (the + parent documents on the left, and the links to index, modules etc. on the + right). ``relbar1`` appears before the document, ``relbar2`` after the + document. By default, both blocks are filled; to show the relbar only + before the document, you would override ``relbar2`` like this:: + + {% block relbar2 %}{% endblock %} + +``rootrellink``, ``relbaritems`` + Inside the relbar there are three sections: The ``rootrellink``, the links + from the documentation and the custom ``relbaritems``. The ``rootrellink`` + is a block that by default contains a list item pointing to the root + document by default, the ``relbaritems`` is an empty block. If you + override them to add extra links into the bar make sure that they are list + items and end with the :data:`reldelim1`. + +``document`` + The contents of the document itself. It contains the block "body" where + the individual content is put by subtemplates like ``page.html``. + + .. note:: + In order for the built-in JavaScript search to show a page preview on + the results page, the document or body content should be wrapped in an + HTML element containing the ``role="main"`` attribute. For example:: + +
    + {% block document %}{% endblock %} +
    + +``sidebar1``, ``sidebar2`` + A possible location for a sidebar. ``sidebar1`` appears before the document + and is empty by default, ``sidebar2`` after the document and contains the + default sidebar. If you want to swap the sidebar location override this and + call the ``sidebar`` helper:: + + {% block sidebar1 %}{{ sidebar() }}{% endblock %} + {% block sidebar2 %}{% endblock %} + + (The ``sidebar2`` location for the sidebar is needed by the ``sphinxdoc.css`` + stylesheet, for example.) + +``sidebarlogo`` + The logo location within the sidebar. Override this if you want to place + some content at the top of the sidebar. + +``footer`` + The block for the footer div. If you want a custom footer or markup before + or after it, override this one. + +The following four blocks are *only* used for pages that do not have assigned a +list of custom sidebars in the :confval:`html_sidebars` config value. Their use +is deprecated in favor of separate sidebar templates, which can be included via +:confval:`html_sidebars`. + +``sidebartoc`` + The table of contents within the sidebar. + + .. deprecated:: 1.0 + +``sidebarrel`` + The relation links (previous, next document) within the sidebar. + + .. deprecated:: 1.0 + +``sidebarsourcelink`` + The "Show source" link within the sidebar (normally only shown if this is + enabled by :confval:`html_show_sourcelink`). + + .. deprecated:: 1.0 + +``sidebarsearch`` + The search box within the sidebar. Override this if you want to place some + content at the bottom of the sidebar. + + .. deprecated:: 1.0 + + +Configuration Variables +~~~~~~~~~~~~~~~~~~~~~~~ + +Inside templates you can set a couple of variables used by the layout template +using the ``{% set %}`` tag: + +.. data:: reldelim1 + + The delimiter for the items on the left side of the related bar. This + defaults to ``' »'`` Each item in the related bar ends with the value + of this variable. + +.. data:: reldelim2 + + The delimiter for the items on the right side of the related bar. This + defaults to ``' |'``. Each item except of the last one in the related bar + ends with the value of this variable. + +Overriding works like this:: + + {% extends "!layout.html" %} + {% set reldelim1 = ' >' %} + +.. data:: script_files + + Add additional script files here, like this:: + + {% set script_files = script_files + ["_static/myscript.js"] %} + + .. deprecated:: 1.8.0 + + Please use ``.Sphinx.add_js_file()`` instead. + +Helper Functions +~~~~~~~~~~~~~~~~ + +Sphinx provides various Jinja functions as helpers in the template. You can use +them to generate links or output multiply used elements. + +.. function:: pathto(document) + + Return the path to a Sphinx document as a URL. Use this to refer to built + documents. + +.. function:: pathto(file, 1) + :no-index: + + Return the path to a *file* which is a filename relative to the root of the + generated output. Use this to refer to static files. + +.. function:: hasdoc(document) + + Check if a document with the name *document* exists. + +.. function:: sidebar() + + Return the rendered sidebar. + +.. function:: relbar() + + Return the rendered relation bar. + +.. function:: warning(message) + + Emit a warning message. + +Global Variables +~~~~~~~~~~~~~~~~ + +These global variables are available in every template and are safe to use. +There are more, but most of them are an implementation detail and might change +in the future. + +.. data:: builder + + The name of the builder (e.g. ``html`` or ``htmlhelp``). + +.. data:: copyright + + The value of :confval:`copyright`. + +.. data:: docstitle + + The title of the documentation (the value of :confval:`html_title`), except + when the "single-file" builder is used, when it is set to ``None``. + +.. data:: embedded + + True if the built HTML is meant to be embedded in some viewing application + that handles navigation, not the web browser, such as for HTML help or Qt + help formats. In this case, the sidebar is not included. + +.. data:: favicon_url + + The relative path to the HTML favicon image from the current document, or + URL to the favicon, or ``''``. + + .. versionadded:: 4.0 + +.. data:: file_suffix + + The value of the builder's :attr:`~.SerializingHTMLBuilder.out_suffix` + attribute, i.e. the file name extension that the output files will get. For + a standard HTML builder, this is usually ``.html``. + +.. data:: has_source + + True if the reStructuredText document sources are copied + (if :confval:`html_copy_source` is ``True``). + +.. data:: language + + The value of :confval:`language`. + +.. data:: last_updated + + The build date. + +.. data:: logo_url + + The relative path to the HTML logo image from the current document, or URL + to the logo, or ``''``. + + .. versionadded:: 4.0 + +.. data:: master_doc + + Same as :data:`root_doc`. + + .. versionchanged:: 4.0 + + Renamed to ``root_doc``. + +.. data:: root_doc + + The value of :confval:`root_doc`, for usage with :func:`pathto`. + + .. versionchanged:: 4.0 + + Renamed from ``master_doc``. + +.. data:: pagename + + The "page name" of the current file, i.e. either the document name if the + file is generated from a reStructuredText source, + or the equivalent hierarchical name relative to the output directory + (``[directory/]filename_without_extension``). + +.. data:: project + + The value of :confval:`project`. + +.. data:: release + + The value of :confval:`release`. + +.. data:: rellinks + + A list of links to put at the left side of the relbar, next to "next" and + "prev". This usually contains links to the general index and other indices, + such as the Python module index. If you add something yourself, it must be a + tuple ``(pagename, link title, accesskey, link text)``. + +.. data:: shorttitle + + The value of :confval:`html_short_title`. + +.. data:: show_source + + True if :confval:`html_show_sourcelink` is ``True``. + +.. data:: sphinx_version + + The version of Sphinx used to build represented as a string for example "3.5.1". + +.. data:: sphinx_version_tuple + + The version of Sphinx used to build represented as a tuple of five elements. + For Sphinx version 3.5.1 beta 3 this would be ``(3, 5, 1, 'beta', 3)``. + The fourth element can be one of: ``alpha``, ``beta``, ``rc``, ``final``. + ``final`` always has 0 as the last element. + + .. versionadded:: 4.2 + +.. data:: docutils_version_info + + The version of Docutils used to build represented as a tuple of five elements. + For Docutils version 0.16.1 beta 2 this would be ``(0, 16, 1, 'beta', 2)``. + The fourth element can be one of: ``alpha``, ``beta``, ``candidate``, ``final``. + ``final`` always has 0 as the last element. + + .. versionadded:: 5.0.2 + +.. data:: styles + + A list of the names of the main stylesheets as given by the theme or + :confval:`html_style`. + + .. versionadded:: 5.1 + +.. data:: title + + The title of the current document, as used in the ```` tag. + +.. data:: use_opensearch + + The value of :confval:`html_use_opensearch`. + +.. data:: version + + The value of :confval:`version`. + + +In addition to these values, there are also all **theme options** available +(prefixed by ``theme_``), as well as the values given by the user in +:confval:`html_context`. + +In documents that are created from source files (as opposed to +automatically-generated files like the module index, or documents that already +are in HTML form), these variables are also available: + +.. data:: body + + A string containing the content of the page in HTML form as produced by the + HTML builder, before the theme is applied. + +.. data:: display_toc + + A boolean that is True if the toc contains more than one entry. + +.. data:: meta + + Document metadata (a dictionary), see :ref:`metadata`. + +.. data:: metatags + + A string containing the page's HTML :dudir:`meta` tags. + +.. data:: next + + The next document for the navigation. This variable is either false or has + two attributes ``link`` and ``title``. The title contains HTML markup. For + example, to generate a link to the next page, you can use this snippet:: + + {% if next %} + <a href="{{ next.link|e }}">{{ next.title }}</a> + {% endif %} + +.. data:: page_source_suffix + + The suffix of the file that was rendered. Since we support a list of + :confval:`source_suffix`, this will allow you to properly link to the + original source file. + +.. data:: parents + + A list of parent documents for navigation, structured like the :data:`next` + item. + +.. data:: prev + + Like :data:`next`, but for the previous page. + +.. data:: sourcename + + The name of the copied source file for the current document. This is only + nonempty if the :confval:`html_copy_source` value is ``True``. + This has empty value on creating automatically-generated files. + +.. data:: toc + + The local table of contents for the current page, rendered as HTML bullet + lists. + +.. data:: toctree + + A callable yielding the global TOC tree containing the current page, rendered + as HTML bullet lists. Optional keyword arguments: + + ``collapse`` + If true, all TOC entries that are not ancestors of the current page are + collapsed. + ``True`` by default. + + ``maxdepth`` + The maximum depth of the tree. Set it to ``-1`` to allow unlimited depth. + Defaults to the max depth selected in the toctree directive. + + ``titles_only`` + If true, put only top-level document titles in the tree. + ``False`` by default. + + ``includehidden`` + If true, the ToC tree will also contain hidden entries. + ``False`` by default. diff --git a/doc/development/index.rst b/doc/development/index.rst index 55a31a0..b059569 100644 --- a/doc/development/index.rst +++ b/doc/development/index.rst @@ -1,24 +1,19 @@ -========================= -Writing Sphinx Extensions -========================= +.. _extending-sphinx: + +Extending Sphinx +================ This guide is aimed at giving a quick introduction for those wishing to -develop their own extensions for Sphinx. Sphinx possesses significant -extensibility capabilities including the ability to hook into almost every -point of the build process. If you simply wish to use Sphinx with existing -extensions, refer to :doc:`/usage/index`. For a more detailed discussion of -the extension interface see :doc:`/extdev/index`. +develop their own extensions for Sphinx. +Sphinx possesses significant extensibility capabilities +including the ability to hook into almost every point of the build process. +If you simply wish to use Sphinx with existing extensions, +refer to :doc:`/usage/index`. +For a more detailed discussion of the extension interface see :doc:`/extdev/index`. .. toctree:: :maxdepth: 2 - overview tutorials/index - builders - -.. toctree:: - :caption: Theming - :maxdepth: 2 - - templating - theming + howtos/index + html_themes/index diff --git a/doc/development/overview.rst b/doc/development/overview.rst deleted file mode 100644 index df8f5bb..0000000 --- a/doc/development/overview.rst +++ /dev/null @@ -1,32 +0,0 @@ -Developing extensions overview -============================== - -This page contains general information about developing Sphinx extensions. - -Make an extension depend on another extension ---------------------------------------------- - -Sometimes your extension depends on the functionality of another -Sphinx extension. Most Sphinx extensions are activated in a -project's :file:`conf.py` file, but this is not available to you as an -extension developer. - -.. module:: sphinx.application - :no-index: - -To ensure that another extension is activated as a part of your own extension, -use the :meth:`sphinx.application.Sphinx.setup_extension` method. This will -activate another extension at run-time, ensuring that you have access to its -functionality. - -For example, the following code activates the ``recommonmark`` extension: - -.. code-block:: python - - def setup(app): - app.setup_extension("recommonmark") - -.. note:: - - Since your extension will depend on another, make sure to include - it as a part of your extension's installation requirements. diff --git a/doc/development/templating.rst b/doc/development/templating.rst deleted file mode 100644 index 016b8b8..0000000 --- a/doc/development/templating.rst +++ /dev/null @@ -1,479 +0,0 @@ -.. highlight:: html+jinja - -.. _templating: - -========== -Templating -========== - -Sphinx uses the `Jinja <https://jinja.palletsprojects.com/>`_ templating engine -for its HTML templates. Jinja is a text-based engine, inspired by Django -templates, so anyone having used Django will already be familiar with it. It -also has excellent documentation for those who need to make themselves familiar -with it. - - -Do I need to use Sphinx's templates to produce HTML? ----------------------------------------------------- - -No. You have several other options: - -* You can write a :class:`~sphinx.application.TemplateBridge` subclass that - calls your template engine of choice, and set the :confval:`template_bridge` - configuration value accordingly. - -* You can :ref:`write a custom builder <writing-builders>` that derives from - :class:`~sphinx.builders.html.StandaloneHTMLBuilder` and calls your template - engine of choice. - -* You can use the :class:`~sphinxcontrib.serializinghtml.PickleHTMLBuilder` that - produces pickle files with the page contents, and postprocess them using a - custom tool, or use them in your Web application. - -.. _templating-primer: - -Jinja/Sphinx Templating Primer ------------------------------- - -The default templating language in Sphinx is Jinja. It's Django/Smarty inspired -and easy to understand. The most important concept in Jinja is :dfn:`template -inheritance`, which means that you can overwrite only specific blocks within a -template, customizing it while also keeping the changes at a minimum. - -To customize the output of your documentation you can override all the templates -(both the layout templates and the child templates) by adding files with the -same name as the original filename into the template directory of the structure -the Sphinx quickstart generated for you. - -Sphinx will look for templates in the folders of :confval:`templates_path` -first, and if it can't find the template it's looking for there, it falls back -to the selected theme's templates. - -A template contains **variables**, which are replaced with values when the -template is evaluated, **tags**, which control the logic of the template and -**blocks** which are used for template inheritance. - -Sphinx's *basic* theme provides base templates with a couple of blocks it will -fill with data. These are located in the :file:`themes/basic` subdirectory of -the Sphinx installation directory, and used by all builtin Sphinx themes. -Templates with the same name in the :confval:`templates_path` override templates -supplied by the selected theme. - -For example, to add a new link to the template area containing related links all -you have to do is to add a new template called ``layout.html`` with the -following contents:: - - {% extends "!layout.html" %} - {% block rootrellink %} - <li><a href="https://project.invalid/">Project Homepage</a> »</li> - {{ super() }} - {% endblock %} - -By prefixing the name of the overridden template with an exclamation mark, -Sphinx will load the layout template from the underlying HTML theme. - -.. important:: - If you override a block, call ``{{ super() }}`` somewhere to render the - block's original content in the extended template -- unless you don't want - that content to show up. - - -Working with the builtin templates ----------------------------------- - -The builtin **basic** theme supplies the templates that all builtin Sphinx -themes are based on. It has the following elements you can override or use: - -Blocks -~~~~~~ - -The following blocks exist in the ``layout.html`` template: - -``doctype`` - The doctype of the output format. By default this is XHTML 1.0 Transitional - as this is the closest to what Sphinx and Docutils generate and it's a good - idea not to change it unless you want to switch to HTML 5 or a different but - compatible XHTML doctype. - -``linktags`` - This block adds a couple of ``<link>`` tags to the head section of the - template. - -``extrahead`` - This block is empty by default and can be used to add extra contents into - the ``<head>`` tag of the generated HTML file. This is the right place to - add references to JavaScript or extra CSS files. - -``relbar1``, ``relbar2`` - This block contains the *relation bar*, the list of related links (the - parent documents on the left, and the links to index, modules etc. on the - right). ``relbar1`` appears before the document, ``relbar2`` after the - document. By default, both blocks are filled; to show the relbar only - before the document, you would override ``relbar2`` like this:: - - {% block relbar2 %}{% endblock %} - -``rootrellink``, ``relbaritems`` - Inside the relbar there are three sections: The ``rootrellink``, the links - from the documentation and the custom ``relbaritems``. The ``rootrellink`` - is a block that by default contains a list item pointing to the root - document by default, the ``relbaritems`` is an empty block. If you - override them to add extra links into the bar make sure that they are list - items and end with the :data:`reldelim1`. - -``document`` - The contents of the document itself. It contains the block "body" where - the individual content is put by subtemplates like ``page.html``. - - .. note:: - In order for the built-in JavaScript search to show a page preview on - the results page, the document or body content should be wrapped in an - HTML element containing the ``role="main"`` attribute. For example:: - - <div role="main"> - {% block document %}{% endblock %} - </div> - -``sidebar1``, ``sidebar2`` - A possible location for a sidebar. ``sidebar1`` appears before the document - and is empty by default, ``sidebar2`` after the document and contains the - default sidebar. If you want to swap the sidebar location override this and - call the ``sidebar`` helper:: - - {% block sidebar1 %}{{ sidebar() }}{% endblock %} - {% block sidebar2 %}{% endblock %} - - (The ``sidebar2`` location for the sidebar is needed by the ``sphinxdoc.css`` - stylesheet, for example.) - -``sidebarlogo`` - The logo location within the sidebar. Override this if you want to place - some content at the top of the sidebar. - -``footer`` - The block for the footer div. If you want a custom footer or markup before - or after it, override this one. - -The following four blocks are *only* used for pages that do not have assigned a -list of custom sidebars in the :confval:`html_sidebars` config value. Their use -is deprecated in favor of separate sidebar templates, which can be included via -:confval:`html_sidebars`. - -``sidebartoc`` - The table of contents within the sidebar. - - .. deprecated:: 1.0 - -``sidebarrel`` - The relation links (previous, next document) within the sidebar. - - .. deprecated:: 1.0 - -``sidebarsourcelink`` - The "Show source" link within the sidebar (normally only shown if this is - enabled by :confval:`html_show_sourcelink`). - - .. deprecated:: 1.0 - -``sidebarsearch`` - The search box within the sidebar. Override this if you want to place some - content at the bottom of the sidebar. - - .. deprecated:: 1.0 - - -Configuration Variables -~~~~~~~~~~~~~~~~~~~~~~~ - -Inside templates you can set a couple of variables used by the layout template -using the ``{% set %}`` tag: - -.. data:: reldelim1 - - The delimiter for the items on the left side of the related bar. This - defaults to ``' »'`` Each item in the related bar ends with the value - of this variable. - -.. data:: reldelim2 - - The delimiter for the items on the right side of the related bar. This - defaults to ``' |'``. Each item except of the last one in the related bar - ends with the value of this variable. - -Overriding works like this:: - - {% extends "!layout.html" %} - {% set reldelim1 = ' >' %} - -.. data:: script_files - - Add additional script files here, like this:: - - {% set script_files = script_files + ["_static/myscript.js"] %} - - .. deprecated:: 1.8.0 - - Please use ``.Sphinx.add_js_file()`` instead. - -Helper Functions -~~~~~~~~~~~~~~~~ - -Sphinx provides various Jinja functions as helpers in the template. You can use -them to generate links or output multiply used elements. - -.. function:: pathto(document) - - Return the path to a Sphinx document as a URL. Use this to refer to built - documents. - -.. function:: pathto(file, 1) - :no-index: - - Return the path to a *file* which is a filename relative to the root of the - generated output. Use this to refer to static files. - -.. function:: hasdoc(document) - - Check if a document with the name *document* exists. - -.. function:: sidebar() - - Return the rendered sidebar. - -.. function:: relbar() - - Return the rendered relation bar. - -.. function:: warning(message) - - Emit a warning message. - -Global Variables -~~~~~~~~~~~~~~~~ - -These global variables are available in every template and are safe to use. -There are more, but most of them are an implementation detail and might change -in the future. - -.. data:: builder - - The name of the builder (e.g. ``html`` or ``htmlhelp``). - -.. data:: copyright - - The value of :confval:`copyright`. - -.. data:: docstitle - - The title of the documentation (the value of :confval:`html_title`), except - when the "single-file" builder is used, when it is set to ``None``. - -.. data:: embedded - - True if the built HTML is meant to be embedded in some viewing application - that handles navigation, not the web browser, such as for HTML help or Qt - help formats. In this case, the sidebar is not included. - -.. data:: favicon_url - - The relative path to the HTML favicon image from the current document, or - URL to the favicon, or ``''``. - - .. versionadded:: 4.0 - -.. data:: file_suffix - - The value of the builder's :attr:`~.SerializingHTMLBuilder.out_suffix` - attribute, i.e. the file name extension that the output files will get. For - a standard HTML builder, this is usually ``.html``. - -.. data:: has_source - - True if the reST document sources are copied (if :confval:`html_copy_source` - is ``True``). - -.. data:: language - - The value of :confval:`language`. - -.. data:: last_updated - - The build date. - -.. data:: logo_url - - The relative path to the HTML logo image from the current document, or URL - to the logo, or ``''``. - - .. versionadded:: 4.0 - -.. data:: master_doc - - Same as :data:`root_doc`. - - .. versionchanged:: 4.0 - - Renamed to ``root_doc``. - -.. data:: root_doc - - The value of :confval:`root_doc`, for usage with :func:`pathto`. - - .. versionchanged:: 4.0 - - Renamed from ``master_doc``. - -.. data:: pagename - - The "page name" of the current file, i.e. either the document name if the - file is generated from a reST source, or the equivalent hierarchical name - relative to the output directory - (``[directory/]filename_without_extension``). - -.. data:: project - - The value of :confval:`project`. - -.. data:: release - - The value of :confval:`release`. - -.. data:: rellinks - - A list of links to put at the left side of the relbar, next to "next" and - "prev". This usually contains links to the general index and other indices, - such as the Python module index. If you add something yourself, it must be a - tuple ``(pagename, link title, accesskey, link text)``. - -.. data:: shorttitle - - The value of :confval:`html_short_title`. - -.. data:: show_source - - True if :confval:`html_show_sourcelink` is ``True``. - -.. data:: sphinx_version - - The version of Sphinx used to build represented as a string for example "3.5.1". - -.. data:: sphinx_version_tuple - - The version of Sphinx used to build represented as a tuple of five elements. - For Sphinx version 3.5.1 beta 3 this would be ``(3, 5, 1, 'beta', 3)``. - The fourth element can be one of: ``alpha``, ``beta``, ``rc``, ``final``. - ``final`` always has 0 as the last element. - - .. versionadded:: 4.2 - -.. data:: docutils_version_info - - The version of Docutils used to build represented as a tuple of five elements. - For Docutils version 0.16.1 beta 2 this would be ``(0, 16, 1, 'beta', 2)``. - The fourth element can be one of: ``alpha``, ``beta``, ``candidate``, ``final``. - ``final`` always has 0 as the last element. - - .. versionadded:: 5.0.2 - -.. data:: styles - - A list of the names of the main stylesheets as given by the theme or - :confval:`html_style`. - - .. versionadded:: 5.1 - -.. data:: title - - The title of the current document, as used in the ``<title>`` tag. - -.. data:: use_opensearch - - The value of :confval:`html_use_opensearch`. - -.. data:: version - - The value of :confval:`version`. - - -In addition to these values, there are also all **theme options** available -(prefixed by ``theme_``), as well as the values given by the user in -:confval:`html_context`. - -In documents that are created from source files (as opposed to -automatically-generated files like the module index, or documents that already -are in HTML form), these variables are also available: - -.. data:: body - - A string containing the content of the page in HTML form as produced by the - HTML builder, before the theme is applied. - -.. data:: display_toc - - A boolean that is True if the toc contains more than one entry. - -.. data:: meta - - Document metadata (a dictionary), see :ref:`metadata`. - -.. data:: metatags - - A string containing the page's HTML :dudir:`meta` tags. - -.. data:: next - - The next document for the navigation. This variable is either false or has - two attributes ``link`` and ``title``. The title contains HTML markup. For - example, to generate a link to the next page, you can use this snippet:: - - {% if next %} - <a href="{{ next.link|e }}">{{ next.title }}</a> - {% endif %} - -.. data:: page_source_suffix - - The suffix of the file that was rendered. Since we support a list of - :confval:`source_suffix`, this will allow you to properly link to the - original source file. - -.. data:: parents - - A list of parent documents for navigation, structured like the :data:`next` - item. - -.. data:: prev - - Like :data:`next`, but for the previous page. - -.. data:: sourcename - - The name of the copied source file for the current document. This is only - nonempty if the :confval:`html_copy_source` value is ``True``. - This has empty value on creating automatically-generated files. - -.. data:: toc - - The local table of contents for the current page, rendered as HTML bullet - lists. - -.. data:: toctree - - A callable yielding the global TOC tree containing the current page, rendered - as HTML bullet lists. Optional keyword arguments: - - ``collapse`` - If true, all TOC entries that are not ancestors of the current page are - collapsed. - ``True`` by default. - - ``maxdepth`` - The maximum depth of the tree. Set it to ``-1`` to allow unlimited depth. - Defaults to the max depth selected in the toctree directive. - - ``titles_only`` - If true, put only top-level document titles in the tree. - ``False`` by default. - - ``includehidden`` - If true, the ToC tree will also contain hidden entries. - ``False`` by default. diff --git a/doc/development/theming.rst b/doc/development/theming.rst deleted file mode 100644 index 13a5802..0000000 --- a/doc/development/theming.rst +++ /dev/null @@ -1,433 +0,0 @@ -HTML theme development -====================== - -.. versionadded:: 0.6 - -.. note:: - - This document provides information about creating your own theme. If you - simply wish to use a pre-existing HTML themes, refer to - :doc:`/usage/theming`. - -Sphinx supports changing the appearance of its HTML output via *themes*. A -theme is a collection of HTML templates, stylesheet(s) and other static files. -Additionally, it has a configuration file which specifies from which theme to -inherit, which highlighting style to use, and what options exist for customizing -the theme's look and feel. - -Themes are meant to be project-unaware, so they can be used for different -projects without change. - -.. note:: - - See :ref:`dev-extensions` for more information that may - be helpful in developing themes. - - -Creating themes ---------------- - -Themes take the form of either a directory or a zipfile (whose name is the -theme name), containing the following: - -* Either a :file:`theme.toml` file (preferred) or a :file:`theme.conf` file. -* HTML templates, if needed. -* A ``static/`` directory containing any static files that will be copied to the - output static directory on build. These can be images, styles, script files. - -Theme configuration (``theme.toml``) -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -The :file:`theme.toml` file is a TOML_ document, -containing two tables: ``[theme]`` and ``[options]``. - -The ``[theme]`` table defines the theme's settings: - -* **inherit** (string): The name of the base theme from which to inherit - settings, options, templates, and static files. - All static files from theme 'ancestors' will be used. - The theme will use all options defined in inherited themes. - Finally, inherited themes will be used to locate missing templates - (for example, if ``"basic"`` is used as the base theme, most templates will - already be defined). - - If set to ``"none"``, the theme will not inherit from any other theme. - Inheritance is recursive, forming a chain of inherited themes - (e.g. ``default`` -> ``classic`` -> ``basic`` -> ``none``). - -* **stylesheets** (list of strings): A list of CSS filenames which will be - included in generated HTML header. - Setting the :confval:`html_style` config value will override this setting. - - Other mechanisms for including multiple stylesheets include ``@import`` in CSS - or using a custom HTML template with appropriate ``<link rel="stylesheet">`` tags. - -* **sidebars** (list of strings): A list of sidebar templates. - This can be overridden by the user via the :confval:`html_sidebars` config value. - -* **pygments_style** (table): A TOML table defining the names of Pygments styles - to use for highlighting syntax. - The table has two recognised keys: ``default`` and ``dark``. - The style defined in the ``dark`` key will be used when - the CSS media query ``(prefers-color-scheme: dark)`` evaluates to true. - - ``[theme.pygments_style.default]`` can be overridden by the user via the - :confval:`pygments_style` config value. - -The ``[options]`` table defines the options for the theme. -It is structured such that each key-value pair corresponds to a variable name -and the corresponding default value. -These options can be overridden by the user in :confval:`html_theme_options` -and are accessible from all templates as ``theme_<name>``. - -.. versionadded:: 7.3 - ``theme.toml`` support. - -.. _TOML: https://toml.io/en/ - -Exemplar :file:`theme.toml` file: - -.. code-block:: toml - - [theme] - inherit = "basic" - stylesheets = [ - "main-CSS-stylesheet.css", - ] - sidebars = [ - "localtoc.html", - "relations.html", - "sourcelink.html", - "searchbox.html", - ] - # Style names from https://pygments.org/styles/ - pygments_style = { default = "style_name", dark = "dark_style" } - - [options] - variable = "default value" - -Theme configuration (``theme.conf``) -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -The :file:`theme.conf` file is in INI format [1]_ (readable by the standard -Python :mod:`configparser` module) and has the following structure: - -.. sourcecode:: ini - - [theme] - inherit = base theme - stylesheet = main CSS name - pygments_style = stylename - sidebars = localtoc.html, relations.html, sourcelink.html, searchbox.html - - [options] - variable = default value - -* The **inherit** setting gives the name of a "base theme", or ``none``. The - base theme will be used to locate missing templates (most themes will not have - to supply most templates if they use ``basic`` as the base theme), its options - will be inherited, and all of its static files will be used as well. If you - want to also inherit the stylesheet, include it via CSS' ``@import`` in your - own. - -* The **stylesheet** setting gives a list of CSS filenames separated commas which - will be referenced in the HTML header. You can also use CSS' ``@import`` - technique to include one from the other, or use a custom HTML template that - adds ``<link rel="stylesheet">`` tags as necessary. Setting the - :confval:`html_style` config value will override this setting. - -* The **pygments_style** setting gives the name of a Pygments style to use for - highlighting. This can be overridden by the user in the - :confval:`pygments_style` config value. - -* The **pygments_dark_style** setting gives the name of a Pygments style to use - for highlighting when the CSS media query ``(prefers-color-scheme: dark)`` - evaluates to true. It is injected into the page using - :meth:`~sphinx.application.Sphinx.add_css_file()`. - -* The **sidebars** setting gives the comma separated list of sidebar templates - for constructing sidebars. This can be overridden by the user in the - :confval:`html_sidebars` config value. - -* The **options** section contains pairs of variable names and default values. - These options can be overridden by the user in :confval:`html_theme_options` - and are accessible from all templates as ``theme_<name>``. - -.. versionadded:: 1.7 - sidebar settings - -.. versionchanged:: 5.1 - - The stylesheet setting accepts multiple CSS filenames - -Convert ``theme.conf`` to ``theme.toml`` -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -INI-style theme configuration files (``theme.conf``) can be converted to TOML -via a helper programme distributed with Sphinx. -This is intended for one-time use, and may be removed without notice in a future -version of Sphinx. - -.. code-block:: console - - $ python -m sphinx.theming conf_to_toml [THEME DIRECTORY PATH] - -The required argument is a path to a directory containing a ``theme.conf`` file. -The programme will write a ``theme.toml`` file in the same directory, -and will not modify the original ``theme.conf`` file. - -.. versionadded:: 7.3 - -.. _distribute-your-theme: - -Distribute your theme as a Python package ------------------------------------------ - -As a way to distribute your theme, you can use a Python package. This makes it -easier for users to set up your theme. - -To distribute your theme as a Python package, please define an entry point -called ``sphinx.html_themes`` in your ``pyproject.toml`` file, -and write a ``setup()`` function to register your theme -using the :meth:`~sphinx.application.Sphinx.add_html_theme` API: - -.. code-block:: toml - - # pyproject.toml - - [project.entry-points."sphinx.html_themes"] - name_of_theme = "your_theme_package" - -.. code-block:: python - - # your_theme_package.py - from os import path - - def setup(app): - app.add_html_theme('name_of_theme', path.abspath(path.dirname(__file__))) - -If your theme package contains two or more themes, please call -``add_html_theme()`` twice or more. - -.. versionadded:: 1.2 - 'sphinx_themes' entry_points feature. - -.. deprecated:: 1.6 - ``sphinx_themes`` entry_points has been deprecated. - -.. versionadded:: 1.6 - ``sphinx.html_themes`` entry_points feature. - - -Templating ----------- - -The :doc:`guide to templating <templating>` is helpful if you want to write your -own templates. What is important to keep in mind is the order in which Sphinx -searches for templates: - -* First, in the user's ``templates_path`` directories. -* Then, in the selected theme. -* Then, in its base theme, its base's base theme, etc. - -When extending a template in the base theme with the same name, use the theme -name as an explicit directory: ``{% extends "basic/layout.html" %}``. From a -user ``templates_path`` template, you can still use the "exclamation mark" -syntax as :ref:`described in the templating document <templating-primer>`. - - -.. _theming-static-templates: - -Static templates -~~~~~~~~~~~~~~~~ - -Since theme options are meant for the user to configure a theme more easily, -without having to write a custom stylesheet, it is necessary to be able to -template static files as well as HTML files. Therefore, Sphinx supports -so-called "static templates", like this: - -If the name of a file in the ``static/`` directory of a theme (or in the user's -static path, for that matter) ends with ``_t``, it will be processed by the -template engine. The ``_t`` will be left from the final file name. For -example, the *classic* theme has a file ``static/classic.css_t`` which uses -templating to put the color options into the stylesheet. When a documentation -project is built with the classic theme, the output directory will contain a -``_static/classic.css`` file where all template tags have been processed. - - -Use custom page metadata in HTML templates -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -Any key / value pairs in :doc:`field lists </usage/restructuredtext/field-lists>` -that are placed *before* the page's title will be available to the Jinja -template when building the page within the :data:`meta` attribute. For example, -if a page had the following text before its first title: - -.. code-block:: rst - - :mykey: My value - - My first title - -------------- - -Then it could be accessed within a Jinja template like so: - -.. code-block:: jinja - - {%- if meta is mapping %} - {{ meta.get("mykey") }} - {%- endif %} - -Note the check that ``meta`` is a dictionary ("mapping" in Jinja -terminology) to ensure that using it in this way is valid. - - -Defining custom template functions -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -Sometimes it is useful to define your own function in Python that you wish to -then use in a template. For example, if you'd like to insert a template value -with logic that depends on the user's configuration in the project, or if you'd -like to include non-trivial checks and provide friendly error messages for -incorrect configuration in the template. - -To define your own template function, you'll need to define two functions -inside your module: - -* A **page context event handler** (or **registration**) function. This is - connected to the :class:`.Sphinx` application via an event callback. -* A **template function** that you will use in your Jinja template. - -First, define the registration function, which accepts the arguments for -:event:`html-page-context`. - -Within the registration function, define the template function that you'd like to -use within Jinja. The template function should return a string or Python objects -(lists, dictionaries) with strings inside that Jinja uses in the templating process - -.. note:: - - The template function will have access to all of the variables that - are passed to the registration function. - -At the end of the registration function, add the template function to the -Sphinx application's context with ``context['template_func'] = template_func``. - -Finally, in your extension's ``setup()`` function, add your registration -function as a callback for :event:`html-page-context`. - -.. code-block:: python - - # The registration function - def setup_my_func(app, pagename, templatename, context, doctree): - # The template function - def my_func(mystring): - return "Your string is %s" % mystring - # Add it to the page's context - context['my_func'] = my_func - - # Your extension's setup function - def setup(app): - app.connect("html-page-context", setup_my_func) - -Now, you will have access to this function in jinja like so: - -.. code-block:: jinja - - <div> - {{ my_func("some string") }} - </div> - - -Add your own static files to the build assets -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -By default, Sphinx copies static files on the ``static/`` directory of the template -directory. However, if your package needs to place static files outside of the -``static/`` directory for some reasons, you need to copy them to the ``_static/`` -directory of HTML outputs manually at the build via an event hook. Here is an -example of code to accomplish this: - -.. code-block:: python - - from os import path - from sphinx.util.fileutil import copy_asset_file - - def copy_custom_files(app, exc): - if app.builder.format == 'html' and not exc: - staticdir = path.join(app.builder.outdir, '_static') - copy_asset_file('path/to/myextension/_static/myjsfile.js', staticdir) - - def setup(app): - app.connect('build-finished', copy_custom_files) - - -Inject JavaScript based on user configuration -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -If your extension makes use of JavaScript, it can be useful to allow users -to control its behavior using their Sphinx configuration. However, this can -be difficult to do if your JavaScript comes in the form of a static library -(which will not be built with Jinja). - -There are two ways to inject variables into the JavaScript space based on user -configuration. - -First, you may append ``_t`` to the end of any static files included with your -extension. This will cause Sphinx to process these files with the templating -engine, allowing you to embed variables and control behavior. - -For example, the following JavaScript structure: - -.. code-block:: none - - mymodule/ - ├── _static - │   └── myjsfile.js_t - └── mymodule.py - -Will result in the following static file placed in your HTML's build output: - -.. code-block:: none - - _build/ - └── html - └── _static -    └── myjsfile.js - -See :ref:`theming-static-templates` for more information. - -Second, you may use the :meth:`.Sphinx.add_js_file` method without pointing it -to a file. Normally, this method is used to insert a new JavaScript file -into your site. However, if you do *not* pass a file path, but instead pass -a string to the "body" argument, then this text will be inserted as JavaScript -into your site's head. This allows you to insert variables into your project's -JavaScript from Python. - -For example, the following code will read in a user-configured value and then -insert this value as a JavaScript variable, which your extension's JavaScript -code may use: - -.. code-block:: python - - # This function reads in a variable and inserts it into JavaScript - def add_js_variable(app): - # This is a configuration that you've specified for users in `conf.py` - js_variable = app.config['my_javascript_variable'] - js_text = "var my_variable = '%s';" % js_variable - app.add_js_file(None, body=js_text) - # We connect this function to the step after the builder is initialized - def setup(app): - # Tell Sphinx about this configuration variable - app.add_config_value('my_javascript_variable', 0, 'html') - # Run the function after the builder is initialized - app.connect('builder-inited', add_js_variable) - -As a result, in your theme you can use code that depends on the presence of -this variable. Users can control the variable's value by defining it in their -:file:`conf.py` file. - - -.. [1] It is not an executable Python file, as opposed to :file:`conf.py`, - because that would pose an unnecessary security risk if themes are - shared. diff --git a/doc/development/tutorials/adding_domain.rst b/doc/development/tutorials/adding_domain.rst new file mode 100644 index 0000000..8a00211 --- /dev/null +++ b/doc/development/tutorials/adding_domain.rst @@ -0,0 +1,237 @@ +.. _tutorial-adding-domain: + +Adding a reference domain +========================= + +The objective of this tutorial is to illustrate roles, directives and domains. +Once complete, we will be able to use this extension to describe a recipe and +reference that recipe from elsewhere in our documentation. + +.. note:: + + This tutorial is based on a guide first published on `opensource.com`_ and + is provided here with the original author's permission. + + .. _opensource.com: https://opensource.com/article/18/11/building-custom-workflows-sphinx + + +Overview +-------- + +We want the extension to add the following to Sphinx: + +* A ``recipe`` :term:`directive`, containing some content describing the recipe + steps, along with a ``:contains:`` option highlighting the main ingredients + of the recipe. + +* A ``ref`` :term:`role`, which provides a cross-reference to the recipe + itself. + +* A ``recipe`` :term:`domain`, which allows us to tie together the above role + and domain, along with things like indices. + +For that, we will need to add the following elements to Sphinx: + +* A new directive called ``recipe`` + +* New indexes to allow us to reference ingredient and recipes + +* A new domain called ``recipe``, which will contain the ``recipe`` directive + and ``ref`` role + + +Prerequisites +------------- + +We need the same setup as in +:ref:`the previous extensions <tutorial-extend-build>`. +This time, +we will be putting out extension in a file called :file:`recipe.py`. + +Here is an example of the folder structure you might obtain: + +.. code-block:: text + + └── source +    ├── _ext + │   └── recipe.py +    ├── conf.py +    └── index.rst + + +Writing the extension +--------------------- + +Open :file:`recipe.py` and paste the following code in it, all of which we will +explain in detail shortly: + +.. literalinclude:: examples/recipe.py + :language: python + :linenos: + +Let's look at each piece of this extension step-by-step to explain what's going +on. + +.. rubric:: The directive class + +The first thing to examine is the ``RecipeDirective`` directive: + +.. literalinclude:: examples/recipe.py + :language: python + :linenos: + :pyobject: RecipeDirective + +Unlike :ref:`tutorial-extending-syntax` and :ref:`tutorial-extend-build`, +this directive doesn't derive from +:class:`docutils.parsers.rst.Directive` and doesn't define a ``run`` method. +Instead, it derives from :class:`sphinx.directives.ObjectDescription` and +defines ``handle_signature`` and ``add_target_and_index`` methods. This is +because ``ObjectDescription`` is a special-purpose directive that's intended +for describing things like classes, functions, or, in our case, recipes. More +specifically, ``handle_signature`` implements parsing the signature of the +directive and passes on the object's name and type to its superclass, while +``add_target_and_index`` adds a target (to link to) and an entry to the index +for this node. + +We also see that this directive defines ``has_content``, ``required_arguments`` +and ``option_spec``. Unlike the ``TodoDirective`` directive added in the +:ref:`previous tutorial <tutorial-extend-build>`, +this directive takes a single argument, +the recipe name, and an option, ``contains``, +in addition to the nested reStructuredText in the body. + +.. rubric:: The index classes + +.. currentmodule:: sphinx.domains + +.. todo:: Add brief overview of indices + +.. literalinclude:: examples/recipe.py + :language: python + :linenos: + :pyobject: IngredientIndex + +.. literalinclude:: examples/recipe.py + :language: python + :linenos: + :pyobject: RecipeIndex + +Both ``IngredientIndex`` and ``RecipeIndex`` are derived from :class:`Index`. +They implement custom logic to generate a tuple of values that define the +index. Note that ``RecipeIndex`` is a simple index that has only one entry. +Extending it to cover more object types is not yet part of the code. + +Both indices use the method :meth:`Index.generate` to do their work. This +method combines the information from our domain, sorts it, and returns it in a +list structure that will be accepted by Sphinx. This might look complicated but +all it really is is a list of tuples like ``('tomato', 'TomatoSoup', 'test', +'rec-TomatoSoup',...)``. Refer to the :doc:`domain API guide +</extdev/domainapi>` for more information on this API. + +These index pages can be referenced with the :rst:role:`ref` role by combining +the domain name and the index ``name`` value. For example, ``RecipeIndex`` can be +referenced with ``:ref:`recipe-recipe``` and ``IngredientIndex`` can be referenced +with ``:ref:`recipe-ingredient```. + +.. rubric:: The domain + +A Sphinx domain is a specialized container that ties together roles, +directives, and indices, among other things. Let's look at the domain we're +creating here. + +.. literalinclude:: examples/recipe.py + :language: python + :linenos: + :pyobject: RecipeDomain + +There are some interesting things to note about this ``recipe`` domain and domains +in general. Firstly, we actually register our directives, roles and indices +here, via the ``directives``, ``roles`` and ``indices`` attributes, rather than +via calls later on in ``setup``. We can also note that we aren't actually +defining a custom role and are instead reusing the +:class:`sphinx.roles.XRefRole` role and defining the +:class:`sphinx.domains.Domain.resolve_xref` method. This method takes two +arguments, ``typ`` and ``target``, which refer to the cross-reference type and +its target name. We'll use ``target`` to resolve our destination from our +domain's ``recipes`` because we currently have only one type of node. + +Moving on, we can see that we've defined ``initial_data``. The values defined in +``initial_data`` will be copied to ``env.domaindata[domain_name]`` as the +initial data of the domain, and domain instances can access it via +``self.data``. We see that we have defined two items in ``initial_data``: +``recipes`` and ``recipe_ingredients``. Each contains a list of all objects +defined (i.e. all recipes) and a hash that maps a canonical ingredient name to +the list of objects. The way we name objects is common across our extension and +is defined in the ``get_full_qualified_name`` method. For each object created, +the canonical name is ``recipe.<recipename>``, where ``<recipename>`` is the +name the documentation writer gives the object (a recipe). This enables the +extension to use different object types that share the same name. Having a +canonical name and central place for our objects is a huge advantage. Both our +indices and our cross-referencing code use this feature. + +.. rubric:: The ``setup`` function + +.. currentmodule:: sphinx.application + +:ref:`As always <tutorial-extend-build>`, +the ``setup`` function is a requirement and is used to +hook the various parts of our extension into Sphinx. Let's look at the +``setup`` function for this extension. + +.. literalinclude:: examples/recipe.py + :language: python + :linenos: + :pyobject: setup + +This looks a little different to what we're used to seeing. There are no calls +to :meth:`~Sphinx.add_directive` or even :meth:`~Sphinx.add_role`. Instead, we +have a single call to :meth:`~Sphinx.add_domain` followed by some +initialization of the :doc:`standard domain </usage/domains/standard>`. +This is because we had already registered our directives, +roles and indexes as part of the directive itself. + + +Using the extension +------------------- + +You can now use the extension throughout your project. For example: + +.. code-block:: rst + :caption: index.rst + + Joe's Recipes + ============= + + Below are a collection of my favourite recipes. I highly recommend the + :recipe:ref:`TomatoSoup` recipe in particular! + + .. toctree:: + + tomato-soup + +.. code-block:: rst + :caption: tomato-soup.rst + + The recipe contains `tomato` and `cilantro`. + + .. recipe:recipe:: TomatoSoup + :contains: tomato, cilantro, salt, pepper + + This recipe is a tasty tomato soup, combine all ingredients + and cook. + +The important things to note are the use of the ``:recipe:ref:`` role to +cross-reference the recipe actually defined elsewhere (using the +``:recipe:recipe:`` directive). + + +Further reading +--------------- + +For more information, refer to the `docutils`_ documentation and +:doc:`/extdev/index`. + +If you wish to share your extension across multiple projects or with others, +check out the :ref:`third-party-extensions` section. + +.. _docutils: https://docutils.sourceforge.io/docs/ diff --git a/doc/development/tutorials/autodoc_ext.rst b/doc/development/tutorials/autodoc_ext.rst index cfd23e7..fb2a917 100644 --- a/doc/development/tutorials/autodoc_ext.rst +++ b/doc/development/tutorials/autodoc_ext.rst @@ -1,7 +1,7 @@ .. _autodoc_ext_tutorial: -Developing autodoc extension for IntEnum -======================================== +Developing autodoc extensions +============================= The objective of this tutorial is to create an extension that adds support for new type for autodoc. This autodoc extension will format @@ -27,8 +27,10 @@ We want to add following to autodoc: Prerequisites ------------- -We need the same setup as in :doc:`the previous extensions <todo>`. This time, -we will be putting out extension in a file called :file:`autodoc_intenum.py`. +We need the same setup as in +:ref:`the previous extensions <tutorial-extend-build>`. +This time, we will be putting out extension +in a file called :file:`autodoc_intenum.py`. The :file:`my_enums.py` will contain the sample enums we will document. Here is an example of the folder structure you might obtain: @@ -139,3 +141,9 @@ This will be the documentation file with auto-documentation directive: :caption: index.rst .. autointenum:: my_enums.Colors + +Further reading +--------------- + +If you wish to share your extension across multiple projects or with others, +check out the :ref:`third-party-extensions` section. diff --git a/doc/development/tutorials/examples/autodoc_intenum.py b/doc/development/tutorials/examples/autodoc_intenum.py index c52bb4c..7a19a23 100644 --- a/doc/development/tutorials/examples/autodoc_intenum.py +++ b/doc/development/tutorials/examples/autodoc_intenum.py @@ -9,6 +9,7 @@ if TYPE_CHECKING: from docutils.statemachine import StringList from sphinx.application import Sphinx + from sphinx.util.typing import ExtensionMetadata class IntEnumDocumenter(ClassDocumenter): @@ -52,6 +53,10 @@ class IntEnumDocumenter(ClassDocumenter): self.add_line('', source_name) -def setup(app: Sphinx) -> None: +def setup(app: Sphinx) -> ExtensionMetadata: app.setup_extension('sphinx.ext.autodoc') # Require autodoc extension app.add_autodocumenter(IntEnumDocumenter) + return { + 'version': '1', + 'parallel_read_safe': True, + } diff --git a/doc/development/tutorials/examples/helloworld.py b/doc/development/tutorials/examples/helloworld.py index da29562..3f7e504 100644 --- a/doc/development/tutorials/examples/helloworld.py +++ b/doc/development/tutorials/examples/helloworld.py @@ -1,18 +1,33 @@ +from __future__ import annotations + from docutils import nodes -from docutils.parsers.rst import Directive from sphinx.application import Sphinx +from sphinx.util.docutils import SphinxDirective, SphinxRole from sphinx.util.typing import ExtensionMetadata -class HelloWorld(Directive): - def run(self): - paragraph_node = nodes.paragraph(text='Hello World!') +class HelloRole(SphinxRole): + """A role to say hello!""" + + def run(self) -> tuple[list[nodes.Node], list[nodes.system_message]]: + node = nodes.inline(text=f'Hello {self.text}!') + return [node], [] + + +class HelloDirective(SphinxDirective): + """A directive to say hello!""" + + required_arguments = 1 + + def run(self) -> list[nodes.Node]: + paragraph_node = nodes.paragraph(text=f'hello {self.arguments[0]}!') return [paragraph_node] def setup(app: Sphinx) -> ExtensionMetadata: - app.add_directive('helloworld', HelloWorld) + app.add_role('hello', HelloRole()) + app.add_directive('hello', HelloDirective) return { 'version': '0.1', diff --git a/doc/development/tutorials/examples/recipe.py b/doc/development/tutorials/examples/recipe.py index 28d25f2..baf85fe 100644 --- a/doc/development/tutorials/examples/recipe.py +++ b/doc/development/tutorials/examples/recipe.py @@ -122,6 +122,7 @@ class RecipeDomain(Domain): 'recipes': [], # object list 'recipe_ingredients': {}, # name -> object } + data_version = 0 def get_full_qualified_name(self, node): return f'recipe.{node.arguments[0]}' diff --git a/doc/development/tutorials/examples/todo.py b/doc/development/tutorials/examples/todo.py index 2baac5c..4e9dc66 100644 --- a/doc/development/tutorials/examples/todo.py +++ b/doc/development/tutorials/examples/todo.py @@ -38,7 +38,7 @@ class TodoDirective(SphinxDirective): todo_node = todo('\n'.join(self.content)) todo_node += nodes.title(_('Todo'), _('Todo')) - self.state.nested_parse(self.content, self.content_offset, todo_node) + todo_node += self.parse_content_to_nodes() if not hasattr(self.env, 'todo_all_todos'): self.env.todo_all_todos = [] @@ -132,6 +132,7 @@ def setup(app: Sphinx) -> ExtensionMetadata: return { 'version': '0.1', + 'env_version': 1, 'parallel_read_safe': True, 'parallel_write_safe': True, } diff --git a/doc/development/tutorials/extending_build.rst b/doc/development/tutorials/extending_build.rst new file mode 100644 index 0000000..a81c84b --- /dev/null +++ b/doc/development/tutorials/extending_build.rst @@ -0,0 +1,379 @@ +.. _tutorial-extend-build: + +Extending the build process +=========================== + +The objective of this tutorial is to create a more comprehensive extension than +that created in :ref:`tutorial-extending-syntax`. +Whereas that guide just covered writing +a custom :term:`role` and :term:`directive`, +this guide covers a more complex extension to the Sphinx build process; +adding multiple directives, +along with custom nodes, additional config values and custom event handlers. + +To this end, we will cover a ``todo`` extension +that adds capabilities to include todo entries in the documentation, +and to collect these in a central place. +This is similar to the :mod:`sphinx.ext.todo` extension distributed with Sphinx. + +Overview +-------- + +.. note:: + To understand the design of this extension, refer to + :ref:`important-objects` and :ref:`build-phases`. + +We want the extension to add the following to Sphinx: + +* A ``todo`` directive, containing some content that is marked with "TODO" and + only shown in the output if a new config value is set. Todo entries should not + be in the output by default. + +* A ``todolist`` directive that creates a list of all todo entries throughout + the documentation. + +For that, we will need to add the following elements to Sphinx: + +* New directives, called ``todo`` and ``todolist``. + +* New document tree nodes to represent these directives, conventionally also + called ``todo`` and ``todolist``. We wouldn't need new nodes if the new + directives only produced some content representable by existing nodes. + +* A new config value ``todo_include_todos`` (config value names should start + with the extension name, in order to stay unique) that controls whether todo + entries make it into the output. + +* New event handlers: one for the :event:`doctree-resolved` event, to + replace the todo and todolist nodes, one for :event:`env-merge-info` + to merge intermediate results from parallel builds, and one for + :event:`env-purge-doc` (the reason for that will be covered later). + + +Prerequisites +------------- + +As with :ref:`tutorial-extending-syntax`, +we will not be distributing this plugin via PyPI so +once again we need a Sphinx project to call this from. You can use an existing +project or create a new one using :program:`sphinx-quickstart`. + +We assume you are using separate source (:file:`source`) and build +(:file:`build`) folders. Your extension file could be in any folder of your +project. In our case, let's do the following: + +#. Create an :file:`_ext` folder in :file:`source` +#. Create a new Python file in the :file:`_ext` folder called :file:`todo.py` + +Here is an example of the folder structure you might obtain: + +.. code-block:: text + + └── source +    ├── _ext + │   └── todo.py +    ├── _static +    ├── conf.py +    ├── somefolder +    ├── index.rst +    ├── somefile.rst +    └── someotherfile.rst + + +Writing the extension +--------------------- + +Open :file:`todo.py` and paste the following code in it, all of which we will +explain in detail shortly: + +.. literalinclude:: examples/todo.py + :language: python + :linenos: + +This is far more extensive extension than the one detailed in +:ref:`tutorial-extending-syntax`, +however, we will will look at each piece step-by-step to explain what's +happening. + +.. rubric:: The node classes + +Let's start with the node classes: + +.. literalinclude:: examples/todo.py + :language: python + :linenos: + :lines: 8-21 + +Node classes usually don't have to do anything except inherit from the standard +docutils classes defined in :mod:`docutils.nodes`. ``todo`` inherits from +``Admonition`` because it should be handled like a note or warning, ``todolist`` +is just a "general" node. + +.. note:: + + Many extensions will not have to create their own node classes and work fine + with the nodes already provided by `docutils + <https://docutils.sourceforge.io/docs/ref/doctree.html>`__ and :ref:`Sphinx + <nodes>`. + +.. attention:: + + It is important to know that while you can extend Sphinx without + leaving your ``conf.py``, if you declare an inherited node right + there, you'll hit an unobvious :py:class:`~pickle.PickleError`. So if + something goes wrong, please make sure that you put inherited nodes + into a separate Python module. + + For more details, see: + + - https://github.com/sphinx-doc/sphinx/issues/6751 + - https://github.com/sphinx-doc/sphinx/issues/1493 + - https://github.com/sphinx-doc/sphinx/issues/1424 + +.. rubric:: The directive classes + +A directive class is a class deriving usually from +:class:`docutils.parsers.rst.Directive`. The directive interface is also +covered in detail in the `docutils documentation`_; the important thing is that +the class should have attributes that configure the allowed markup, and a +``run`` method that returns a list of nodes. + +Looking first at the ``TodolistDirective`` directive: + +.. literalinclude:: examples/todo.py + :language: python + :linenos: + :lines: 24-27 + +It's very simple, creating and returning an instance of our ``todolist`` node +class. The ``TodolistDirective`` directive itself has neither content nor +arguments that need to be handled. That brings us to the ``TodoDirective`` +directive: + +.. literalinclude:: examples/todo.py + :language: python + :linenos: + :lines: 30-53 + +Several important things are covered here. First, as you can see, we're now +subclassing the :class:`~sphinx.util.docutils.SphinxDirective` helper class +instead of the usual :class:`~docutils.parsers.rst.Directive` class. This +gives us access to the :ref:`build environment instance <important-objects>` +using the ``self.env`` property. Without this, we'd have to use the rather +convoluted ``self.state.document.settings.env``. Then, to act as a link target +(from ``TodolistDirective``), the ``TodoDirective`` directive needs to return a +target node in addition to the ``todo`` node. The target ID (in HTML, this will +be the anchor name) is generated by using ``env.new_serialno`` which returns a +new unique integer on each call and therefore leads to unique target names. The +target node is instantiated without any text (the first two arguments). + +On creating admonition node, the content body of the directive are parsed using +``self.state.nested_parse``. The first argument gives the content body, and +the second one gives content offset. The third argument gives the parent node +of parsed result, in our case the ``todo`` node. Following this, the ``todo`` +node is added to the environment. This is needed to be able to create a list of +all todo entries throughout the documentation, in the place where the author +puts a ``todolist`` directive. For this case, the environment attribute +``todo_all_todos`` is used (again, the name should be unique, so it is prefixed +by the extension name). It does not exist when a new environment is created, so +the directive must check and create it if necessary. Various information about +the todo entry's location are stored along with a copy of the node. + +In the last line, the nodes that should be put into the doctree are returned: +the target node and the admonition node. + +The node structure that the directive returns looks like this:: + + +--------------------+ + | target node | + +--------------------+ + +--------------------+ + | todo node | + +--------------------+ + \__+--------------------+ + | admonition title | + +--------------------+ + | paragraph | + +--------------------+ + | ... | + +--------------------+ + +.. rubric:: The event handlers + +Event handlers are one of Sphinx's most powerful features, providing a way to +do hook into any part of the documentation process. There are many events +provided by Sphinx itself, as detailed in :ref:`the API guide <events>`, and +we're going to use a subset of them here. + +Let's look at the event handlers used in the above example. First, the one for +the :event:`env-purge-doc` event: + +.. literalinclude:: examples/todo.py + :language: python + :linenos: + :lines: 56-61 + +Since we store information from source files in the environment, which is +persistent, it may become out of date when the source file changes. Therefore, +before each source file is read, the environment's records of it are cleared, +and the :event:`env-purge-doc` event gives extensions a chance to do the same. +Here we clear out all todos whose docname matches the given one from the +``todo_all_todos`` list. If there are todos left in the document, they will be +added again during parsing. + +The next handler, for the :event:`env-merge-info` event, is used +during parallel builds. As during parallel builds all threads have +their own ``env``, there's multiple ``todo_all_todos`` lists that need +to be merged: + +.. literalinclude:: examples/todo.py + :language: python + :linenos: + :lines: 64-68 + + +The other handler belongs to the :event:`doctree-resolved` event: + +.. literalinclude:: examples/todo.py + :language: python + :linenos: + :lines: 71-113 + +The :event:`doctree-resolved` event is emitted at the end of :ref:`phase 3 +(resolving) <build-phases>` and allows custom resolving to be done. The handler +we have written for this event is a bit more involved. If the +``todo_include_todos`` config value (which we'll describe shortly) is false, +all ``todo`` and ``todolist`` nodes are removed from the documents. If not, +``todo`` nodes just stay where and how they are. ``todolist`` nodes are +replaced by a list of todo entries, complete with backlinks to the location +where they come from. The list items are composed of the nodes from the +``todo`` entry and docutils nodes created on the fly: a paragraph for each +entry, containing text that gives the location, and a link (reference node +containing an italic node) with the backreference. The reference URI is built +by :meth:`sphinx.builders.Builder.get_relative_uri` which creates a suitable +URI depending on the used builder, and appending the todo node's (the target's) +ID as the anchor name. + +.. rubric:: The ``setup`` function + +.. currentmodule:: sphinx.application + +As noted :ref:`previously <tutorial-extending-syntax>`, +the ``setup`` function is a requirement +and is used to plug directives into Sphinx. However, we also use it to hook up +the other parts of our extension. Let's look at our ``setup`` function: + +.. literalinclude:: examples/todo.py + :language: python + :linenos: + :lines: 116- + +The calls in this function refer to the classes and functions we added earlier. +What the individual calls do is the following: + +* :meth:`~Sphinx.add_config_value` lets Sphinx know that it should recognize the + new *config value* ``todo_include_todos``, whose default value should be + ``False`` (this also tells Sphinx that it is a boolean value). + + If the third argument was ``'html'``, HTML documents would be full rebuild if the + config value changed its value. This is needed for config values that + influence reading (build :ref:`phase 1 (reading) <build-phases>`). + +* :meth:`~Sphinx.add_node` adds a new *node class* to the build system. It also + can specify visitor functions for each supported output format. These visitor + functions are needed when the new nodes stay until :ref:`phase 4 (writing) + <build-phases>`. Since the ``todolist`` node is always replaced in + :ref:`phase 3 (resolving) <build-phases>`, it doesn't need any. + +* :meth:`~Sphinx.add_directive` adds a new *directive*, given by name and class. + +* Finally, :meth:`~Sphinx.connect` adds an *event handler* to the event whose + name is given by the first argument. The event handler function is called + with several arguments which are documented with the event. + +With this, our extension is complete. + + +Using the extension +------------------- + +As before, we need to enable the extension by declaring it in our +:file:`conf.py` file. There are two steps necessary here: + +#. Add the :file:`_ext` directory to the `Python path`_ using + ``sys.path.append``. This should be placed at the top of the file. + +#. Update or create the :confval:`extensions` list and add the extension file + name to the list + +In addition, we may wish to set the ``todo_include_todos`` config value. As +noted above, this defaults to ``False`` but we can set it explicitly. + +For example: + +.. code-block:: python + + import os + import sys + + sys.path.append(os.path.abspath("./_ext")) + + extensions = ['todo'] + + todo_include_todos = False + +You can now use the extension throughout your project. For example: + +.. code-block:: rst + :caption: index.rst + + Hello, world + ============ + + .. toctree:: + somefile.rst + someotherfile.rst + + Hello world. Below is the list of TODOs. + + .. todolist:: + +.. code-block:: rst + :caption: somefile.rst + + foo + === + + Some intro text here... + + .. todo:: Fix this + +.. code-block:: rst + :caption: someotherfile.rst + + bar + === + + Some more text here... + + .. todo:: Fix that + +Because we have configured ``todo_include_todos`` to ``False``, we won't +actually see anything rendered for the ``todo`` and ``todolist`` directives. +However, if we toggle this to true, we will see the output described +previously. + + +Further reading +--------------- + +For more information, refer to the `docutils`_ documentation and +:doc:`/extdev/index`. + +If you wish to share your extension across multiple projects or with others, +check out the :ref:`third-party-extensions` section. + + +.. _docutils: https://docutils.sourceforge.io/docs/ +.. _Python path: https://docs.python.org/3/using/cmdline.html#envvar-PYTHONPATH +.. _docutils documentation: https://docutils.sourceforge.io/docs/ref/rst/directives.html diff --git a/doc/development/tutorials/extending_syntax.rst b/doc/development/tutorials/extending_syntax.rst new file mode 100644 index 0000000..bab8037 --- /dev/null +++ b/doc/development/tutorials/extending_syntax.rst @@ -0,0 +1,223 @@ +.. _tutorial-extending-syntax: + +Extending syntax with roles and directives +========================================== + +Overview +-------- + +The syntax of both reStructuredText and MyST can be extended +by creating new **directives** - for block-level elements - +and **roles** - for inline elements. + +In this tutorial we shall extend Sphinx to add: + +* A ``hello`` role, that will simply output the text ``Hello {text}!``. +* A ``hello`` directive, that will simply output the text ``Hello {text}!``, + as a paragraph. + +For this extension, you will need some basic understanding of Python, +and we shall also introduce aspects of the docutils_ API. + +Setting up the project +---------------------- + +You can either use an existing Sphinx project +or create a new one using :program:`sphinx-quickstart`. + +With this we will add the extension to the project, +within the :file:`source` folder: + +#. Create an :file:`_ext` folder in :file:`source` +#. Create a new Python file in the :file:`_ext` folder called + :file:`helloworld.py` + +Here is an example of the folder structure you might obtain: + +.. code-block:: text + + └── source +    ├── _ext + │   └── helloworld.py +    ├── conf.py +    ├── index.rst + + +Writing the extension +--------------------- + +Open :file:`helloworld.py` and paste the following code in it: + +.. literalinclude:: examples/helloworld.py + :language: python + :linenos: + +Some essential things are happening in this example: + +The role class +............... + +Our new role is declared in the ``HelloRole`` class. + +.. literalinclude:: examples/helloworld.py + :language: python + :linenos: + :pyobject: HelloRole + +This class extends the :class:`.SphinxRole` class. +The class contains a ``run`` method, +which is a requirement for every role. +It contains the main logic of the role and it +returns a tuple containing: + +- a list of inline-level docutils nodes to be processed by Sphinx. +- an (optional) list of system message nodes + +The directive class +................... + +Our new directive is declared in the ``HelloDirective`` class. + +.. literalinclude:: examples/helloworld.py + :language: python + :linenos: + :pyobject: HelloDirective + +This class extends the :class:`.SphinxDirective` class. +The class contains a ``run`` method, +which is a requirement for every directive. +It contains the main logic of the directive and it +returns a list of block-level docutils nodes to be processed by Sphinx. +It also contains a ``required_arguments`` attribute, +which tells Sphinx how many arguments are required for the directive. + +What are docutils nodes? +........................ + +When Sphinx parses a document, +it creates an "Abstract Syntax Tree" (AST) of nodes +that represent the content of the document in a structured way, +that is generally independent of any one +input (rST, MyST, etc) or output (HTML, LaTeX, etc) format. +It is a tree because each node can have children nodes, and so on: + +.. code-block:: xml + + <document> + <paragraph> + <text> + Hello world! + +The docutils_ package provides many `built-in nodes <docutils nodes_>`_, +to represent different types of content such as +text, paragraphs, references, tables, etc. + +Each node type generally only accepts a specific set of direct child nodes, +for example the ``document`` node should only contain "block-level" nodes, +such as ``paragraph``, ``section``, ``table``, etc, +whilst the ``paragraph`` node should only contain "inline-level" nodes, +such as ``text``, ``emphasis``, ``strong``, etc. + +.. seealso:: + + The docutils documentation on + `creating directives <docutils directives_>`_, and + `creating roles <docutils roles_>`_. + +The ``setup`` function +...................... + +This function is a requirement. +We use it to plug our new directive into Sphinx. + +.. literalinclude:: examples/helloworld.py + :language: python + :pyobject: setup + +The simplest thing you can do is to call the +:meth:`.Sphinx.add_role` and :meth:`.Sphinx.add_directive` methods, +which is what we've done here. +For this particular call, the first argument is the name of the role/directive itself +as used in a reStructuredText file. +In this case, we would use ``hello``. For example: + +.. code-block:: rst + + Some intro text here... + + .. hello:: world + + Some text with a :hello:`world` role. + +We also return the :ref:`extension metadata <ext-metadata>` that indicates the +version of our extension, along with the fact that it is safe to use the +extension for both parallel reading and writing. + +Using the extension +------------------- + +The extension has to be declared in your :file:`conf.py` file to make Sphinx +aware of it. There are two steps necessary here: + +#. Add the :file:`_ext` directory to the `Python path`_ using + ``sys.path.append``. This should be placed at the top of the file. + +#. Update or create the :confval:`extensions` list and add the extension file + name to the list + +For example: + +.. code-block:: python + + import os + import sys + + sys.path.append(os.path.abspath("./_ext")) + + extensions = ['helloworld'] + +.. tip:: + + Because we haven't installed our extension as a `Python package`_, we need to + modify the `Python path`_ so Sphinx can find our extension. This is why we + need the call to ``sys.path.append``. + +You can now use the extension in a file. For example: + +.. code-block:: rst + + Some intro text here... + + .. hello:: world + + Some text with a :hello:`world` role. + +The sample above would generate: + +.. code-block:: text + + Some intro text here... + + Hello world! + + Some text with a hello world! role. + + +Further reading +--------------- + +This is the very basic principle of an extension +that creates a new role and directive. + +For a more advanced example, refer to :ref:`tutorial-extend-build`. + +If you wish to share your extension across multiple projects or with others, +check out the :ref:`third-party-extensions` section. + +.. _docutils: https://docutils.sourceforge.io/ +.. _docutils roles: https://docutils.sourceforge.io/docs/howto/rst-roles.html +.. _docutils directives: https://docutils.sourceforge.io/docs/howto/rst-directives.html +.. _docutils nodes: https://docutils.sourceforge.io/docs/ref/doctree.html +.. _PyPI: https://pypi.org/ +.. _Python package: https://packaging.python.org/ +.. _Python path: https://docs.python.org/3/using/cmdline.html#envvar-PYTHONPATH diff --git a/doc/development/tutorials/helloworld.rst b/doc/development/tutorials/helloworld.rst deleted file mode 100644 index 8940e3d..0000000 --- a/doc/development/tutorials/helloworld.rst +++ /dev/null @@ -1,189 +0,0 @@ -Developing a "Hello world" extension -==================================== - -The objective of this tutorial is to create a very basic extension that adds a -new directive. This directive will output a paragraph containing "hello world". - -Only basic information is provided in this tutorial. For more information, refer -to the :doc:`other tutorials <index>` that go into more details. - -.. warning:: - - For this extension, you will need some basic understanding of docutils_ - and Python. - - -Overview --------- - -We want the extension to add the following to Sphinx: - -* A ``helloworld`` directive, that will simply output the text "hello world". - - -Prerequisites -------------- - -We will not be distributing this plugin via `PyPI`_ and will instead include it -as part of an existing project. This means you will need to use an existing -project or create a new one using :program:`sphinx-quickstart`. - -We assume you are using separate source (:file:`source`) and build -(:file:`build`) folders. Your extension file could be in any folder of your -project. In our case, let's do the following: - -#. Create an :file:`_ext` folder in :file:`source` -#. Create a new Python file in the :file:`_ext` folder called - :file:`helloworld.py` - -Here is an example of the folder structure you might obtain: - -.. code-block:: text - - └── source -    ├── _ext - │   └── helloworld.py -    ├── _static -    ├── conf.py -    ├── somefolder -    ├── index.rst -    ├── somefile.rst -    └── someotherfile.rst - - -Writing the extension ---------------------- - -Open :file:`helloworld.py` and paste the following code in it: - -.. literalinclude:: examples/helloworld.py - :language: python - :linenos: - -Some essential things are happening in this example, and you will see them for -all directives. - -.. rubric:: The directive class - -Our new directive is declared in the ``HelloWorld`` class. - -.. literalinclude:: examples/helloworld.py - :language: python - :linenos: - :lines: 5-9 - -This class extends the docutils_' ``Directive`` class. All extensions that -create directives should extend this class. - -.. seealso:: - - `The docutils documentation on creating directives <docutils directives_>`_ - -This class contains a ``run`` method. This method is a requirement and it is -part of every directive. It contains the main logic of the directive and it -returns a list of docutils nodes to be processed by Sphinx. These nodes are -docutils' way of representing the content of a document. There are many types of -nodes available: text, paragraph, reference, table, etc. - -.. seealso:: - - `The docutils documentation on nodes <docutils nodes_>`_ - -The ``nodes.paragraph`` class creates a new paragraph node. A paragraph -node typically contains some text that we can set during instantiation using -the ``text`` parameter. - -.. rubric:: The ``setup`` function - -.. currentmodule:: sphinx.application - -This function is a requirement. We use it to plug our new directive into -Sphinx. - -.. literalinclude:: examples/helloworld.py - :language: python - :linenos: - :lines: 12- - -The simplest thing you can do is to call the :meth:`~Sphinx.add_directive` method, -which is what we've done here. For this particular call, the first argument is -the name of the directive itself as used in a reST file. In this case, we would -use ``helloworld``. For example: - -.. code-block:: rst - - Some intro text here... - - .. helloworld:: - - Some more text here... - -We also return the :ref:`extension metadata <ext-metadata>` that indicates the -version of our extension, along with the fact that it is safe to use the -extension for both parallel reading and writing. - - -Using the extension -------------------- - -The extension has to be declared in your :file:`conf.py` file to make Sphinx -aware of it. There are two steps necessary here: - -#. Add the :file:`_ext` directory to the `Python path`_ using - ``sys.path.append``. This should be placed at the top of the file. - -#. Update or create the :confval:`extensions` list and add the extension file - name to the list - -For example: - -.. code-block:: python - - import os - import sys - - sys.path.append(os.path.abspath("./_ext")) - - extensions = ['helloworld'] - -.. tip:: - - We're not distributing this extension as a `Python package`_, we need to - modify the `Python path`_ so Sphinx can find our extension. This is why we - need the call to ``sys.path.append``. - -You can now use the extension in a file. For example: - -.. code-block:: rst - - Some intro text here... - - .. helloworld:: - - Some more text here... - -The sample above would generate: - -.. code-block:: text - - Some intro text here... - - Hello World! - - Some more text here... - - -Further reading ---------------- - -This is the very basic principle of an extension that creates a new directive. - -For a more advanced example, refer to :doc:`todo`. - - -.. _docutils: https://docutils.sourceforge.io/ -.. _docutils directives: https://docutils.sourceforge.io/docs/howto/rst-directives.html -.. _docutils nodes: https://docutils.sourceforge.io/docs/ref/doctree.html -.. _PyPI: https://pypi.org/ -.. _Python package: https://packaging.python.org/ -.. _Python path: https://docs.python.org/3/using/cmdline.html#envvar-PYTHONPATH diff --git a/doc/development/tutorials/index.rst b/doc/development/tutorials/index.rst index a7eee48..0c5c920 100644 --- a/doc/development/tutorials/index.rst +++ b/doc/development/tutorials/index.rst @@ -1,17 +1,12 @@ .. _extension-tutorials-index: -Extension tutorials -=================== - -Refer to the following tutorials to get started with extension development. - +Tutorials +========= .. toctree:: - :caption: Directive tutorials - :maxdepth: 1 + :maxdepth: 2 - helloworld - todo - recipe + extending_syntax + extending_build + adding_domain autodoc_ext - diff --git a/doc/development/tutorials/recipe.rst b/doc/development/tutorials/recipe.rst deleted file mode 100644 index 683cc8c..0000000 --- a/doc/development/tutorials/recipe.rst +++ /dev/null @@ -1,227 +0,0 @@ -Developing a "recipe" extension -=============================== - -The objective of this tutorial is to illustrate roles, directives and domains. -Once complete, we will be able to use this extension to describe a recipe and -reference that recipe from elsewhere in our documentation. - -.. note:: - - This tutorial is based on a guide first published on `opensource.com`_ and - is provided here with the original author's permission. - - .. _opensource.com: https://opensource.com/article/18/11/building-custom-workflows-sphinx - - -Overview --------- - -We want the extension to add the following to Sphinx: - -* A ``recipe`` :term:`directive`, containing some content describing the recipe - steps, along with a ``:contains:`` option highlighting the main ingredients - of the recipe. - -* A ``ref`` :term:`role`, which provides a cross-reference to the recipe - itself. - -* A ``recipe`` :term:`domain`, which allows us to tie together the above role - and domain, along with things like indices. - -For that, we will need to add the following elements to Sphinx: - -* A new directive called ``recipe`` - -* New indexes to allow us to reference ingredient and recipes - -* A new domain called ``recipe``, which will contain the ``recipe`` directive - and ``ref`` role - - -Prerequisites -------------- - -We need the same setup as in :doc:`the previous extensions <todo>`. This time, -we will be putting out extension in a file called :file:`recipe.py`. - -Here is an example of the folder structure you might obtain: - -.. code-block:: text - - └── source -    ├── _ext - │   └── recipe.py -    ├── conf.py -    └── index.rst - - -Writing the extension ---------------------- - -Open :file:`recipe.py` and paste the following code in it, all of which we will -explain in detail shortly: - -.. literalinclude:: examples/recipe.py - :language: python - :linenos: - -Let's look at each piece of this extension step-by-step to explain what's going -on. - -.. rubric:: The directive class - -The first thing to examine is the ``RecipeDirective`` directive: - -.. literalinclude:: examples/recipe.py - :language: python - :linenos: - :pyobject: RecipeDirective - -Unlike :doc:`helloworld` and :doc:`todo`, this directive doesn't derive from -:class:`docutils.parsers.rst.Directive` and doesn't define a ``run`` method. -Instead, it derives from :class:`sphinx.directives.ObjectDescription` and -defines ``handle_signature`` and ``add_target_and_index`` methods. This is -because ``ObjectDescription`` is a special-purpose directive that's intended -for describing things like classes, functions, or, in our case, recipes. More -specifically, ``handle_signature`` implements parsing the signature of the -directive and passes on the object's name and type to its superclass, while -``add_target_and_index`` adds a target (to link to) and an entry to the index -for this node. - -We also see that this directive defines ``has_content``, ``required_arguments`` -and ``option_spec``. Unlike the ``TodoDirective`` directive added in the -:doc:`previous tutorial <todo>`, this directive takes a single argument, the -recipe name, and an option, ``contains``, in addition to the nested -reStructuredText in the body. - -.. rubric:: The index classes - -.. currentmodule:: sphinx.domains - -.. todo:: Add brief overview of indices - -.. literalinclude:: examples/recipe.py - :language: python - :linenos: - :pyobject: IngredientIndex - -.. literalinclude:: examples/recipe.py - :language: python - :linenos: - :pyobject: RecipeIndex - -Both ``IngredientIndex`` and ``RecipeIndex`` are derived from :class:`Index`. -They implement custom logic to generate a tuple of values that define the -index. Note that ``RecipeIndex`` is a simple index that has only one entry. -Extending it to cover more object types is not yet part of the code. - -Both indices use the method :meth:`Index.generate` to do their work. This -method combines the information from our domain, sorts it, and returns it in a -list structure that will be accepted by Sphinx. This might look complicated but -all it really is is a list of tuples like ``('tomato', 'TomatoSoup', 'test', -'rec-TomatoSoup',...)``. Refer to the :doc:`domain API guide -</extdev/domainapi>` for more information on this API. - -These index pages can be referenced with the :rst:role:`ref` role by combining -the domain name and the index ``name`` value. For example, ``RecipeIndex`` can be -referenced with ``:ref:`recipe-recipe``` and ``IngredientIndex`` can be referenced -with ``:ref:`recipe-ingredient```. - -.. rubric:: The domain - -A Sphinx domain is a specialized container that ties together roles, -directives, and indices, among other things. Let's look at the domain we're -creating here. - -.. literalinclude:: examples/recipe.py - :language: python - :linenos: - :pyobject: RecipeDomain - -There are some interesting things to note about this ``recipe`` domain and domains -in general. Firstly, we actually register our directives, roles and indices -here, via the ``directives``, ``roles`` and ``indices`` attributes, rather than -via calls later on in ``setup``. We can also note that we aren't actually -defining a custom role and are instead reusing the -:class:`sphinx.roles.XRefRole` role and defining the -:class:`sphinx.domains.Domain.resolve_xref` method. This method takes two -arguments, ``typ`` and ``target``, which refer to the cross-reference type and -its target name. We'll use ``target`` to resolve our destination from our -domain's ``recipes`` because we currently have only one type of node. - -Moving on, we can see that we've defined ``initial_data``. The values defined in -``initial_data`` will be copied to ``env.domaindata[domain_name]`` as the -initial data of the domain, and domain instances can access it via -``self.data``. We see that we have defined two items in ``initial_data``: -``recipes`` and ``recipe_ingredients``. Each contains a list of all objects -defined (i.e. all recipes) and a hash that maps a canonical ingredient name to -the list of objects. The way we name objects is common across our extension and -is defined in the ``get_full_qualified_name`` method. For each object created, -the canonical name is ``recipe.<recipename>``, where ``<recipename>`` is the -name the documentation writer gives the object (a recipe). This enables the -extension to use different object types that share the same name. Having a -canonical name and central place for our objects is a huge advantage. Both our -indices and our cross-referencing code use this feature. - -.. rubric:: The ``setup`` function - -.. currentmodule:: sphinx.application - -:doc:`As always <todo>`, the ``setup`` function is a requirement and is used to -hook the various parts of our extension into Sphinx. Let's look at the -``setup`` function for this extension. - -.. literalinclude:: examples/recipe.py - :language: python - :linenos: - :pyobject: setup - -This looks a little different to what we're used to seeing. There are no calls -to :meth:`~Sphinx.add_directive` or even :meth:`~Sphinx.add_role`. Instead, we -have a single call to :meth:`~Sphinx.add_domain` followed by some -initialization of the :doc:`standard domain </usage/domains/standard>`. -This is because we had already registered our directives, -roles and indexes as part of the directive itself. - - -Using the extension -------------------- - -You can now use the extension throughout your project. For example: - -.. code-block:: rst - :caption: index.rst - - Joe's Recipes - ============= - - Below are a collection of my favourite recipes. I highly recommend the - :recipe:ref:`TomatoSoup` recipe in particular! - - .. toctree:: - - tomato-soup - -.. code-block:: rst - :caption: tomato-soup.rst - - The recipe contains `tomato` and `cilantro`. - - .. recipe:recipe:: TomatoSoup - :contains: tomato, cilantro, salt, pepper - - This recipe is a tasty tomato soup, combine all ingredients - and cook. - -The important things to note are the use of the ``:recipe:ref:`` role to -cross-reference the recipe actually defined elsewhere (using the -``:recipe:recipe:`` directive). - - -Further reading ---------------- - -For more information, refer to the `docutils`_ documentation and -:doc:`/extdev/index`. - -.. _docutils: https://docutils.sourceforge.io/docs/ diff --git a/doc/development/tutorials/todo.rst b/doc/development/tutorials/todo.rst deleted file mode 100644 index f23d8ad..0000000 --- a/doc/development/tutorials/todo.rst +++ /dev/null @@ -1,367 +0,0 @@ -Developing a "TODO" extension -============================= - -The objective of this tutorial is to create a more comprehensive extension than -that created in :doc:`helloworld`. Whereas that guide just covered writing a -custom :term:`directive`, this guide adds multiple directives, along with custom -nodes, additional config values and custom event handlers. To this end, we will -cover a ``todo`` extension that adds capabilities to include todo entries in the -documentation, and to collect these in a central place. This is similar the -``sphinxext.todo`` extension distributed with Sphinx. - - -Overview --------- - -.. note:: - To understand the design of this extension, refer to - :ref:`important-objects` and :ref:`build-phases`. - -We want the extension to add the following to Sphinx: - -* A ``todo`` directive, containing some content that is marked with "TODO" and - only shown in the output if a new config value is set. Todo entries should not - be in the output by default. - -* A ``todolist`` directive that creates a list of all todo entries throughout - the documentation. - -For that, we will need to add the following elements to Sphinx: - -* New directives, called ``todo`` and ``todolist``. - -* New document tree nodes to represent these directives, conventionally also - called ``todo`` and ``todolist``. We wouldn't need new nodes if the new - directives only produced some content representable by existing nodes. - -* A new config value ``todo_include_todos`` (config value names should start - with the extension name, in order to stay unique) that controls whether todo - entries make it into the output. - -* New event handlers: one for the :event:`doctree-resolved` event, to - replace the todo and todolist nodes, one for :event:`env-merge-info` - to merge intermediate results from parallel builds, and one for - :event:`env-purge-doc` (the reason for that will be covered later). - - -Prerequisites -------------- - -As with :doc:`helloworld`, we will not be distributing this plugin via PyPI so -once again we need a Sphinx project to call this from. You can use an existing -project or create a new one using :program:`sphinx-quickstart`. - -We assume you are using separate source (:file:`source`) and build -(:file:`build`) folders. Your extension file could be in any folder of your -project. In our case, let's do the following: - -#. Create an :file:`_ext` folder in :file:`source` -#. Create a new Python file in the :file:`_ext` folder called :file:`todo.py` - -Here is an example of the folder structure you might obtain: - -.. code-block:: text - - └── source -    ├── _ext - │   └── todo.py -    ├── _static -    ├── conf.py -    ├── somefolder -    ├── index.rst -    ├── somefile.rst -    └── someotherfile.rst - - -Writing the extension ---------------------- - -Open :file:`todo.py` and paste the following code in it, all of which we will -explain in detail shortly: - -.. literalinclude:: examples/todo.py - :language: python - :linenos: - -This is far more extensive extension than the one detailed in :doc:`helloworld`, -however, we will will look at each piece step-by-step to explain what's -happening. - -.. rubric:: The node classes - -Let's start with the node classes: - -.. literalinclude:: examples/todo.py - :language: python - :linenos: - :lines: 8-21 - -Node classes usually don't have to do anything except inherit from the standard -docutils classes defined in :mod:`docutils.nodes`. ``todo`` inherits from -``Admonition`` because it should be handled like a note or warning, ``todolist`` -is just a "general" node. - -.. note:: - - Many extensions will not have to create their own node classes and work fine - with the nodes already provided by `docutils - <https://docutils.sourceforge.io/docs/ref/doctree.html>`__ and :ref:`Sphinx - <nodes>`. - -.. attention:: - - It is important to know that while you can extend Sphinx without - leaving your ``conf.py``, if you declare an inherited node right - there, you'll hit an unobvious :py:class:`~pickle.PickleError`. So if - something goes wrong, please make sure that you put inherited nodes - into a separate Python module. - - For more details, see: - - - https://github.com/sphinx-doc/sphinx/issues/6751 - - https://github.com/sphinx-doc/sphinx/issues/1493 - - https://github.com/sphinx-doc/sphinx/issues/1424 - -.. rubric:: The directive classes - -A directive class is a class deriving usually from -:class:`docutils.parsers.rst.Directive`. The directive interface is also -covered in detail in the `docutils documentation`_; the important thing is that -the class should have attributes that configure the allowed markup, and a -``run`` method that returns a list of nodes. - -Looking first at the ``TodolistDirective`` directive: - -.. literalinclude:: examples/todo.py - :language: python - :linenos: - :lines: 24-27 - -It's very simple, creating and returning an instance of our ``todolist`` node -class. The ``TodolistDirective`` directive itself has neither content nor -arguments that need to be handled. That brings us to the ``TodoDirective`` -directive: - -.. literalinclude:: examples/todo.py - :language: python - :linenos: - :lines: 30-53 - -Several important things are covered here. First, as you can see, we're now -subclassing the :class:`~sphinx.util.docutils.SphinxDirective` helper class -instead of the usual :class:`~docutils.parsers.rst.Directive` class. This -gives us access to the :ref:`build environment instance <important-objects>` -using the ``self.env`` property. Without this, we'd have to use the rather -convoluted ``self.state.document.settings.env``. Then, to act as a link target -(from ``TodolistDirective``), the ``TodoDirective`` directive needs to return a -target node in addition to the ``todo`` node. The target ID (in HTML, this will -be the anchor name) is generated by using ``env.new_serialno`` which returns a -new unique integer on each call and therefore leads to unique target names. The -target node is instantiated without any text (the first two arguments). - -On creating admonition node, the content body of the directive are parsed using -``self.state.nested_parse``. The first argument gives the content body, and -the second one gives content offset. The third argument gives the parent node -of parsed result, in our case the ``todo`` node. Following this, the ``todo`` -node is added to the environment. This is needed to be able to create a list of -all todo entries throughout the documentation, in the place where the author -puts a ``todolist`` directive. For this case, the environment attribute -``todo_all_todos`` is used (again, the name should be unique, so it is prefixed -by the extension name). It does not exist when a new environment is created, so -the directive must check and create it if necessary. Various information about -the todo entry's location are stored along with a copy of the node. - -In the last line, the nodes that should be put into the doctree are returned: -the target node and the admonition node. - -The node structure that the directive returns looks like this:: - - +--------------------+ - | target node | - +--------------------+ - +--------------------+ - | todo node | - +--------------------+ - \__+--------------------+ - | admonition title | - +--------------------+ - | paragraph | - +--------------------+ - | ... | - +--------------------+ - -.. rubric:: The event handlers - -Event handlers are one of Sphinx's most powerful features, providing a way to -do hook into any part of the documentation process. There are many events -provided by Sphinx itself, as detailed in :ref:`the API guide <events>`, and -we're going to use a subset of them here. - -Let's look at the event handlers used in the above example. First, the one for -the :event:`env-purge-doc` event: - -.. literalinclude:: examples/todo.py - :language: python - :linenos: - :lines: 56-61 - -Since we store information from source files in the environment, which is -persistent, it may become out of date when the source file changes. Therefore, -before each source file is read, the environment's records of it are cleared, -and the :event:`env-purge-doc` event gives extensions a chance to do the same. -Here we clear out all todos whose docname matches the given one from the -``todo_all_todos`` list. If there are todos left in the document, they will be -added again during parsing. - -The next handler, for the :event:`env-merge-info` event, is used -during parallel builds. As during parallel builds all threads have -their own ``env``, there's multiple ``todo_all_todos`` lists that need -to be merged: - -.. literalinclude:: examples/todo.py - :language: python - :linenos: - :lines: 64-68 - - -The other handler belongs to the :event:`doctree-resolved` event: - -.. literalinclude:: examples/todo.py - :language: python - :linenos: - :lines: 71-113 - -The :event:`doctree-resolved` event is emitted at the end of :ref:`phase 3 -(resolving) <build-phases>` and allows custom resolving to be done. The handler -we have written for this event is a bit more involved. If the -``todo_include_todos`` config value (which we'll describe shortly) is false, -all ``todo`` and ``todolist`` nodes are removed from the documents. If not, -``todo`` nodes just stay where and how they are. ``todolist`` nodes are -replaced by a list of todo entries, complete with backlinks to the location -where they come from. The list items are composed of the nodes from the -``todo`` entry and docutils nodes created on the fly: a paragraph for each -entry, containing text that gives the location, and a link (reference node -containing an italic node) with the backreference. The reference URI is built -by :meth:`sphinx.builders.Builder.get_relative_uri` which creates a suitable -URI depending on the used builder, and appending the todo node's (the target's) -ID as the anchor name. - -.. rubric:: The ``setup`` function - -.. currentmodule:: sphinx.application - -As noted :doc:`previously <helloworld>`, the ``setup`` function is a requirement -and is used to plug directives into Sphinx. However, we also use it to hook up -the other parts of our extension. Let's look at our ``setup`` function: - -.. literalinclude:: examples/todo.py - :language: python - :linenos: - :lines: 116- - -The calls in this function refer to the classes and functions we added earlier. -What the individual calls do is the following: - -* :meth:`~Sphinx.add_config_value` lets Sphinx know that it should recognize the - new *config value* ``todo_include_todos``, whose default value should be - ``False`` (this also tells Sphinx that it is a boolean value). - - If the third argument was ``'html'``, HTML documents would be full rebuild if the - config value changed its value. This is needed for config values that - influence reading (build :ref:`phase 1 (reading) <build-phases>`). - -* :meth:`~Sphinx.add_node` adds a new *node class* to the build system. It also - can specify visitor functions for each supported output format. These visitor - functions are needed when the new nodes stay until :ref:`phase 4 (writing) - <build-phases>`. Since the ``todolist`` node is always replaced in - :ref:`phase 3 (resolving) <build-phases>`, it doesn't need any. - -* :meth:`~Sphinx.add_directive` adds a new *directive*, given by name and class. - -* Finally, :meth:`~Sphinx.connect` adds an *event handler* to the event whose - name is given by the first argument. The event handler function is called - with several arguments which are documented with the event. - -With this, our extension is complete. - - -Using the extension -------------------- - -As before, we need to enable the extension by declaring it in our -:file:`conf.py` file. There are two steps necessary here: - -#. Add the :file:`_ext` directory to the `Python path`_ using - ``sys.path.append``. This should be placed at the top of the file. - -#. Update or create the :confval:`extensions` list and add the extension file - name to the list - -In addition, we may wish to set the ``todo_include_todos`` config value. As -noted above, this defaults to ``False`` but we can set it explicitly. - -For example: - -.. code-block:: python - - import os - import sys - - sys.path.append(os.path.abspath("./_ext")) - - extensions = ['todo'] - - todo_include_todos = False - -You can now use the extension throughout your project. For example: - -.. code-block:: rst - :caption: index.rst - - Hello, world - ============ - - .. toctree:: - somefile.rst - someotherfile.rst - - Hello world. Below is the list of TODOs. - - .. todolist:: - -.. code-block:: rst - :caption: somefile.rst - - foo - === - - Some intro text here... - - .. todo:: Fix this - -.. code-block:: rst - :caption: someotherfile.rst - - bar - === - - Some more text here... - - .. todo:: Fix that - -Because we have configured ``todo_include_todos`` to ``False``, we won't -actually see anything rendered for the ``todo`` and ``todolist`` directives. -However, if we toggle this to true, we will see the output described -previously. - - -Further reading ---------------- - -For more information, refer to the `docutils`_ documentation and -:doc:`/extdev/index`. - - -.. _docutils: https://docutils.sourceforge.io/docs/ -.. _Python path: https://docs.python.org/3/using/cmdline.html#envvar-PYTHONPATH -.. _docutils documentation: https://docutils.sourceforge.io/docs/ref/rst/directives.html diff --git a/doc/extdev/appapi.rst b/doc/extdev/appapi.rst index 10d030b..682db4e 100644 --- a/doc/extdev/appapi.rst +++ b/doc/extdev/appapi.rst @@ -1,4 +1,4 @@ -.. highlight:: rest +.. highlight:: rst Application API =============== @@ -137,294 +137,12 @@ The application object also provides runtime information as attributes. Directory for storing built document. - -.. _events: +.. autoattribute:: Sphinx.fresh_env_used Sphinx core events ------------------ -These events are known to the core. The arguments shown are given to the -registered event handlers. Use :meth:`.Sphinx.connect` in an extension's -``setup`` function (note that ``conf.py`` can also have a ``setup`` function) to -connect handlers to the events. Example: - -.. code-block:: python - - def source_read_handler(app, docname, source): - print('do something here...') - - def setup(app): - app.connect('source-read', source_read_handler) - - -Below is an overview of each event that happens during a build. In the list -below, we include the event name, its callback parameters, and the input and output -type for that event: - -.. code-block:: none - - 1. event.config-inited(app,config) - 2. event.builder-inited(app) - 3. event.env-get-outdated(app, env, added, changed, removed) - 4. event.env-before-read-docs(app, env, docnames) - - for docname in docnames: - 5. event.env-purge-doc(app, env, docname) - - if doc changed and not removed: - 6. source-read(app, docname, source) - 7. run source parsers: text -> docutils.document - - parsers can be added with the app.add_source_parser() API - 8. apply transforms based on priority: docutils.document -> docutils.document - - event.doctree-read(app, doctree) is called in the middle of transforms, - transforms come before/after this event depending on their priority. - - 9. event.env-merge-info(app, env, docnames, other) - - if running in parallel mode, this event will be emitted for each process - - 10. event.env-updated(app, env) - 11. event.env-get-updated(app, env) - 12. event.env-check-consistency(app, env) - - # The updated-docs list can be builder dependent, but generally includes all new/changed documents, - # plus any output from `env-get-updated`, and then all "parent" documents in the ToC tree - # For builders that output a single page, they are first joined into a single doctree before post-transforms - # or the doctree-resolved event is emitted - for docname in updated-docs: - 13. apply post-transforms (by priority): docutils.document -> docutils.document - 14. event.doctree-resolved(app, doctree, docname) - - In the event that any reference nodes fail to resolve, the following may emit: - - event.missing-reference(env, node, contnode) - - event.warn-missing-reference(domain, node) - - 15. Generate output files - 16. event.build-finished(app, exception) - -Here is a more detailed list of these events. - -.. event:: builder-inited (app) - - Emitted when the builder object has been created. It is available as - ``app.builder``. - -.. event:: config-inited (app, config) - - Emitted when the config object has been initialized. - - .. versionadded:: 1.8 - -.. event:: env-get-outdated (app, env, added, changed, removed) - - Emitted when the environment determines which source files have changed and - should be re-read. *added*, *changed* and *removed* are sets of docnames - that the environment has determined. You can return a list of docnames to - re-read in addition to these. - - .. versionadded:: 1.1 - -.. event:: env-purge-doc (app, env, docname) - - Emitted when all traces of a source file should be cleaned from the - environment, that is, if the source file is removed or before it is freshly - read. This is for extensions that keep their own caches in attributes of the - environment. - - For example, there is a cache of all modules on the environment. When a - source file has been changed, the cache's entries for the file are cleared, - since the module declarations could have been removed from the file. - - .. versionadded:: 0.5 - -.. event:: env-before-read-docs (app, env, docnames) - - Emitted after the environment has determined the list of all added and - changed files and just before it reads them. It allows extension authors to - reorder the list of docnames (*inplace*) before processing, or add more - docnames that Sphinx did not consider changed (but never add any docnames - that are not in ``env.found_docs``). - - You can also remove document names; do this with caution since it will make - Sphinx treat changed files as unchanged. - - .. versionadded:: 1.3 - -.. event:: source-read (app, docname, source) - - Emitted when a source file has been read. The *source* argument is a list - whose single element is the contents of the source file. You can process the - contents and replace this item to implement source-level transformations. - - For example, if you want to use ``$`` signs to delimit inline math, like in - LaTeX, you can use a regular expression to replace ``$...$`` by - ``:math:`...```. - - .. versionadded:: 0.5 - -.. event:: include-read (app, relative_path, parent_docname, content) - - Emitted when a file has been read with the :dudir:`include` directive. - The *relative_path* argument is a :py:class:`~pathlib.Path` object representing - the relative path of the included file from the :term:`source directory`. - The *parent_docname* argument is the name of the document that - contains the :dudir:`include` directive. - The *source* argument is a list whose single element is - the contents of the included file. - You can process the contents and replace this item - to transform the included content, - as with the :event:`source-read` event. - - .. versionadded:: 7.2.5 - - .. seealso:: The :dudir:`include` directive and the :event:`source-read` event. - -.. event:: object-description-transform (app, domain, objtype, contentnode) - - Emitted when an object description directive has run. The *domain* and - *objtype* arguments are strings indicating object description of the object. - And *contentnode* is a content for the object. It can be modified in-place. - - .. versionadded:: 2.4 - -.. event:: doctree-read (app, doctree) - - Emitted when a doctree has been parsed and read by the environment, and is - about to be pickled. The *doctree* can be modified in-place. - -.. event:: missing-reference (app, env, node, contnode) - - Emitted when a cross-reference to an object cannot be resolved. - If the event handler can resolve the reference, it should return a - new docutils node to be inserted in the document tree in place of the node - *node*. Usually this node is a :class:`~nodes.reference` node containing - *contnode* as a child. - If the handler can not resolve the cross-reference, - it can either return ``None`` to let other handlers try, - or raise :class:`~sphinx.errors.NoUri` to prevent other handlers in - trying and suppress a warning about this cross-reference being unresolved. - - :param env: The build environment (``app.builder.env``). - :param node: The :class:`~sphinx.addnodes.pending_xref` node to be resolved. - Its ``reftype``, ``reftarget``, ``modname`` and ``classname`` attributes - determine the type and target of the reference. - :param contnode: The node that carries the text and formatting inside the - future reference and should be a child of the returned reference node. - - .. versionadded:: 0.5 - -.. event:: warn-missing-reference (app, domain, node) - - Emitted when a cross-reference to an object cannot be resolved even after - :event:`missing-reference`. If the event handler can emit warnings for - the missing reference, it should return ``True``. The configuration variables - :confval:`nitpick_ignore` and :confval:`nitpick_ignore_regex` prevent the - event from being emitted for the corresponding nodes. - - .. versionadded:: 3.4 - -.. event:: doctree-resolved (app, doctree, docname) - - Emitted when a doctree has been "resolved" by the environment, that is, all - references have been resolved and TOCs have been inserted. The *doctree* can - be modified in place. - - Here is the place to replace custom nodes that don't have visitor methods in - the writers, so that they don't cause errors when the writers encounter them. - -.. event:: env-merge-info (app, env, docnames, other) - - This event is only emitted when parallel reading of documents is enabled. It - is emitted once for every subprocess that has read some documents. - - You must handle this event in an extension that stores data in the - environment in a custom location. Otherwise the environment in the main - process will not be aware of the information stored in the subprocess. - - *other* is the environment object from the subprocess, *env* is the - environment from the main process. *docnames* is a set of document names - that have been read in the subprocess. - - .. versionadded:: 1.3 - -.. event:: env-updated (app, env) - - Emitted after reading all documents, when the environment and all - doctrees are now up-to-date. - - You can return an iterable of docnames from the handler. These documents - will then be considered updated, and will be (re-)written during the writing - phase. - - .. versionadded:: 0.5 - - .. versionchanged:: 1.3 - The handlers' return value is now used. - -.. event:: env-check-consistency (app, env) - - Emitted when Consistency checks phase. You can check consistency of - metadata for whole of documents. - - .. versionadded:: 1.6 - - As a **experimental** event - -.. event:: html-collect-pages (app) - - Emitted when the HTML builder is starting to write non-document pages. You - can add pages to write by returning an iterable from this event consisting of - ``(pagename, context, templatename)``. - - .. versionadded:: 1.0 - -.. event:: html-page-context (app, pagename, templatename, context, doctree) - - Emitted when the HTML builder has created a context dictionary to render a - template with -- this can be used to add custom elements to the context. - - The *pagename* argument is the canonical name of the page being rendered, - that is, without ``.html`` suffix and using slashes as path separators. The - *templatename* is the name of the template to render, this will be - ``'page.html'`` for all pages from reST documents. - - The *context* argument is a dictionary of values that are given to the - template engine to render the page and can be modified to include custom - values. Keys must be strings. - - The *doctree* argument will be a doctree when the page is created from a reST - documents; it will be ``None`` when the page is created from an HTML template - alone. - - You can return a string from the handler, it will then replace - ``'page.html'`` as the HTML template for this page. - - .. note:: You can install JS/CSS files for the specific page via - :meth:`Sphinx.add_js_file` and :meth:`Sphinx.add_css_file` since - v3.5.0. - - .. versionadded:: 0.4 - - .. versionchanged:: 1.3 - The return value can now specify a template name. - -.. event:: linkcheck-process-uri (app, uri) - - Emitted when the linkcheck builder collects hyperlinks from document. *uri* - is a collected URI. The event handlers can modify the URI by returning a - string. - - .. versionadded:: 4.1 - -.. event:: build-finished (app, exception) - - Emitted when a build has finished, before Sphinx exits, usually used for - cleanup. This event is emitted even when the build process raised an - exception, given as the *exception* argument. The exception is reraised in - the application after the event handlers have run. If the build process - raised no exception, *exception* will be ``None``. This allows to customize - cleanup actions depending on the exception status. - - .. versionadded:: 0.5 - +.. note:: Moved to :ref:`events`. Checking the Sphinx version --------------------------- diff --git a/doc/extdev/builderapi.rst b/doc/extdev/builderapi.rst index 5c5a525..9259aaa 100644 --- a/doc/extdev/builderapi.rst +++ b/doc/extdev/builderapi.rst @@ -3,15 +3,20 @@ Builder API =========== -.. todo:: Expand this. - .. currentmodule:: sphinx.builders .. class:: Builder This is the base class for all builders. - These attributes should be set on builder classes: + It follows this basic workflow: + + .. graphviz:: /_static/diagrams/sphinx_build_flow.dot + :caption: UML for the standard Sphinx build workflow + + .. rubric:: Overridable Attributes + + These attributes should be set on builder sub-classes: .. autoattribute:: name .. autoattribute:: format @@ -22,24 +27,39 @@ Builder API .. autoattribute:: supported_data_uri_images .. autoattribute:: default_translator_class - These methods are predefined and will be called from the application: + .. rubric:: Core Methods + + These methods are predefined and should generally not be overridden, + since they form the core of the build process: - .. automethod:: get_relative_uri .. automethod:: build_all .. automethod:: build_specific .. automethod:: build_update .. automethod:: build + .. automethod:: read + .. automethod:: read_doc + .. automethod:: write_doctree - These methods can be overridden in concrete builder classes: + .. rubric:: Overridable Methods + + These must be implemented in builder sub-classes: - .. automethod:: init .. automethod:: get_outdated_docs - .. automethod:: get_target_uri .. automethod:: prepare_writing .. automethod:: write_doc + .. automethod:: get_target_uri + + These methods can be overridden in builder sub-classes: + + .. automethod:: init + .. automethod:: write + .. automethod:: copy_assets + .. automethod:: get_relative_uri .. automethod:: finish - **Attributes** + .. rubric:: Attributes + + Attributes that are callable from the builder instance: .. attribute:: events diff --git a/doc/extdev/deprecated.rst b/doc/extdev/deprecated.rst index 1476ce8..7504be3 100644 --- a/doc/extdev/deprecated.rst +++ b/doc/extdev/deprecated.rst @@ -1769,7 +1769,7 @@ The following is a list of deprecated interfaces. - 3.0 - ``warning()`` - * - :confval:`source_parsers` + * - :confval:`!source_parsers` - 1.8 - 3.0 - :meth:`~sphinx.application.Sphinx.add_source_parser()` diff --git a/doc/extdev/envapi.rst b/doc/extdev/envapi.rst index d7ec239..971e506 100644 --- a/doc/extdev/envapi.rst +++ b/doc/extdev/envapi.rst @@ -45,6 +45,8 @@ Build environment API .. autoattribute:: docname + .. autoattribute:: parser + **Utility methods** .. automethod:: doc2path diff --git a/doc/extdev/event_callbacks.rst b/doc/extdev/event_callbacks.rst new file mode 100644 index 0000000..1edade4 --- /dev/null +++ b/doc/extdev/event_callbacks.rst @@ -0,0 +1,424 @@ +.. _events: + +Event callbacks API +=================== + +Connecting callback functions to events is a simple way to extend Sphinx, +by hooking into the build process at various points. + +Use :meth:`.Sphinx.connect` in an extension's ``setup`` function, +or a ``setup`` function in your projects :file:`conf.py`, +to connect functions to the events: + +.. code-block:: python + + def source_read_handler(app, docname, source): + print('do something here...') + + def setup(app): + app.connect('source-read', source_read_handler) + +.. seealso:: + + Extensions can add their own events by using :meth:`.Sphinx.add_event`, + and calling them them with + :meth:`.Sphinx.emit` or :meth:`.Sphinx.emit_firstresult`. + +Core events overview +-------------------- + +Below is an overview of the core event that happens during a build. + +.. code-block:: none + + 1. event.config-inited(app,config) + 2. event.builder-inited(app) + 3. event.env-get-outdated(app, env, added, changed, removed) + 4. event.env-before-read-docs(app, env, docnames) + + for docname in docnames: + 5. event.env-purge-doc(app, env, docname) + + if doc changed and not removed: + 6. source-read(app, docname, source) + 7. run source parsers: text -> docutils.document + - parsers can be added with the app.add_source_parser() API + - event.include-read(app, relative_path, parent_docname, content) + is called for each include directive + 8. apply transforms based on priority: docutils.document -> docutils.document + - event.doctree-read(app, doctree) is called in the middle of transforms, + transforms come before/after this event depending on their priority. + + 9. event.env-merge-info(app, env, docnames, other) + - if running in parallel mode, this event will be emitted for each process + + 10. event.env-updated(app, env) + 11. event.env-get-updated(app, env) + + if environment is written to disk: + 12. event.env-check-consistency(app, env) + + 13. event.write-started(app, builder) + - This is called after ``app.parallel_ok`` has been set, + which must not be altered by any event handler. + + # The updated-docs list can be builder dependent, but generally includes all new/changed documents, + # plus any output from `env-get-updated`, and then all "parent" documents in the ToC tree + # For builders that output a single page, they are first joined into a single doctree before post-transforms + # or the doctree-resolved event is emitted + for docname in updated-docs: + 14. apply post-transforms (by priority): docutils.document -> docutils.document + 15. event.doctree-resolved(app, doctree, docname) + - In the event that any reference nodes fail to resolve, the following may emit: + - event.missing-reference(env, node, contnode) + - event.warn-missing-reference(domain, node) + + 16. Generate output files + 17. event.build-finished(app, exception) + +Here is also a flow diagram of the events, +within the context of the Sphinx build process: + +.. graphviz:: /_static/diagrams/sphinx_core_events_flow.dot + :caption: Sphinx core events flow + +Core event details +------------------ + +Here is a more detailed list of these events. + +.. event:: config-inited (app, config) + + :param app: :class:`.Sphinx` + :param config: :class:`.Config` + + Emitted when the config object has been initialized. + + .. versionadded:: 1.8 + +.. event:: builder-inited (app) + + :param app: :class:`.Sphinx` + + Emitted when the builder object has been created + (available as ``app.builder``). + +.. event:: env-get-outdated (app, env, added, changed, removed) + + :param app: :class:`.Sphinx` + :param env: :class:`.BuildEnvironment` + :param added: ``set[str]`` + :param changed: ``set[str]`` + :param removed: ``set[str]`` + :returns: ``list[str]`` of additional docnames to re-read + + Emitted when the environment determines which source files have changed and + should be re-read. + *added*, *changed* and *removed* are sets of docnames + that the environment has determined. + You can return a list of docnames to re-read in addition to these. + + .. versionadded:: 1.1 + +.. event:: env-purge-doc (app, env, docname) + + :param app: :class:`.Sphinx` + :param env: :class:`.BuildEnvironment` + :param docname: ``str`` + + Emitted when all traces of a source file should be cleaned from the + environment, that is, if the source file is removed or before it is freshly read. + This is for extensions that keep their own caches + in attributes of the environment. + + For example, there is a cache of all modules on the environment. + When a source file has been changed, the cache's entries for the file are cleared, + since the module declarations could have been removed from the file. + + .. versionadded:: 0.5 + +.. event:: env-before-read-docs (app, env, docnames) + + :param app: :class:`.Sphinx` + :param env: :class:`.BuildEnvironment` + :param docnames: ``list[str]`` + + Emitted after the environment has determined the list of all added and + changed files and just before it reads them. + It allows extension authors to reorder + the list of docnames (*inplace*) before processing, + or add more docnames that Sphinx did not consider changed + (but never add any docnames that are not in :attr:`.found_docs`). + + You can also remove document names; do this with caution since it will make + Sphinx treat changed files as unchanged. + + .. versionadded:: 1.3 + +.. event:: source-read (app, docname, content) + + :param app: :class:`.Sphinx` + :param docname: ``str`` + :param content: ``list[str]`` + with a single element, + representing the content of the included file. + + Emitted when a source file has been read. + + You can process the ``content`` and + replace this item to implement source-level transformations. + + For example, if you want to use ``$`` signs to delimit inline math, like in + LaTeX, you can use a regular expression to replace ``$...$`` by + ``:math:`...```. + + .. versionadded:: 0.5 + +.. event:: include-read (app, relative_path, parent_docname, content) + + :param app: :class:`.Sphinx` + :param relative_path: :class:`~pathlib.Path` + representing the included file + relative to the :term:`source directory`. + :param parent_docname: ``str`` + of the document name that + contains the :dudir:`include` directive. + :param content: ``list[str]`` + with a single element, + representing the content of the included file. + + Emitted when a file has been read with the :dudir:`include` directive. + + You can process the ``content`` and replace this item + to transform the included content, as with the :event:`source-read` event. + + .. versionadded:: 7.2.5 + + .. seealso:: The :dudir:`include` directive and the :event:`source-read` event. + +.. event:: object-description-transform (app, domain, objtype, contentnode) + + :param app: :class:`.Sphinx` + :param domain: ``str`` + :param objtype: ``str`` + :param contentnode: :class:`.desc_content` + + Emitted when an object description directive has run. The *domain* and + *objtype* arguments are strings indicating object description of the object. + And *contentnode* is a content for the object. It can be modified in-place. + + .. versionadded:: 2.4 + +.. event:: doctree-read (app, doctree) + + :param app: :class:`.Sphinx` + :param doctree: :class:`docutils.nodes.document` + + Emitted when a doctree has been parsed and read by the environment, and is + about to be pickled. + The ``doctree`` can be modified in-place. + +.. event:: missing-reference (app, env, node, contnode) + + :param app: :class:`.Sphinx` + :param env: :class:`.BuildEnvironment` + :param node: The :class:`.pending_xref` node to be resolved. + Its ``reftype``, ``reftarget``, ``modname`` and ``classname`` attributes + determine the type and target of the reference. + :param contnode: The node that carries the text and formatting inside the + future reference and should be a child of the returned reference node. + :returns: A new node to be inserted in the document tree in place of the node, + or ``None`` to let other handlers try. + + Emitted when a cross-reference to an object cannot be resolved. + If the event handler can resolve the reference, it should return a + new docutils node to be inserted in the document tree in place of the node + *node*. Usually this node is a :class:`~nodes.reference` node containing + *contnode* as a child. + If the handler can not resolve the cross-reference, + it can either return ``None`` to let other handlers try, + or raise :class:`~sphinx.errors.NoUri` to prevent other handlers in + trying and suppress a warning about this cross-reference being unresolved. + + .. versionadded:: 0.5 + +.. event:: warn-missing-reference (app, domain, node) + + :param app: :class:`.Sphinx` + :param domain: The :class:`.Domain` of the missing reference. + :param node: The :class:`.pending_xref` node that could not be resolved. + :returns: ``True`` if a warning was emitted, else ``None`` + + Emitted when a cross-reference to an object cannot be resolved even after + :event:`missing-reference`. + If the event handler can emit warnings for the missing reference, + it should return ``True``. + The configuration variables + :confval:`nitpick_ignore` and :confval:`nitpick_ignore_regex` + prevent the event from being emitted for the corresponding nodes. + + .. versionadded:: 3.4 + +.. event:: doctree-resolved (app, doctree, docname) + + :param app: :class:`.Sphinx` + :param doctree: :class:`docutils.nodes.document` + :param docname: ``str`` + + Emitted when a doctree has been "resolved" by the environment, that is, all + references have been resolved and TOCs have been inserted. The *doctree* can + be modified in place. + + Here is the place to replace custom nodes that don't have visitor methods in + the writers, so that they don't cause errors when the writers encounter them. + +.. event:: env-merge-info (app, env, docnames, other) + + :param app: :class:`.Sphinx` + :param env: :class:`.BuildEnvironment` + :param docnames: ``list[str]`` + :param other: :class:`.BuildEnvironment` + + This event is only emitted when parallel reading of documents is enabled. It + is emitted once for every subprocess that has read some documents. + + You must handle this event in an extension that stores data in the + environment in a custom location. Otherwise the environment in the main + process will not be aware of the information stored in the subprocess. + + *other* is the environment object from the subprocess, *env* is the + environment from the main process. *docnames* is a set of document names + that have been read in the subprocess. + + .. versionadded:: 1.3 + +.. event:: env-updated (app, env) + + :param app: :class:`.Sphinx` + :param env: :class:`.BuildEnvironment` + :returns: iterable of ``str`` + + Emitted after reading all documents, when the environment and all + doctrees are now up-to-date. + + You can return an iterable of docnames from the handler. These documents + will then be considered updated, and will be (re-)written during the writing + phase. + + .. versionadded:: 0.5 + + .. versionchanged:: 1.3 + The handlers' return value is now used. + +.. event:: env-get-updated (app, env) + + :param app: :class:`.Sphinx` + :param env: :class:`.BuildEnvironment` + :returns: iterable of ``str`` + + Emitted when the environment determines which source files have changed and + should be re-read. + You can return an iterable of docnames to re-read. + +.. event:: env-check-consistency (app, env) + + :param app: :class:`.Sphinx` + :param env: :class:`.BuildEnvironment` + + Emitted when Consistency checks phase. You can check consistency of + metadata for whole of documents. + + .. versionadded:: 1.6 + +.. event:: write-started (app, builder) + + :param app: :class:`.Sphinx` + :param builder: :class:`.Builder` + + Emitted before the builder starts to + resolve and write documents. + + .. versionadded:: 7.4 + +.. event:: build-finished (app, exception) + + :param app: :class:`.Sphinx` + :param exception: ``Exception`` or ``None`` + + Emitted when a build has finished, before Sphinx exits, usually used for + cleanup. This event is emitted even when the build process raised an + exception, given as the *exception* argument. The exception is reraised in + the application after the event handlers have run. If the build process + raised no exception, *exception* will be ``None``. This allows to customize + cleanup actions depending on the exception status. + + .. versionadded:: 0.5 + +Builder specific events +----------------------- + +These events are emitted by specific builders. + +.. event:: html-collect-pages (app) + + :param app: :class:`.Sphinx` + :returns: iterable of ``(pagename, context, templatename)`` + where *pagename* and *templatename* are strings and + *context* is a ``dict[str, Any]``. + + Emitted when the HTML builder is starting to write non-document pages. + + You can add pages to write by returning an iterable from this event. + + .. versionadded:: 1.0 + +.. event:: html-page-context (app, pagename, templatename, context, doctree) + + :param app: :class:`.Sphinx` + :param pagename: ``str`` + :param templatename: ``str`` + :param context: ``dict[str, Any]`` + :param doctree: :class:`docutils.nodes.document` or ``None`` + :returns: ``str`` or ``None`` + + Emitted when the HTML builder has created a context dictionary to render a + template with -- this can be used to add custom elements to the context. + + The *pagename* argument is the canonical name of the page being rendered, + that is, without ``.html`` suffix and using slashes as path separators. + The *templatename* is the name of the template to render, this will be + ``'page.html'`` for all pages from reStructuredText documents. + + The *context* argument is a dictionary of values that are given to the + template engine to render the page and can be modified to include custom + values. + + The *doctree* argument will be a doctree when + the page is created from a reStructuredText documents; + it will be ``None`` when the page is created from an HTML template alone. + + You can return a string from the handler, it will then replace + ``'page.html'`` as the HTML template for this page. + + .. tip:: + + You can install JS/CSS files for the specific page via + :meth:`.Sphinx.add_js_file` and :meth:`.Sphinx.add_css_file` + (since v3.5.0). + + .. versionadded:: 0.4 + + .. versionchanged:: 1.3 + The return value can now specify a template name. + +.. event:: linkcheck-process-uri (app, uri) + + :param app: :class:`.Sphinx` + :param uri: ``str`` of the collected URI + :returns: ``str`` or ``None`` + + Emitted when the linkcheck builder collects hyperlinks from document. + + The event handlers can modify the URI by returning a string. + + .. versionadded:: 4.1 diff --git a/doc/extdev/index.rst b/doc/extdev/index.rst index 8332315..9617dd4 100644 --- a/doc/extdev/index.rst +++ b/doc/extdev/index.rst @@ -1,7 +1,7 @@ .. _dev-extensions: -Sphinx Extensions API -===================== +Sphinx API +========== Since many projects will need special features in their documentation, Sphinx is designed to be extensible on several levels. @@ -85,7 +85,7 @@ extension. These are: The config is available as ``app.config`` or ``env.config``. To see an example of use of these objects, refer to -:doc:`../development/tutorials/index`. +:ref:`the tutorials <extension-tutorials-index>`. .. _build-phases: @@ -147,7 +147,7 @@ the individual nodes of each doctree and produces some output in the process. that checks external links does not need anything more than the parsed doctrees and therefore does not have phases 2--4. -To see an example of application, refer to :doc:`../development/tutorials/todo`. +To see an example of application, refer to :ref:`tutorial-extend-build`. .. _ext-metadata: @@ -204,6 +204,7 @@ disposal when developing Sphinx extensions. Some are core to Sphinx :maxdepth: 2 appapi + event_callbacks projectapi envapi builderapi diff --git a/doc/extdev/markupapi.rst b/doc/extdev/markupapi.rst index 072760c..7aa6324 100644 --- a/doc/extdev/markupapi.rst +++ b/doc/extdev/markupapi.rst @@ -1,12 +1,53 @@ Docutils markup API =================== -This section describes the API for adding ReST markup elements (roles and -directives). +This section describes the API for adding reStructuredText markup elements +(roles and directives). + Roles ----- +Roles follow the interface described below. +They have to be registered by an extension using +:meth:`.Sphinx.add_role` or :meth:`.Sphinx.add_role_to_domain`. + + +.. code-block:: python + + def role_function( + role_name: str, raw_source: str, text: str, + lineno: int, inliner: Inliner, + options: dict = {}, content: list = [], + ) -> tuple[list[Node], list[system_message]]: + elements = [] + messages = [] + return elements, messages + +The *options* and *content* parameters are only used for custom roles +created via the :dudir:`role` directive. +The return value is a tuple of two lists, +the first containing the text nodes and elements from the role, +and the second containing any system messages generated. +For more information, see the `custom role overview`_ from Docutils. + +.. _custom role overview: https://docutils.sourceforge.io/docs/howto/rst-roles.html + + +Creating custom roles +^^^^^^^^^^^^^^^^^^^^^ + +Sphinx provides two base classes for creating custom roles, +:class:`~sphinx.util.docutils.SphinxRole` and :class:`~sphinx.util.docutils.ReferenceRole`. + +These provide a class-based interface for creating roles, +where the main logic must be implemented in your ``run()`` method. +The classes provide a number of useful methods and attributes, +such as ``self.text``, ``self.config``, and ``self.env``. +The ``ReferenceRole`` class implements Sphinx's ``title <target>`` logic, +exposing ``self.target`` and ``self.title`` attributes. +This is useful for creating cross-reference roles. + Directives ---------- @@ -85,68 +126,106 @@ using :meth:`.Sphinx.add_directive` or :meth:`.Sphinx.add_directive_to_domain`. The state and state machine which controls the parsing. Used for ``nested_parse``. +.. seealso:: + + `Creating directives`_ HOWTO of the Docutils documentation + + .. _Creating directives: https://docutils.sourceforge.io/docs/howto/rst-directives.html + + +.. _parsing-directive-content-as-rest: + +Parsing directive content as reStructuredText +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -ViewLists -^^^^^^^^^ +Many directives will contain more markup that must be parsed. +To do this, use one of the following APIs from the :meth:`~Directive.run` method: -Docutils represents document source lines in a class -``docutils.statemachine.ViewList``. This is a list with extended functionality --- for one, slicing creates views of the original list, and also the list -contains information about the source line numbers. +* :py:meth:`.SphinxDirective.parse_content_to_nodes()` +* :py:meth:`.SphinxDirective.parse_text_to_nodes()` -The :attr:`Directive.content` attribute is a ViewList. If you generate content -to be parsed as ReST, you have to create a ViewList yourself. Important for -content generation are the following points: +The first method parses all the directive's content as markup, +whilst the second only parses the given *text* string. +Both methods return the parsed Docutils nodes in a list. -* The constructor takes a list of strings (lines) and a source (document) name. +The methods are used as follows: -* The ``.append()`` method takes a line and a source name as well. +.. code-block:: python + def run(self) -> list[Node]: + # either + parsed = self.parse_content_to_nodes() + # or + parsed = self.parse_text_to_nodes('spam spam spam') + return parsed -Parsing directive content as ReST -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +.. note:: + + The above utility methods were added in Sphinx 7.4. + Prior to Sphinx 7.4, the following methods should be used to parse content: -Many directives will contain more markup that must be parsed. To do this, use -one of the following APIs from the :meth:`Directive.run` method: + * ``self.state.nested_parse`` + * :func:`sphinx.util.nodes.nested_parse_with_titles` -- this allows titles in + the parsed content. -* ``self.state.nested_parse`` -* :func:`sphinx.util.nodes.nested_parse_with_titles` -- this allows titles in - the parsed content. + .. code-block:: python -Both APIs parse the content into a given node. They are used like this:: + def run(self) -> list[Node]: + container = docutils.nodes.Element() + # either + nested_parse_with_titles(self.state, self.result, container) + # or + self.state.nested_parse(self.result, 0, container) + parsed = container.children + return parsed - node = docutils.nodes.paragraph() - # either - nested_parse_with_titles(self.state, self.result, node) - # or - self.state.nested_parse(self.result, 0, node) +To parse inline markup, +use :py:meth:`~sphinx.util.docutils.SphinxDirective.parse_inline()`. +This must only be used for text which is a single line or paragraph, +and does not contain any structural elements +(headings, transitions, directives, etc). .. note:: - ``sphinx.util.docutils.switch_source_input()`` allows to change a target file - during nested_parse. It is useful to mixed contents. For example, ``sphinx. - ext.autodoc`` uses it to parse docstrings:: + ``sphinx.util.docutils.switch_source_input()`` allows changing + the source (input) file during parsing content in a directive. + It is useful to parse mixed content, such as in ``sphinx.ext.autodoc``, + where it is used to parse docstrings. + + .. code-block:: python - from sphinx.util.docutils import switch_source_input + from sphinx.util.docutils import switch_source_input + from sphinx.util.parsing import nested_parse_to_nodes - # Switch source_input between parsing content. - # Inside this context, all parsing errors and warnings are reported as - # happened in new source_input (in this case, ``self.result``). - with switch_source_input(self.state, self.result): - node = docutils.nodes.paragraph() - self.state.nested_parse(self.result, 0, node) + # Switch source_input between parsing content. + # Inside this context, all parsing errors and warnings are reported as + # happened in new source_input (in this case, ``self.result``). + with switch_source_input(self.state, self.result): + parsed = nested_parse_to_nodes(self.state, self.result) .. deprecated:: 1.7 Until Sphinx 1.6, ``sphinx.ext.autodoc.AutodocReporter`` was used for this purpose. It is replaced by ``switch_source_input()``. -If you don't need the wrapping node, you can use any concrete node type and -return ``node.children`` from the Directive. +.. _ViewLists: -.. seealso:: +ViewLists and StringLists +^^^^^^^^^^^^^^^^^^^^^^^^^ - `Creating directives`_ HOWTO of the Docutils documentation +Docutils represents document source lines in a ``StringList`` class, +which inherits from ``ViewList``, both in the ``docutils.statemachine`` module. +This is a list with extended functionality, +including that slicing creates views of the original list and +that the list contains information about source line numbers. + +The :attr:`Directive.content` attribute is a ``StringList``. +If you generate content to be parsed as reStructuredText, +you have to create a ``StringList`` for the Docutils APIs. +The utility functions provided by Sphinx handle this automatically. +Important for content generation are the following points: -.. _Creating directives: https://docutils.sourceforge.io/docs/howto/rst-directives.html +* The ``ViewList`` constructor takes a list of strings (lines) + and a source (document) name. +* The ``ViewList.append()`` method takes a line and a source name as well. diff --git a/doc/extdev/utils.rst b/doc/extdev/utils.rst index ff8dc4e..9e10a0d 100644 --- a/doc/extdev/utils.rst +++ b/doc/extdev/utils.rst @@ -3,6 +3,7 @@ Utilities Sphinx provides utility classes and functions to develop extensions. + Base classes for components --------------------------- @@ -30,12 +31,20 @@ components (e.g. :class:`.Config`, :class:`.BuildEnvironment` and so on) easily. .. autoclass:: sphinx.transforms.post_transforms.images.ImageConverter :members: + Utility components ------------------ .. autoclass:: sphinx.events.EventManager :members: + +Utility functions +----------------- + +.. autofunction:: sphinx.util.parsing.nested_parse_to_nodes + + Utility types ------------- diff --git a/doc/faq.rst b/doc/faq.rst index 8538cdc..7645326 100644 --- a/doc/faq.rst +++ b/doc/faq.rst @@ -30,10 +30,10 @@ How do I... ``sidebartoc`` block. ... write my own extension? - See the :doc:`/development/tutorials/index`. + See the :ref:`extension-tutorials-index`. ... convert from my existing docs using MoinMoin markup? - The easiest way is to convert to xhtml, then convert `xhtml to reST`_. + The easiest way is to convert to xhtml, then convert `xhtml to reStructuredText`_. You'll still need to mark up classes and such, but the headings and code examples come through cleanly. @@ -58,8 +58,8 @@ Epydoc Epydoc's API docs for a given identifier. Doxygen - Michael Jones is developing a reST/Sphinx bridge to doxygen called `breathe - <https://github.com/michaeljones/breathe/tree/master>`_. + Michael Jones has developed a reStructuredText/Sphinx bridge to doxygen + called `breathe <https://github.com/breathe-doc/breathe/tree/master>`_. SCons Glenn Hutchings has written a SCons build script to build Sphinx @@ -147,7 +147,7 @@ Google Search .. _Getting Started: https://docs.readthedocs.io/en/stable/intro/getting-started-with-sphinx.html .. _api role: https://git.savannah.gnu.org/cgit/kenozooid.git/tree/doc/extapi.py -.. _xhtml to reST: https://docutils.sourceforge.io/sandbox/xhtml2rest/xhtml2rest.py +.. _xhtml to reStructuredText: https://docutils.sourceforge.io/sandbox/xhtml2rest/xhtml2rest.py Sphinx vs. Docutils diff --git a/doc/glossary.rst b/doc/glossary.rst index 85e0057..24653b6 100644 --- a/doc/glossary.rst +++ b/doc/glossary.rst @@ -26,9 +26,9 @@ Glossary Sphinx and custom extensions can add their own. The basic directive syntax looks like this: - .. sourcecode:: rst + .. code-block:: rst - .. directivename:: argument ... + .. directive-name:: argument ... :option: value Content of the directive. @@ -36,9 +36,10 @@ Glossary See :ref:`rst-directives` for more information. document name - Since reST source files can have different extensions (some people like - ``.txt``, some like ``.rst`` -- the extension can be configured with - :confval:`source_suffix`) and different OSes have different path + Since reStructuredText source files can have different extensions + (some people like ``.txt``, some like ``.rst`` -- the extension can be + configured with :confval:`source_suffix`) + and different OSes have different path separators, Sphinx abstracts them: :dfn:`document names` are always relative to the :term:`source directory`, the extension is stripped, and path separators are converted to slashes. All values, parameters and such diff --git a/doc/index.rst b/doc/index.rst index 6dfdb6d..bf3653c 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -1,40 +1,116 @@ -======= -Welcome -======= - -.. epigraph:: Sphinx makes it easy to create intelligent and beautiful documentation. - -Here are some of Sphinx's major features: - -* **Output formats:** HTML (including Windows HTML Help), LaTeX (for printable - PDF versions), ePub, Texinfo, manual pages, plain text -* **Extensive cross-references:** semantic markup and automatic links for - functions, classes, citations, glossary terms and similar pieces of - information -* **Hierarchical structure:** easy definition of a document tree, with automatic - links to siblings, parents and children -* **Automatic indices:** general index as well as a language-specific module - indices -* **Code handling:** automatic highlighting using the Pygments_ highlighter -* **Extensions:** automatic testing of code snippets, inclusion of docstrings - from Python modules (API docs) via :ref:`built-in extensions - <builtin-extensions>`, and much more functionality via :ref:`third-party - extensions <third-party-extensions>`. -* **Themes:** modify the look and feel of outputs via :doc:`creating themes - <development/theming>`, and reuse many :ref:`third-party themes - <third-party-themes>`. -* **Contributed extensions:** dozens of extensions :ref:`contributed by users - <third-party-extensions>`; most of them installable from PyPI. - -.. _reStructuredText: https://docutils.sourceforge.io/rst.html -.. _Docutils: https://docutils.sourceforge.io/ -.. _Pygments: https://pygments.org/ - -Sphinx uses the reStructuredText_ markup language by default, and can read -:ref:`MyST markdown <markdown>` via third-party extensions. Both of these -are powerful and straightforward to use, and have functionality -for complex documentation and publishing workflows. They both build upon -Docutils_ to parse and write documents. +====== +Sphinx +====== + +.. cssclass:: sphinx-tagline +.. epigraph:: Create intelligent and beautiful documentation with ease + +.. container:: sphinx-features + + .. admonition:: 📝 Rich Text Formatting + :class: sphinx-feature + + Author in :ref:`reStructuredText <rst-primer>` + or :ref:`MyST Markdown <markdown>` + to create highly structured technical documents, + including tables, highlighted code blocks, mathematical notations, and more. + + .. admonition:: 🔗 Powerful Cross-Referencing + :class: sphinx-feature + + Create :ref:`cross-references <xref-syntax>` + within your project, + and even across :ref:`different projects <ext-intersphinx>`. + Include references to + sections, figures, tables, citations, glossaries, code objects, + and more. + + .. admonition:: 📚 Versatile Documentation Formats + :class: sphinx-feature + + Generate documentation in the preferred formats of your audience, including + HTML, LaTeX (for PDF), ePub, Texinfo, :ref:`and more <builders>`. + + .. admonition:: 🎨 Extensive Theme Support + :class: sphinx-feature + + Create visually appealing documentation, + with a wide choice of :ref:`built-in <builtin-themes>` + and :ref:`third-party <third-party-themes>` HTML themes + and the ability to customize + or :ref:`create new themes <extension-html-theme>`. + + .. admonition:: 🔌 Fully Extensible + :class: sphinx-feature + + Add custom functionality, + via robust :ref:`extension mechanisms <extending-sphinx>` + with numerous :ref:`built-in <builtin-extensions>` + and :ref:`third-party <third-party-extensions>` + extensions available for tasks like + creating diagrams, testing code, and more. + + .. admonition:: 🛠️ Automatic API Documentation + :class: sphinx-feature + + Generate API documentation for + Python, C++ and other :ref:`software domains <usage-domains>`, + manually or :ref:`automatically from docstrings <ext-autodoc>`, + ensuring your code documentation + stays up-to-date with minimal effort. + + .. admonition:: 🌍 Internationalization (i18n) + :class: sphinx-feature + + Add documentation :ref:`translations <intl>` + multiple languages to reach a global audience. + + .. admonition:: 🌟 Active Community and Support + :class: sphinx-feature + + Benefit from an :ref:`active community <support-index>`, + with numerous resources, tutorials, forums, and examples. + + .. .. admonition:: 🌐 Integration with Version Control + .. :class: sphinx-feature + + .. Sphinx integrates seamlessly with version control systems like Git. + .. This allows for easy collaboration, version tracking, + .. and deployment of documentation as part of a continuous integration pipeline. + +---------------- + +.. container:: sphinx-users + + As used by: + + .. container:: sphinx-users-logos + + .. figure:: _static/python-logo.png + :alt: Python Logo + :height: 100px + :align: center + :target: https://docs.python.org + + Python + + .. figure:: _static/linux-logo.png + :alt: Linux Logo + :height: 100px + :align: center + :target: https://docs.kernel.org/ + + Linux Kernel + + .. figure:: _static/jupyter-logo.png + :alt: Jupyter Logo + :height: 100px + :align: center + :target: https://docs.jupyter.org + + Project Jupyter + +---------------- See below for how to navigate Sphinx's documentation. @@ -53,10 +129,10 @@ creating and building your own documentation from scratch. .. toctree:: :maxdepth: 2 - :caption: Get started + :caption: The Basics - usage/quickstart usage/installation + usage/quickstart tutorial/index .. _user-guides: @@ -75,8 +151,8 @@ starting with :ref:`get-started`. usage/index development/index - latex extdev/index + latex Community guide =============== diff --git a/doc/internals/contributing.rst b/doc/internals/contributing.rst index 207374e..eac3560 100644 --- a/doc/internals/contributing.rst +++ b/doc/internals/contributing.rst @@ -156,7 +156,7 @@ Please follow these guidelines when writing code for Sphinx: Style and type checks can be run as follows:: - ruff . + ruff check . mypy sphinx/ Unit tests @@ -338,3 +338,9 @@ Debugging tips Minified files in ``sphinx/search/minified-js/*.js`` are generated from non-minified ones using ``uglifyjs`` (installed via npm), with ``-m`` option to enable mangling. + +* The ``searchindex.js`` files found in the ``tests/js/fixtures/*`` directories + are generated by using the standard Sphinx HTML builder on the corresponding + input projects found in ``tests/js/roots/*``. The fixtures provide test data + used by the Sphinx JavaScript unit tests, and can be regenerated by running + the ``utils/generate_js_fixtures.py`` script. diff --git a/doc/latex.rst b/doc/latex.rst index 0101b24..821c832 100644 --- a/doc/latex.rst +++ b/doc/latex.rst @@ -10,12 +10,12 @@ LaTeX customization \begingroup \sphinxsetup{% - TitleColor={named}{DarkGoldenrod}, + TitleColor=DarkGoldenrod, pre_border-width=2pt, pre_border-right-width=8pt, pre_padding=5pt, pre_border-radius=5pt, - pre_background-TeXcolor={named}{OldLace}, + pre_background-TeXcolor=OldLace, pre_border-TeXcolor=Gold!90, pre_box-shadow=6pt 6pt, pre_box-shadow-TeXcolor=gray!20, @@ -52,6 +52,9 @@ interface for customization. For example: # inside conf.py latex_engine = 'xelatex' latex_elements = { + 'passoptionstopackages': r''' + \PassOptionsToPackage{svgnames}{xcolor} + ''', 'fontpkg': r''' \setmainfont{DejaVu Serif} \setsansfont{DejaVu Sans} @@ -64,6 +67,7 @@ interface for customization. For example: \setlength{\cftsecindent}{\cftchapnumwidth} \setlength{\cftsecnumwidth}{1.25cm} ''', + 'sphinxsetup': 'TitleColor=DarkGoldenrod', 'fncychap': r'\usepackage[Bjornstrup]{fncychap}', 'printindex': r'\footnotesize\raggedright\printindex', } @@ -148,7 +152,7 @@ Keys that you may want to override include: build repertory before next PDF build, else left-over auxiliary files are likely to break the build. - Default: ``'\\usepackage{babel}'`` (``''`` for Japanese documents) + Default: ``'\\usepackage{babel}'`` (for Japanese documents) .. versionchanged:: 1.5 For :confval:`latex_engine` set to ``'xelatex'``, the default @@ -158,8 +162,11 @@ Keys that you may want to override include: ``'lualatex'`` uses same default setting as ``'xelatex'`` .. versionchanged:: 1.7.6 - For French, ``xelatex`` and ``lualatex`` default to using - ``babel``, not ``polyglossia``. + For French with ``'xelatex'`` (not ``'lualatex'``) the default is to + use ``babel``, not ``polyglossia``. + + .. versionchanged:: 7.4.0 + For French with ``'lualatex'`` the default is to use ``babel``. ``'fontpkg'`` Font package inclusion. The default is:: @@ -422,14 +429,14 @@ Keys that don't need to be overridden unless in special cases are: ``'geometry'`` "geometry" package inclusion, the default definition is: - .. code:: latex + .. code-block:: latex '\\usepackage{geometry}' with an additional ``[dvipdfm]`` for Japanese documents. The Sphinx LaTeX style file executes: - .. code:: latex + .. code-block:: latex \PassOptionsToPackage{hmargin=1in,vmargin=1in,marginpar=0.5in}{geometry} @@ -588,23 +595,22 @@ provides a LaTeX-type customization interface:: 'sphinxsetup': 'key1=value1, key2=value2, ...', } -It defaults to empty. If non-empty, it will be passed as argument to the +LaTeX syntax for boolean keys requires *lowercase* ``true`` or ``false`` +e.g ``'sphinxsetup': "verbatimwrapslines=false"``. If setting a +boolean key to ``true``, ``=true`` is optional. +Spaces around the commas and equal signs are ignored, spaces inside LaTeX +macros may be significant. +Do not use ticks/quotes to enclose string or numerical values. + +The ``'sphinxsetup'`` defaults to empty. +If non-empty, it will be passed as argument to the ``\sphinxsetup`` macro inside the document preamble, like this:: \usepackage{sphinx} \sphinxsetup{key1=value1, key2=value2,...} -The colors used in the above are provided by the ``svgnames`` option of the -"xcolor" package:: - - latex_elements = { - 'passoptionstopackages': r'\PassOptionsToPackage{svgnames}{xcolor}', - } - It is possible to insert uses of the ``\sphinxsetup`` LaTeX macro directly -into the body of the document, via the ``raw`` directive. This chapter is -styled in the PDF output using the following insertion at its start. This -uses keys described later in :ref:`additionalcss`. +into the body of the document, via the ``raw`` directive: .. code-block:: latex @@ -612,83 +618,31 @@ uses keys described later in :ref:`additionalcss`. \begingroup \sphinxsetup{% - TitleColor={named}{DarkGoldenrod}, - % pre_border-width is 5.1.0 alias for verbatimborder - pre_border-width=2pt, - pre_border-right-width=8pt, - % pre_padding is a 5.1.0 alias for verbatimsep - pre_padding=5pt, - % Rounded boxes are new at 5.1.0 - pre_border-radius=5pt, - % TeXcolor reminds that syntax must be as for LaTeX \definecolor - pre_background-TeXcolor={named}{OldLace}, - % ... and since 5.3.0 also xcolor \colorlet syntax is accepted and we - % can thus drop the {named}{...} thing if xcolor is available! - pre_border-TeXcolor=Gold, - % ... and even take more advantage of xcolor syntax: - pre_border-TeXcolor=Gold!90, - % add a shadow to code-blocks - pre_box-shadow=6pt 6pt, - pre_box-shadow-TeXcolor=gray!20, - % - % This 5.1.0 CSS-named option is alias for warningborder - div.warning_border-width=3pt, - % Prior to 5.1.0, padding for admonitions was not customizable - div.warning_padding=6pt, - div.warning_padding-right=18pt, - div.warning_padding-bottom=18pt, - % Assume xcolor has been loaded with its svgnames option - div.warning_border-TeXcolor=DarkCyan, - div.warning_background-TeXcolor=LightCyan, - % This one is the only option with space separated input: - div.warning_box-shadow=-12pt -12pt inset, - div.warning_box-shadow-TeXcolor=Cyan, - % - % The 5.1.0 new name would be div.attention_border-width - attentionborder=3pt, - % The 5.1.0 name here would be div.attention_border-TeXcolor - attentionBorderColor=Crimson, - % The 5.1.0 name would be div.attention_background-TeXcolor - attentionBgColor=FloralWhite, - % - % For note/hint/important/tip, the CSS syntax was added at 6.2.0 - % Legacy syntax still works - noteborder=1pt, - noteBorderColor=Olive, - % But setting a background color via the new noteBgColor means that - % it will be rendered using the same interface as warning type - noteBgColor=Olive!10, - % We can customize separately the four border-widths, and mimic - % the legacy "light" rendering, but now with a background color: - % div.note_border-left-width=0pt, - % div.note_border-right-width=0pt, - % Let's rather for variety use lateral borders: - div.note_border-top-width=0pt, - div.note_border-bottom-width=0pt, - % - % As long as only border width and border color are set, *and* using - % for this the old interface, the rendering will be the "light" one - hintBorderColor=LightCoral, - % but if we had used div.hint_border-TeXcolor or *any* CSS-named - % option we would have triggered the more complex "heavybox" code. + TitleColor=DarkGoldenrod, + ... more comma separated key=value using LaTeX syntax ... } - -And this is placed at the end of the chapter source to end the scope of -the configuration: - -.. code-block:: latex + All elements here will be under the influence of the raw ``\sphinxsetup`` + settings. .. raw:: latex \endgroup -LaTeX syntax for boolean keys requires *lowercase* ``true`` or ``false`` -e.g ``'sphinxsetup': "verbatimwrapslines=false"``. If setting the -boolean key to ``true``, ``=true`` is optional. -Spaces around the commas and equal signs are ignored, spaces inside LaTeX -macros may be significant. -Do not use quotes to enclose values, whether numerical or strings. + From here on, the raw ``\sphinxsetup`` has no effect anymore. + +This is the technique which has been used to style especially the present part +of the documentation for the PDF output. The actually used options will be +found at top of :file:`doc/latex.rst` at the `development repository`_. + +.. _development repository: https://github.com/sphinx-doc/sphinx + +The color used in the above example is available from having passed the +``svgnames`` option to the "xcolor" package:: + + latex_elements = { + 'passoptionstopackages': r'\PassOptionsToPackage{svgnames}{xcolor}', + } ``bookmarksdepth`` Controls the depth of the collapsible bookmarks panel in the PDF. @@ -748,7 +702,7 @@ Do not use quotes to enclose values, whether numerical or strings. wrapped. If ``true``, line breaks may happen at spaces (the last space before the - line break will be rendered using a special symbol), and at ascii + line break will be rendered using a special symbol), and at ASCII punctuation characters (i.e. not at letters or digits). Whenever a long string has no break points, it is moved to next line. If its length is longer than the line width it will overflow. @@ -875,11 +829,10 @@ Do not use quotes to enclose values, whether numerical or strings. - obey the syntax of the ``\definecolor`` LaTeX command, e.g. something such as ``VerbatimColor={rgb}{0.2,0.3,0.5}`` or ``{RGB}{37,23,255}`` or - ``{gray}{0.75}`` or (only with package ``xcolor``) ``{HTML}{808080}`` or + ``{gray}{0.75}`` or ``{HTML}{808080}`` or ... - or obey the syntax of the ``\colorlet`` command from package ``xcolor`` - (which then must exist in the LaTeX installation), e.g. ``VerbatimColor=red!10`` or ``red!50!green`` or ``-red!75`` or ``MyPreviouslyDefinedColor`` or... Refer to xcolor_ documentation for this syntax. @@ -909,7 +862,7 @@ Do not use quotes to enclose values, whether numerical or strings. ``VerbatimColor`` The background color for :rst:dir:`code-block`\ s. - Default: ``{gray}{0.95}`` + Default: ``{RGB}{242,242,242}`` (same as ``{gray}{0.95}``). .. versionchanged:: 6.0.0 @@ -1014,27 +967,48 @@ Do not use quotes to enclose values, whether numerical or strings. Default: ``\fboxrule`` +.. important:: + + At 7.4.0 all admonitions (not only danger-type) use the possibilities + which were added at 5.1.0 and 6.2.0. All defaults have changed. + +``iconpackage`` + + The name of the LaTeX package used for icons in the admonition titles. It + defaults to ``fontawesome5`` or to fall-back ``fontawesome``. In case + neither one is available the option value will automatically default to + ``none``, which means that no attempt at loading a package is done. + Independently of this setting, arbitrary LaTeX code can be associated to + each admonition type via ``div.<type>_icon-title`` keys which are + described in the :ref:`additionalcss` section. If these keys are not + used, Sphinx will either apply its default choices of icons (if + ``fontawesome{5,}`` is available) or not draw the icon at all. Notice that + if fall-back ``fontawesome`` is used the common icon for :dudir:`caution` + and :dudir:`danger` will default to "bolt" not "radiation", which is only + found in ``fontawesome5``. + + .. versionadded:: 7.4.0 + |notebdcolors| - The color for the two horizontal rules used by Sphinx in LaTeX for styling - a :dudir:`note` type admonition. + The color for the admonition border. + + Default: ``{RGB}{134,152,155}``. - Default: ``{rgb}{0,0,0}`` (black) + .. versionchanged:: 7.4.0 |notebgcolors| - The optional color for the background. It is a priori set to white, but - is not used, unless it has been set explicitly, and doing this triggers - Sphinx into switching to the more complex LaTeX code which is employed - also for ``warning`` type admonitions. There are then additional options - which are described in :ref:`additionalcss`. + The color for the admonition background. - Default: ``{rgb}{1,1,1}`` (white) + Default: ``{RGB}{247,247,247}``. .. versionadded:: 6.2.0 + .. versionchanged:: 7.4.0 + |notetextcolors| - The optional color for the contents. + The color for the admonition contents. - Default: unset (uses ambient text color, a priori black) + Default: unset (contents text uses ambient text color, a priori black) .. versionadded:: 6.2.0 @@ -1055,41 +1029,45 @@ Do not use quotes to enclose values, whether numerical or strings. ``div.note_TeXextras`` (etc) described in :ref:`additionalcss`. ``noteborder``, ``hintborder``, ``importantborder``, ``tipborder`` - The width of the two horizontal rules. - - If the background color is set, or the alternative :ref:`additionalcss` - syntax is used (e.g. ``div.note_border-width=1pt`` in place of - ``noteborder=1pt``), or *any* option with a CSS-alike name is used, then - the border is a full frame and this parameter sets its width also for left - and right. + The width of the border. See + :ref:`additionalcss` for keys allowing to configure separately each + border width. Default: ``0.5pt`` .. only:: not latex |warningbdcolors| - The color for the admonition frame. + The color for the admonition border. + + Default: ``{RGB}{148,0,0}`` except for ``error`` which uses ``red``. - Default: ``{rgb}{0,0,0}`` (black) + .. versionchanged:: 7.4.0 .. only:: latex |wgbdcolorslatex| - The color for the admonition frame. + The color for the admonition border. + + Default: ``{RGB}{148,0,0}`` except for ``error`` which uses ``red``. - Default: ``{rgb}{0,0,0}`` (black) + .. versionchanged:: 7.4.0 |warningbgcolors| - The background colors for the respective admonitions. + The background color for the admonition background. - Default: ``{rgb}{1,1,1}`` (white) + Default: ``{RGB}{247,247,247}``. + + .. versionchanged:: 7.4.0 |warningborders| - The width of the frame. See + The width of the admonition frame. See :ref:`additionalcss` for keys allowing to configure separately each border width. - Default: ``1pt`` + Default: ``1pt`` except for ``error`` which uses ``1.25pt``. + + .. versionchanged:: 7.4.0 ``AtStartFootnote`` LaTeX macros inserted at the start of the footnote text at bottom of page, @@ -1157,6 +1135,20 @@ Additional CSS-like ``'sphinxsetup'`` keys ``noteBgColor`` (or ``hintBgColor``, ...) also triggers usage of ``sphinxheavybox`` for :dudir:`note` (or :dudir:`hint`, ...). +.. versionadded:: 7.4.0 + + For *all* admonition types, the default configuration does set a background + color (hence the richer ``sphinxheavybox`` is always used). + +.. important:: + + Further, all admonition titles are by default styled using a colored row + and an icon, which are modeled on the current rendering of Sphinx own + docs at https://www.sphinx-doc.org. CSS-named alike keys are added to + set the foreground and background colors for the title as well as the + LaTeX code for the icon. + + Perhaps in future these 5.1.0 (and 6.2.0) novel settings will be optionally imported from some genuine CSS external file, but currently they have to be used via the ``'sphinxsetup'`` interface (or the ``\sphinxsetup`` LaTeX command @@ -1166,13 +1158,12 @@ inserted via the :dudir:`raw` directive) and the CSS syntax is only imitated. the input syntax is not respected. * In particular colors must be input as for the other color related options - previously described, i.e. either in the ``\definecolor`` syntax or, if - package ``xcolor`` is available (it is then automatically used) also the + previously described, i.e. either in the ``\definecolor`` syntax or via the ``\colorlet`` syntax:: ...<other options> - div.warning_border-TeXcolor={rgb}{1,0,0},% (always works) - div.error_background-TeXcolor=red!10,% (works only if xcolor is available) + div.warning_border-TeXcolor={rgb}{1,0,0},% \definecolor syntax + div.error_background-TeXcolor=red!10,% \colorlet syntax ...<other options> * A colon in place of the equal sign will break LaTeX. @@ -1209,9 +1200,15 @@ which is then followed by an underscore, then the property name. :rst:dir:`code-block`, ``pre``, ``sphinxVerbatim`` :dudir:`topic`, ``div.topic``, ``sphinxShadowBox`` contents_, ``div.topic``, ``sphinxShadowBox`` - :dudir:`note`, ``div.note``, ``sphinxnote`` using ``sphinxheavybox`` - :dudir:`warning`, ``div.warning``, ``sphinxwarning`` (uses ``sphinxheavybox``) - admonition type, ``div.<type>``, ``sphinx<type>`` (using ``sphinxheavybox``) + :dudir:`note`, ``div.note``, ``sphinxnote`` + :dudir:`warning`, ``div.warning``, ``sphinxwarning`` + further admonition types ``<type>``, ``div.<type>``, ``sphinx<type>`` + :rst:dir:`seealso`, ``div.seealso``, ``sphinxseealso`` + :rst:dir:`todo`, ``div.todo``, ``sphinxtodo`` + + +.. versionadded:: 7.4.0 Customizability of the :rst:dir:`seealso` and + :rst:dir:`todo` directives. Here are now these options as well as their common defaults. Replace below ``<prefix>`` by the actual prefix as explained above. Don't @@ -1226,13 +1223,16 @@ forget the underscore separating the prefix from the property names. The default is that all those dimensions are equal. They are set to: - * ``\fboxrule`` (i.e. a priori ``0.4pt``) for :rst:dir:`code-block`, - * ``\fboxrule`` for :dudir:`topic` or contents_ directive, - * ``1pt`` for :dudir:`warning` and other "strong" admonitions, - * ``0.5pt`` for :dudir:`note` and other "light" admonitions. The framing - style of the "lighbox" used for them in absence of usage of CSS-named - options will be emulated by the richer "heavybox" if setting - ``border-left-width`` and ``border-right-width`` both to ``0pt``. + * ``0.4pt`` for :rst:dir:`code-block`, + * ``0.5pt`` for :dudir:`topic` or contents_ directive, + * ``0.5pt`` for :dudir:`note` and other "light" admonitions, + * ``0.5pt`` for :rst:dir:`seealso` and :rst:dir:`todo` directives, + * ``1pt`` for :dudir:`warning` and other "strong" admonitions except + :dudir:`error` which uses ``1.25pt``. + + .. versionchanged:: 7.4.0 + + Changed defaults for :dudir:`topic` and :dudir:`error`. - ``<prefix>_box-decoration-break`` can be set to either ``clone`` or ``slice`` and configures the behavior at page breaks. @@ -1245,25 +1245,24 @@ forget the underscore separating the prefix from the property names. | ``<prefix>_padding``. The latter can (currently) be only a *single* dimension which then sets all four others. - The default is that all those dimensions are equal. They are set to: + The defaults: - * ``\fboxsep`` (i.e. a priori ``3pt``) for :rst:dir:`code-block`, - * ``5pt`` for :dudir:`topic` or contents_ directive, - * a special value for :dudir:`warning` and other "strong" admonitions, - which ensures a backward compatible behavior. + * all four ``3pt`` for :rst:dir:`code-block`, + * ``10pt``, ``7pt``, ``12pt``, ``7pt`` for :dudir:`topic` or + contents_ directive, + * ``6pt``, ``7pt``, ``6pt``, ``7pt`` for all "light" admonitions as well + as the :rst:dir:`seealso` and :rst:dir:`todo` directives. + * ``6pt``, ``6.5pt``, ``6pt``, ``6.5pt`` for the strong admonition types + except :dudir:`error` which uses horizontal padding of ``6.25pt``. - .. important:: + .. versionchanged:: 7.4.0 - Prior to 5.1.0 there was no separate customizability of - padding for warning-type boxes in PDF via LaTeX output. The sum of - padding and border-width (as set for example for :dudir:`warning` by - ``warningborder``, now also named ``div.warning_border-width``) was - kept to a certain constant value. This limited the border-width - to small values else the border could overlap the text contents. - This behavior is kept as default. + All defaults were changed, except for :rst:dir:`code-block`. Admonitions + are set-up so that left (or right) padding plus left (or right) + border-width add up always to ``7.5pt``, so contents align well + vertically across admonition types on same page in PDF. This is only a + property of defaults, not a constraint on possible user choices. - * the same padding behavior is obeyed per default for :dudir:`note` or - other "light" admonitions when using ``sphinxheavybox``. - | ``<prefix>_border-top-left-radius``, | ``<prefix>_border-top-right-radius``, | ``<prefix>_border-bottom-right-radius``, @@ -1272,11 +1271,19 @@ forget the underscore separating the prefix from the property names. its assigned value. Each key value can be either a single, or *two*, dimensions which are then space separated. - The default is that all four corners are either circular or straight, - with common radii: + The defaults: - * ``\fboxsep`` (i.e. a priori ``3pt``) for :rst:dir:`code-block` (since 6.0.0). - * ``0pt`` for all other directives; this means to use straight corners. + * ``3pt`` for :rst:dir:`code-block` (since 6.0.0) and all corners, + * ``12pt`` for the bottom right corner of :dudir:`topic`, other corners are + straight, + * all radii set to ``5pt`` for :dudir:`note`, :dudir:`hint` and + :dudir:`tip`, + * ``0pt``, i.e. straight corners for all other directives. + + .. versionchanged:: 7.4.0 + + :dudir:`topic` and :dudir:`note`\ -like admonitions acquire (at least one) + rounded corners. See a remark above about traps with spaces in LaTeX. - ``<prefix>_box-shadow`` is special in so far as it may be: @@ -1297,14 +1304,24 @@ forget the underscore separating the prefix from the property names. | ``<prefix>_TeXcolor``. These are colors. - The shadow color defaults in all cases to ``{rgb}{0,0,0}`` i.e. to black. + Since 6.0.0 the border and background colors of :rst:dir:`code-block`, + default respectively to ``{RGB}{32,32,32}`` (i.e. ``{HTML}{202020}``), and + ``{RGB}{242,242,242}`` (i.e. ``{gray}{0.95}`` or ``{HTML}{F2F2F2}``). + + At 7.4.0 other directives acquire non-black/white default border and + background colors. Here they are using ``xcolor`` hexadecimal notation + (which requires always 6 hexadecimal digits): - Since 6.0.0 the border color and background color of :rst:dir:`code-block`, - i.e. ``pre`` prefix, default respectively to ``{RGB}{32,32,32}`` and - ``{gray}{0.95}``. They previously defaulted to black, respectively white. + - ``{HTML}{F7F7F7}`` serves as background color to all. + - ``{HTML}{86989B}`` is border color of light admonitions (inclusive of + :rst:dir:`seealso` and :rst:dir:`todo`) as well as of :dudir:`topic` and + contents_ directives. + - ``{HTML}{940000}`` is border color or :dudir:`warning`-type admonitions, + except :dudir:`error` which uses ``{HTML}{B40000}``. - For all other types, the border color defaults to black and the background - color to white. + The only directives displaying a shadow per default are :dudir:`topic` and + contents_ (handled identically at LaTeX level) and their shadow color is + ``{HTML}{6C6C6C}``. For all others the default shadow color is black. The ``<prefix>_TeXcolor`` stands for the CSS property "color", i.e. it influences the text color of the contents. As for the three other options, @@ -1323,6 +1340,35 @@ forget the underscore separating the prefix from the property names. start of the contents; for admonitions, this happens after the heading which reproduces the admonition type. +The next keys, for admonitions only, were all three added at 7.4.0. The +default colors are the ones applying to the current HTML rendering of Sphinx +own docs at https://www.sphinx-doc.org. + +- ``div.<type>_title-background-TeXcolor``: the background color for the title. + + .. important:: + + The colored title-row is produced as a result of the Sphinx default + definitions for the various ``\sphinxstyle<type>title`` commands, see + :ref:`latex-macros`. Custom redefinitions of these commands are + possible, but to re-use the colors and the icon, it is needed to check in + Sphinx LaTeX source code how the default definitions are done. + +- ``div.<type>_title-foreground-TeXcolor``: the color to be used for the icon + (it applies only to the icon, not to the title of the admonition). + +- ``div.<type>_title-icon``: the LaTeX code responsible for producing the + icon. For example, the default for :dudir:`note` is + ``div.note_title-icon=\faIcon{info-circle}``. This uses a command from the + LaTeX ``fontawesome5`` package, which is loaded automatically if available. + + If neither ``fontawesome5`` nor fall-back ``fontawesome`` (for which the + associated command is ``\faicon``, not ``\faIcon``) are found, or if the + ``iconpackage`` key of :ref:`'sphinxsetup' <latexsphinxsetup>` is set to + load some other user-chosen package, or no package at all, all the + ``title-icons`` default to empty LaTeX code. It is up to user to employ + this interface to inject the icon (or anything else) into the PDF output. + .. note:: - All directives support ``box-decoration-break`` to be set to ``slice``. @@ -1519,16 +1565,30 @@ Macros ``\sphinxstyleliteralintitle``; ``\sphinxcode{#1}`` ``\sphinxstylecodecontinued``; ``{\footnotesize(#1)}}`` ``\sphinxstylecodecontinues``; ``{\footnotesize(#1)}}`` - ``\sphinxstylenotetitle``; ``\sphinxstrong{#1}<space>`` - ``\sphinxstylehinttitle``; *idem* - ``\sphinxstyleimportanttitle``; *idem* - ``\sphinxstyletiptitle``; *idem* - ``\sphinxstylewarningtitle``; *idem* - ``\sphinxstylecautiontitle``; *idem* - ``\sphinxstyleattentiontitle``; *idem* - ``\sphinxstyledangertitle``; *idem* - ``\sphinxstyleerrortitle``; *idem* - ``\sphinxstyleseealsotitle``; ``\sphinxstrong{#1}\par\nopagebreak`` + ``\sphinxstylenotetitle``; ``\sphinxdotitlerowwithicon{note}{#1}`` + ``\sphinxstylehinttitle``; ``\sphinxdotitlerowwithicon{hint}{#1}`` + ``\sphinxstyleimportanttitle``; *similar* + ``\sphinxstyletiptitle``; *similar* + ``\sphinxstylewarningtitle``; *similar* + ``\sphinxstylecautiontitle``; *similar* + ``\sphinxstyleattentiontitle``; *similar* + ``\sphinxstyledangertitle``; *similar* + ``\sphinxstyleerrortitle``; *similar* + ``\sphinxstyleseealsotitle``; *similar* + ``\sphinxstyletodotitle``; *similar* + + .. note:: + + To let this table fit on the page width in PDF output we have lied a bit + and the actual definition of ``\sphinxstylenotetitle`` is: + + .. code-block:: latex + + \newcommand\sphinxstylenotetitle[1]% + {\sphinxdotitlerowwithicon{note}{\sphinxremovefinalcolon{#1}}} + + The same remark applies to all other similar commands associated with + admonitions. .. versionadded:: 1.5 These macros were formerly hard-coded as non customizable ``\texttt``, @@ -1547,23 +1607,16 @@ Macros .. versionadded:: 6.2.0 ``\sphinxstylenotetitle`` et al. The ``#1`` is the localized name of the directive, with a final colon. Wrap it as ``\sphinxremovefinalcolon{#1}`` - if this final colon is to be removed. Examples: + if this final colon is to be removed. - .. code-block:: latex + .. versionadded:: 7.4.0 The ``\sphinxdotitlerowwithicon`` LaTeX command, + whose first argument is the admonition type, so that it can recover + the associated colours and icon for the title row, and the second + argument gets typeset after the icon. - \renewcommand\sphinxstylewarningtitle[1]{% - \underline{\textbf{\sphinxremovefinalcolon{#1}}}\par - } - \renewcommand{\sphinxstylenotetitle}[1]{% - \textit{\textbf{\sphinxremovefinalcolon{#1}}}\par\nobreak - % LaTeX syntax is complex and we would be better off using \hrule. - {\parskip0pt\noindent}% - \raisebox{1ex}% - {\makebox[\linewidth]{\textcolor{sphinxnoteBorderColor}{\dotfill}}} - % It is complex to obtain nice vertical spacing for both a paragraph - % or a list following up; this set-up is better for a paragraph next. - \par\vskip-\parskip - } + .. todo:: The fact that we must employ ``\sphinxremovefinalcolon`` is a + legacy artefact from old ill-designed Sphinx LaTeX writer, + which postfixes (still today) the title with a colon automatically. - ``\sphinxtableofcontents``: A wrapper (defined differently in :file:`sphinxhowto.cls` and in :file:`sphinxmanual.cls`) of standard @@ -1743,6 +1796,11 @@ Environments Colon made part of the mark-up rather than being inserted by the environment for coherence with how admonitions are handled generally. +- Environment for the :rst:dir:`todo` directive: ``sphinxtodo``. + It takes one argument which will be the localized string ``Todo`` + followed with a colon. + + .. versionadded:: 7.4.0 - The contents_ directive (with ``:local:`` option) and the :dudir:`topic` directive are implemented by environment ``sphinxShadowBox``. @@ -1818,7 +1876,7 @@ Miscellany \newenvironment{sphinxclassred}{\color{red}}{} - Currently the class names must contain only ascii characters and avoid + Currently the class names must contain only ASCII characters and avoid characters special to LaTeX such as ``\``. .. versionadded:: 4.1.0 @@ -1826,16 +1884,21 @@ Miscellany .. hint:: As an experimental feature, Sphinx can use user-defined template file for - LaTeX source if you have a file named ``_templates/latex.tex_t`` in your + LaTeX source if you have a file named ``_templates/latex.tex.jinja`` in your project. - Additional files ``longtable.tex_t``, ``tabulary.tex_t`` and - ``tabular.tex_t`` can be added to ``_templates/`` to configure some aspects - of table rendering (such as the caption position). + Additional files ``longtable.tex.jinja``, ``tabulary.tex.jinja`` and + ``tabular.tex.jinja`` can be added to ``_templates/`` to configure some + aspects of table rendering (such as the caption position). .. versionadded:: 1.6 currently all template variables are unstable and undocumented. + .. versionchanged:: 7.4 + Added support for the ``.jinja`` file extension, which is preferred. + The old file names remain supported. + (``latex.tex_t``, ``longtable.tex_t``, ``tabulary.tex_t``, and ``tabular.tex_t``) + .. raw:: latex \endgroup diff --git a/doc/man/sphinx-apidoc.rst b/doc/man/sphinx-apidoc.rst index efc8230..a023b2d 100644 --- a/doc/man/sphinx-apidoc.rst +++ b/doc/man/sphinx-apidoc.rst @@ -54,7 +54,7 @@ Options .. option:: -n, --dry-run - Do not create any files. + Do not create or remove any files. .. option:: -s <suffix> @@ -73,6 +73,12 @@ Options Do not create a table of contents file. Ignored when :option:`--full` is provided. +.. option:: --remove-old + + Remove existing files in the output directory + that are not created anymore. + Not compatible with :option:`--full`. + .. option:: -F, --full Generate a full Sphinx project (``conf.py``, ``Makefile`` etc.) using @@ -142,15 +148,15 @@ These options are used when :option:`--full` is specified: sphinx project files generated by apidoc. Following Jinja2 template files are allowed: - * ``module.rst_t`` - * ``package.rst_t`` - * ``toc.rst_t`` - * ``root_doc.rst_t`` - * ``conf.py_t`` - * ``Makefile_t`` - * ``Makefile.new_t`` - * ``make.bat_t`` - * ``make.bat.new_t`` + * ``module.rst.jinja`` + * ``package.rst.jinja`` + * ``toc.rst.jinja`` + * ``root_doc.rst.jinja`` + * ``conf.py.jinja`` + * ``Makefile.jinja`` + * ``Makefile.new.jinja`` + * ``make.bat.jinja`` + * ``make.bat.new.jinja`` In detail, please refer the system template files Sphinx provides. (``sphinx/templates/apidoc`` and ``sphinx/templates/quickstart``) diff --git a/doc/man/sphinx-autogen.rst b/doc/man/sphinx-autogen.rst index caeb44b..43cc369 100644 --- a/doc/man/sphinx-autogen.rst +++ b/doc/man/sphinx-autogen.rst @@ -43,6 +43,11 @@ Options Document exactly the members in a module's ``__all__`` attribute. +.. option:: --remove-old + + Remove existing files in the output directory + that are not generated anymore. + Example ------- diff --git a/doc/man/sphinx-build.rst b/doc/man/sphinx-build.rst index 8be2780..ac2e7ca 100644 --- a/doc/man/sphinx-build.rst +++ b/doc/man/sphinx-build.rst @@ -102,8 +102,10 @@ Options .. option:: -t tag, --tag tag - Define the tag *tag*. This is relevant for :rst:dir:`only` directives that - only include their content if this tag is set. + Define the tag *tag*. + This is relevant for :rst:dir:`only` directives that + include their content only if certain tags are set. + See :ref:`including content based on tags <tags>` for further detail. .. versionadded:: 0.6 @@ -126,7 +128,7 @@ Options Distribute the build over *N* processes in parallel, to make building on multiprocessor machines more effective. Note that not all parts and not all builders of Sphinx can be parallelized. If ``auto`` argument is given, - Sphinx uses the number of CPUs as *N*. + Sphinx uses the number of CPUs as *N*. Defaults to 1. .. versionadded:: 1.2 This option should be considered *experimental*. @@ -192,7 +194,7 @@ Options .. option:: -n, --nitpicky - Run in nit-picky mode. Currently, this generates warnings for all missing + Run in nitpicky mode. Currently, this generates warnings for all missing references. See the config value :confval:`nitpick_ignore` for a way to exclude some references as "known missing". diff --git a/doc/man/sphinx-quickstart.rst b/doc/man/sphinx-quickstart.rst index cc6673d..a8522ec 100644 --- a/doc/man/sphinx-quickstart.rst +++ b/doc/man/sphinx-quickstart.rst @@ -152,12 +152,12 @@ Options sphinx project files generated by quickstart. Following Jinja2 template files are allowed: - * ``root_doc.rst_t`` - * ``conf.py_t`` - * ``Makefile_t`` - * ``Makefile.new_t`` - * ``make.bat_t`` - * ``make.bat.new_t`` + * ``root_doc.rst.jinja`` + * ``conf.py.jinja`` + * ``Makefile.jinja`` + * ``Makefile.new.jinja`` + * ``make.bat.jinja`` + * ``make.bat.new.jinja`` In detail, please refer the system template files Sphinx provides. (``sphinx/templates/quickstart``) diff --git a/doc/support.rst b/doc/support.rst index 0d349a0..69f800d 100644 --- a/doc/support.rst +++ b/doc/support.rst @@ -1,20 +1,29 @@ +.. _support-index: + Get support =========== -For questions or to report problems with Sphinx, join the `sphinx-users`_ -mailing list on Google Groups, come to the ``#sphinx-doc`` channel on -`libera.chat`_, or open an issue at the tracker_. +For questions or to report problems with Sphinx: + +- Please verify that your question does not exist on StackOverflow_ + (with the tag ``python-sphinx``) +- open a topic at the `Github discussions`_ page, +- open an issue at the `Github issues`_ page, +- or join the `sphinx-users`_ mailing list on Google Groups, +.. _StackOverflow: https://stackoverflow.com/questions/tagged/python-sphinx .. _sphinx-users: https://groups.google.com/group/sphinx-users -.. _libera.chat: https://web.libera.chat/?channel=#sphinx-doc -.. _tracker: https://github.com/sphinx-doc/sphinx/issues +.. _Github discussions: https://github.com/sphinx-doc/sphinx/discussions +.. _Github issues: https://github.com/sphinx-doc/sphinx/issues + +Examples of other projects using Sphinx can be found in the +:doc:`examples page <examples>`. -Examples of other projects using Sphinx can be found in the :doc:`examples page -<examples>`. A useful tutorial_ has been written by the matplotlib developers. +See also the guide by ReadTheDocs_ on how to get started with Sphinx. -.. _tutorial: https://matplotlib.sourceforge.net/sampledoc/ +.. _Readthedocs: https://docs.readthedocs.io/en/stable/intro/getting-started-with-sphinx.html -There is a translation team in Transifex_ of this documentation, thanks to the -Sphinx document translators. +There is a translation team in Transifex_ of this documentation, +thanks to the Sphinx document translators. .. _Transifex: https://www.transifex.com/sphinx-doc/sphinx-doc/dashboard/ diff --git a/doc/tutorial/automatic-doc-generation.rst b/doc/tutorial/automatic-doc-generation.rst index 8d9c9c9..db880d0 100644 --- a/doc/tutorial/automatic-doc-generation.rst +++ b/doc/tutorial/automatic-doc-generation.rst @@ -142,7 +142,7 @@ contain two new pages: - ``api.html``, corresponding to ``docs/source/api.rst`` and containing a table with the objects you included in the ``autosummary`` directive (in this case, only one). -- ``generated/lumache.html``, corresponding to a newly created reST file +- ``generated/lumache.html``, corresponding to a newly created reStructuredText file ``generated/lumache.rst`` and containing a summary of members of the module, in this case one function and one exception. diff --git a/doc/tutorial/deploying.rst b/doc/tutorial/deploying.rst index 6b7913f..c269593 100644 --- a/doc/tutorial/deploying.rst +++ b/doc/tutorial/deploying.rst @@ -159,7 +159,7 @@ way of getting started is to follow :doc:`the RTD tutorial <readthedocs:tutorial/index>`, which is loosely based on this one. You can publish your sources on GitHub as explained :ref:`in the previous section <publishing-sources>`, then skip directly to -:ref:`readthedocs:tutorial/index:Sign up for Read the Docs`. +:ref:`readthedocs:tutorial/index:Creating a Read the Docs account`. If you choose GitLab instead, the process is similar. GitHub Pages diff --git a/doc/tutorial/describing-code.rst b/doc/tutorial/describing-code.rst index 16feb2a..e8c6a80 100644 --- a/doc/tutorial/describing-code.rst +++ b/doc/tutorial/describing-code.rst @@ -75,7 +75,7 @@ Cross-referencing Python objects By default, most of these directives generate entities that can be cross-referenced from any part of the documentation by using -:ref:`a corresponding role <python-roles>`. For the case of functions, +:ref:`a corresponding role <python-xref-roles>`. For the case of functions, you can use :rst:role:`py:func` for that, as follows: .. code-block:: rst diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index d7f4861..54f4c72 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -1,8 +1,7 @@ .. _tutorial: -================================== -Tutorial: Build your first project -================================== +Build your first project +======================== In this tutorial you will build a simple documentation project using Sphinx, and view it in your browser as HTML. The project will include narrative, diff --git a/doc/tutorial/narrative-documentation.rst b/doc/tutorial/narrative-documentation.rst index a81204d..0c41392 100644 --- a/doc/tutorial/narrative-documentation.rst +++ b/doc/tutorial/narrative-documentation.rst @@ -85,7 +85,7 @@ introduction paragraph in ``index.rst``: Check out the :doc:`usage` section for further information. -The :rst:role:`doc` :ref:`role <rst-roles-alt>` you used automatically +The :rst:role:`doc` :ref:`role <rst-roles>` you used automatically references a specific document in the project, in this case the ``usage.rst`` you created earlier. diff --git a/doc/usage/advanced/intl.rst b/doc/usage/advanced/intl.rst index e858c3c..8f16259 100644 --- a/doc/usage/advanced/intl.rst +++ b/doc/usage/advanced/intl.rst @@ -27,7 +27,7 @@ Sphinx uses these facilities to translate whole documents. Initially project maintainers have to collect all translatable strings (also referred to as *messages*) to make them known to translators. Sphinx extracts -these through invocation of ``sphinx-build -M gettext``. +these through invocation of :command:`sphinx-build -M gettext`. Every single element in the doctree will end up in a single message which results in lists being equally split into different chunks while large @@ -51,13 +51,13 @@ through :program:`msgfmt` for efficiency reasons. If you make these files discoverable with :confval:`locale_dirs` for your :confval:`language`, Sphinx will pick them up automatically. -An example: you have a document ``usage.rst`` in your Sphinx project. The -*gettext* builder will put its messages into ``usage.pot``. Imagine you have -Spanish translations [2]_ stored in ``usage.po`` --- for your builds to +An example: you have a document :file:`usage.rst` in your Sphinx project. The +*gettext* builder will put its messages into :file:`usage.pot`. Imagine you have +Spanish translations [2]_ stored in :file:`usage.po` --- for your builds to be translated you need to follow these instructions: * Compile your message catalog to a locale directory, say ``locale``, so it - ends up in ``./locale/es/LC_MESSAGES/usage.mo`` in your source directory + ends up in :file:`./locale/es/LC_MESSAGES/usage.mo` in your source directory (where ``es`` is the language code for Spanish.) :: msgfmt "usage.po" -o "locale/es/LC_MESSAGES/usage.mo" @@ -101,7 +101,7 @@ section describe an easy way to translate with *sphinx-intl*. $ pip install sphinx-intl -#. Add configurations to ``conf.py``. +#. Add configurations to :file:`conf.py`. :: @@ -137,7 +137,7 @@ section describe an easy way to translate with *sphinx-intl*. #. Translate po files. As noted above, these are located in the ``./locale/<lang>/LC_MESSAGES`` - directory. An example of one such file, from Sphinx, ``builders.po``, is + directory. An example of one such file, from Sphinx, :file:`builders.po`, is given below. .. code-block:: po @@ -160,12 +160,12 @@ section describe an easy way to translate with *sphinx-intl*. "FILL HERE BY TARGET LANGUAGE FILL HERE BY TARGET LANGUAGE FILL HERE " "BY TARGET LANGUAGE :ref:`EXTENSIONS <extensions>` FILL HERE." - Please be careful not to break reST notation. Most po-editors will help you - with that. + Please be careful not to break reStructuredText notation. + Most po-editors will help you with that. #. Build translated document. - You need a :confval:`language` parameter in ``conf.py`` or you may also + You need a :confval:`language` parameter in :file:`conf.py` or you may also specify the parameter on the command line. For BSD/GNU make, run: @@ -218,23 +218,27 @@ Using Transifex service for team translation -------------------------------------------- Transifex_ is one of several services that allow collaborative translation via a -web interface. It has a nifty Python-based command line client that makes it +web interface. It has a nifty Go-based command line client that makes it easy to fetch and push translations. .. TODO: why use transifex? -#. Install `transifex-client`_. +#. Install the `Transifex CLI tool`_. - You need :command:`tx` command to upload resources (pot files). + You need the :command:`tx` command line tool for uploading resources (pot files). + The official installation process place the :file:`tx` binary file in + the current directory along with a README and a LICENSE file, and adds + the current directory to ``$PATH``. .. code-block:: console - $ pip install transifex-client + $ curl -o- https://raw.githubusercontent.com/transifex/cli/master/install.sh | bash .. seealso:: `Transifex Client documentation`_ -#. Create your Transifex_ account and create new project for your document. +#. Create your Transifex_ account and create a new project and an organization + for your document. Currently, Transifex does not allow for a translation project to have more than one version of the document, so you'd better include a version number in @@ -242,45 +246,75 @@ easy to fetch and push translations. For example: + :Organization ID: ``sphinx-document`` :Project ID: ``sphinx-document-test_1_0`` :Project URL: ``https://www.transifex.com/projects/p/sphinx-document-test_1_0/`` -#. Create config files for :command:`tx` command. +#. Create an API token to be used in the command-line. - This process will create ``.tx/config`` in the current directory, as well as - a ``~/.transifexrc`` file that includes auth information. + Go to your `Transifex API token`_ page and generate a token. + Copy the generated token now, as you will not be able to see it again later. + +#. Set your Transifex API token in the user configuration file + :file:`$HOME/.transifexrc`. + + .. code-block:: ini + + [https://app.transifex.com] + rest_hostname = https://rest.api.transifex.com + token = paste_your_api_token_here + +#. Alternatively, you can store your Transifex API token as the environment variable + ``TX_TOKEN``, which is recognized and used by :command:`tx`. + + .. code-block:: console + + $ export TX_TOKEN=paste_your_api_token_here + +#. Create the project's config file for :command:`tx` command. + + This process will create ``.tx/config`` in the current directory. .. code-block:: console + $ cd /your/document/root $ tx init - Creating .tx folder... - Transifex instance [https://www.transifex.com]: - ... - Please enter your transifex username: <transifex-username> - Password: <transifex-password> - ... - Done. + + Successful creation of '.tx/config' file #. Upload pot files to Transifex service. - Register pot files to ``.tx/config`` file: + Register pot files to ``.tx/config`` file using + :command:`sphinx-intl update-txconfig-resources`, adjusting + ``--pot-dir`` value to your project's pot files' directory: .. code-block:: console $ cd /your/document/root $ sphinx-intl update-txconfig-resources --pot-dir _build/locale \ - --transifex-project-name sphinx-document-test_1_0 + --transifex-organization-name=sphinx-document \ + --transifex-project-name=sphinx-document-test_1_0 + + You can use the ``SPHINXINTL_TRANSIFEX_ORGANIZATION_NAME`` and + ``SPHINXINTL_TRANSIFEX_PROJECT_NAME`` environment variables + instead of the respective command line arguments. + + .. seealso:: `sphinx-intl update-txconfig-resources documentation`_ and upload pot files: .. code-block:: console $ tx push -s - Pushing translations for resource sphinx-document-test_1_0.builders: - Pushing source file (locale/pot/builders.pot) - Resource does not exist. Creating... - ... - Done. + # Getting info about resources + + sphinx-document-test_1_0.builders - Getting info + sphinx-document-test_1_0.builders - Done + + # Pushing source files + + sphinx-document-test_1_0.builders - Uploading file + sphinx-document-test_1_0.builders - Done #. Forward the translation on Transifex. @@ -295,12 +329,18 @@ easy to fetch and push translations. $ cd /your/document/root $ tx pull -l de - Pulling translations for resource sphinx-document-test_1_0.builders (...) - -> de: locale/de/LC_MESSAGES/builders.po - ... - Done. + # Getting info about resources + + sphinx-document-test_1_0.builders - Getting info + sphinx-document-test_1_0.builders - Done + + # Pulling files + + sphinx-document-test_1_0.builders [de] - Pulling file + sphinx-document-test_1_0.builders [de] - Creating download job + sphinx-document-test_1_0.builders [de] - Done - Invoke :command:`make html` (for BSD/GNU make): + Invoke :command:`make html` (for BSD/GNU make) passing the language code: .. code-block:: console @@ -338,7 +378,8 @@ There is a `sphinx translation page`_ for Sphinx (master) documentation. 4. Wait acceptance by Transifex sphinx translation maintainers. 5. (After acceptance) Translate on Transifex. -Detail is here: https://docs.transifex.com/getting-started-1/translators +Detail is here: +https://help.transifex.com/en/articles/6248698-getting-started-as-a-translator Translation progress and statistics @@ -364,9 +405,11 @@ percentage of nodes that have been translated on a per-document basis. for details on that software suite. .. [2] Because nobody expects the Spanish Inquisition! -.. _`transifex-client`: https://pypi.org/project/transifex-client/ +.. _`Transifex CLI tool`: https://github.com/transifex/cli/ .. _`sphinx-intl`: https://pypi.org/project/sphinx-intl/ -.. _Transifex: https://www.transifex.com/ +.. _Transifex: https://app.transifex.com/ .. _Weblate's documentation: https://docs.weblate.org/en/latest/devel/sphinx.html -.. _`sphinx translation page`: https://www.transifex.com/sphinx-doc/sphinx-doc/ -.. _`Transifex Client documentation`: https://docs.transifex.com/client/introduction/ +.. _`sphinx translation page`: https://app.transifex.com/sphinx-doc/sphinx-doc/ +.. _`Transifex Client documentation`: https://developers.transifex.com/docs/using-the-client +.. _`Transifex API token`: https://app.transifex.com/user/settings/api/ +.. _`sphinx-intl update-txconfig-resources documentation`: https://sphinx-intl.readthedocs.io/en/master/refs.html#sphinx-intl-update-txconfig-resources diff --git a/doc/usage/advanced/websupport/quickstart.rst b/doc/usage/advanced/websupport/quickstart.rst index e7c2b51..b75c617 100644 --- a/doc/usage/advanced/websupport/quickstart.rst +++ b/doc/usage/advanced/websupport/quickstart.rst @@ -21,7 +21,7 @@ things are in a document. To do this you will need to create an instance of the support.build() This will read reStructuredText sources from ``srcdir`` and place the necessary -data in ``builddir``. The ``builddir`` will contain two sub-directories: one +data in ``builddir``. The ``builddir`` will contain two subdirectories: one named "data" that contains all the data needed to display documents, search through documents, and add comments to documents. The other directory will be called "static" and contains static files that should be served from "/static". diff --git a/doc/usage/builders/index.rst b/doc/usage/builders/index.rst index 9c538ee..e293399 100644 --- a/doc/usage/builders/index.rst +++ b/doc/usage/builders/index.rst @@ -71,9 +71,9 @@ The most common builders are: .. class:: StandaloneHTMLBuilder This is the standard HTML builder. Its output is a directory with HTML - files, complete with style sheets and optionally the reST sources. There are - quite a few configuration values that customize the output of this builder, - see the chapter :ref:`html-options` for details. + files, complete with style sheets and optionally the reStructuredText sources. + There are quite a few configuration values that customize + the output of this builder, see the chapter :ref:`html-options` for details. .. autoattribute:: name @@ -237,6 +237,8 @@ The most common builders are: * ``texlive-latex-recommended`` * ``texlive-fonts-recommended`` + * ``texlive-fonts-extra`` (needed for ``fontawesome5``, see the 7.4.0 + change notice below) * ``tex-gyre`` (if :confval:`latex_engine` left to default) * ``texlive-latex-extra`` * ``latexmk`` @@ -244,6 +246,12 @@ The most common builders are: .. versionchanged:: 4.0.0 TeX Gyre fonts now required for ``'pdflatex'`` engine (default). + .. versionchanged:: 7.4.0 + LaTeX package ``xcolor`` is now required (it is part of Ubuntu + ``texlive-latex-recommended`` anyhow). The LaTeX package + ``fontawesome5`` is recommended. See the :ref:`'sphinxsetup' + <latexsphinxsetup>` ``iconpackage`` key for more. + Additional packages are needed in some circumstances: * ``texlive-lang-cyrillic`` for Cyrillic (and also then @@ -298,9 +306,9 @@ name is ``rinoh``. Refer to the `rinohtype manual`_ for details. .. module:: sphinx.builders.text .. class:: TextBuilder - This builder produces a text file for each reST file -- this is almost the - same as the reST source, but with much of the markup stripped for better - readability. + This builder produces a text file for each reStructuredText file. + This is almost the same as the reStructuredText source, + but with much of the markup stripped for better readability. .. autoattribute:: name @@ -540,8 +548,8 @@ Serialization builder details ----------------------------- All serialization builders outputs one file per source file and a few special -files. They also copy the reST source files in the directory ``_sources`` -under the output directory. +files. They also copy the reStructuredText source files +to the ``_sources`` directory under the output directory. The :class:`.PickleHTMLBuilder` is a builtin subclass that implements the pickle serialization interface. diff --git a/doc/usage/configuration.rst b/doc/usage/configuration.rst index a27107f..cd56674 100644 --- a/doc/usage/configuration.rst +++ b/doc/usage/configuration.rst @@ -1,5 +1,3 @@ -.. highlight:: python - .. _build-config: ============= @@ -9,10 +7,23 @@ Configuration .. module:: conf :synopsis: Build configuration file. +.. role:: code-c(code) + :language: C +.. role:: code-cpp(code) + :language: C++ +.. role:: code-js(code) + :language: JavaScript +.. role:: code-py(code) + :language: Python +.. role:: code-rst(code) + :language: reStructuredText +.. role:: code-tex(code) + :language: LaTeX + The :term:`configuration directory` must contain a file named :file:`conf.py`. This file (containing Python code) is called the "build configuration file" -and contains (almost) all configuration needed to customize Sphinx input -and output behavior. +and contains (almost) all configuration needed to customise Sphinx input +and output behaviour. An optional file `docutils.conf`_ can be added to the configuration directory to adjust `Docutils`_ configuration if not otherwise overridden or @@ -21,1050 +32,1399 @@ set by Sphinx. .. _`docutils`: https://docutils.sourceforge.io/ .. _`docutils.conf`: https://docutils.sourceforge.io/docs/user/config.html -The configuration file is executed as Python code at build time (using -:func:`importlib.import_module`, and with the current directory set to its -containing directory), and therefore can execute arbitrarily complex code. -Sphinx then reads simple names from the file's namespace as its configuration. - Important points to note: -* If not otherwise documented, values must be strings, and their default is the - empty string. - -* The term "fully-qualified name" refers to a string that names an importable - Python object inside a module; for example, the FQN - ``"sphinx.builders.Builder"`` means the ``Builder`` class in the - ``sphinx.builders`` module. - -* Remember that document names use ``/`` as the path separator and don't - contain the file name extension. - -* Since :file:`conf.py` is read as a Python file, the usual rules apply for - encodings and Unicode support. - -* The contents of the config namespace are pickled (so that Sphinx can find out - when configuration changes), so it may not contain unpickleable values -- - delete them from the namespace with ``del`` if appropriate. Modules are - removed automatically, so you don't need to ``del`` your imports after use. - - .. _conf-tags: +* If not otherwise documented, values must be strings, + and their default is the empty string. -* There is a special object named ``tags`` available in the config file. - It can be used to query and change the tags (see :ref:`tags`). Use - ``tags.has('tag')`` to query, ``tags.add('tag')`` and ``tags.remove('tag')`` - to change. Only tags set via the ``-t`` command-line option or via - ``tags.add('tag')`` can be queried using ``tags.has('tag')``. - Note that the current builder tag is not available in ``conf.py``, as it is - created *after* the builder is initialized. +* The term "fully-qualified name" (FQN) refers to a string that names an importable + Python object inside a module; for example, the fully-qualified name + :code-py:`"sphinx.builders.Builder"` means the :code-py:`Builder` class in the + :code-py:`sphinx.builders` module. +* Document names use ``/`` as the path separator + and do not contain the file name extension. -Project information -------------------- - -.. confval:: project +.. _glob-style patterns: - The documented project's name. +* Where glob-style patterns are permitted, + you can use the standard shell constructs + (``*``, ``?``, ``[...]``, and ``[!...]``) + with the feature that none of these will match slashes (``/``). + A double star ``**`` can be used to match any sequence of characters + *including* slashes. -.. confval:: author +.. tip:: - The author name(s) of the document. The default value is ``'unknown'``. + The configuration file is executed as Python code at build time + (using :func:`importlib.import_module`, with the current directory set + to the :term:`configuration directory`), + and therefore can execute arbitrarily complex code. -.. confval:: copyright + Sphinx then reads simple names from the file's namespace as its configuration. + In general, configuration values should be simple strings, numbers, or + lists or dictionaries of simple values. - A copyright statement in the style ``'2008, Author Name'``. + The contents of the config namespace are pickled (so that Sphinx can find out + when configuration changes), so it may not contain unpickleable values -- + delete them from the namespace with ``del`` if appropriate. + Modules are removed automatically, so deleting imported modules is not needed. - .. versionchanged:: 7.1 - The value may now be a sequence of copyright statements in the above form, - which will be displayed each to their own line. -.. confval:: project_copyright +.. _conf-tags: - An alias of :confval:`copyright`. +Project tags +============ - .. versionadded:: 3.5 +There is a special object named ``tags`` available in the config file, +which exposes the :ref:`project tags <tags>`. +Tags are defined either via the +:option:`--tag <sphinx-build --tag>` command-line option +or :code-py:`tags.add('tag')`. +Note that the builder's name and format tags are not available in :file:`conf.py`. -.. confval:: version +It can be used to query and change the defined tags as follows: - The major project version, used as the replacement for ``|version|``. For - example, for the Python documentation, this may be something like ``2.6``. +* To query whether a tag is set, use :code-py:`'tag' in tags`. +* To add a tag, use :code-py:`tags.add('tag')`. +* To remove a tag, use :code-py:`tags.remove('tag')`. -.. confval:: release +Project information +=================== - The full project version, used as the replacement for ``|release|`` and - e.g. in the HTML templates. For example, for the Python documentation, this - may be something like ``2.6.0rc1``. +.. confval:: project + :type: :code-py:`str` + :default: :code-py:`'Project name not set'` - If you don't need the separation provided between :confval:`version` and - :confval:`release`, just set them both to the same value. + The documented project's name. + Example: + .. code-block:: python -General configuration ---------------------- + project = 'Thermidor' -.. confval:: extensions +.. confval:: author + :type: :code-py:`str` + :default: :code-py:`'Author name not set'` - A list of strings that are module names of :doc:`extensions - <extensions/index>`. These can be extensions coming with Sphinx (named - ``sphinx.ext.*``) or custom ones. + The project's author(s). + Example: - Note that you can extend :data:`sys.path` within the conf file if your - extensions live in another directory -- but make sure you use absolute paths. - If your extension path is relative to the :term:`configuration directory`, - use :func:`os.path.abspath` like so:: + .. code-block:: python - import sys, os + author = 'Joe Bloggs' - sys.path.append(os.path.abspath('sphinxext')) +.. confval:: copyright + project_copyright + :type: :code-py:`str | Sequence[str]` + :default: :code-py:`''` - extensions = ['extname'] + A copyright statement. + Permitted styles are as follows, where 'YYYY' represents a four-digit year. - That way, you can load an extension called ``extname`` from the subdirectory - ``sphinxext``. + * :code-py:`copyright = 'YYYY'` + * :code-py:`copyright = 'YYYY, Author Name'` + * :code-py:`copyright = 'YYYY Author Name'` + * :code-py:`copyright = 'YYYY-YYYY, Author Name'` + * :code-py:`copyright = 'YYYY-YYYY Author Name'` - The configuration file itself can be an extension; for that, you only need - to provide a :func:`setup` function in it. + .. versionadded:: 3.5 + The :code-py:`project_copyright` alias. -.. confval:: source_suffix + .. versionchanged:: 7.1 + The value may now be a sequence of copyright statements in the above form, + which will be displayed each to their own line. - The file extensions of source files. Sphinx considers the files with this - suffix as sources. The value can be a dictionary mapping file extensions - to file types. For example:: +.. confval:: version + :type: :code-py:`str` + :default: :code-py:`''` - source_suffix = { - '.rst': 'restructuredtext', - '.txt': 'restructuredtext', - '.md': 'markdown', - } + The major project version, used as the replacement for the :code-rst:`|version|` + :ref:`default substitution <default-substitutions>`. - By default, Sphinx only supports ``'restructuredtext'`` file type. You can - add a new file type using source parser extensions. Please read a document - of the extension to know which file type the extension supports. + This may be something like :code-py:`version = '4.2'`. + The full project version is defined in :confval:`release`. - The value may also be a list of file extensions: then Sphinx will consider - that they all map to the ``'restructuredtext'`` file type. + If your project does not draw a meaningful distinction between + between a 'full' and 'major' version, + set both :code-py:`version` and :code-py:`release` to the same value. - Default is ``{'.rst': 'restructuredtext'}``. +.. confval:: release + :type: :code-py:`str` + :default: :code-py:`''` - .. note:: file extensions have to start with a dot (e.g. ``.rst``). + The full project version, used as the replacement for the :code-rst:`|release|` + :ref:`default substitution <default-substitutions>`, and + e.g. in the HTML templates. - .. versionchanged:: 1.3 - Can now be a list of extensions. + This may be something like :code-py:`release = '4.2.1b0'`. + The major (short) project version is defined in :confval:`version`. - .. versionchanged:: 1.8 - Support file type mapping + If your project does not draw a meaningful distinction between + between a 'full' and 'major' version, + set both :code-py:`version` and :code-py:`release` to the same value. -.. confval:: source_encoding - The encoding of all reST source files. The recommended encoding, and the - default value, is ``'utf-8-sig'``. +General configuration +===================== - .. versionadded:: 0.5 - Previously, Sphinx accepted only UTF-8 encoded sources. +.. confval:: needs_sphinx + :type: :code-py:`str` + :default: :code-py:`''` -.. confval:: source_parsers + Set a minimum supported version of Sphinx required to build the project. + The format should be a ``'major.minor'`` version string like ``'1.1'`` + Sphinx will compare it with its version and refuse to build the project + if the running version of Sphinx is too old. + By default, there is no minimum version. - If given, a dictionary of parser classes for different source suffices. The - keys are the suffix, the values can be either a class or a string giving a - fully-qualified name of a parser class. The parser class can be either - ``docutils.parsers.Parser`` or :class:`sphinx.parsers.Parser`. Files with a - suffix that is not in the dictionary will be parsed with the default - reStructuredText parser. + .. versionadded:: 1.0 - For example:: + .. versionchanged:: 1.4 + Allow a ``'major.minor.micro'`` version string. - source_parsers = {'.md': 'recommonmark.parser.CommonMarkParser'} +.. confval:: extensions + :type: :code-py:`list[str]` + :default: :code-py:`[]` - .. note:: + A list of strings that are module names of + :doc:`Sphinx extensions <extensions/index>`. + These can be extensions bundled with Sphinx (named ``sphinx.ext.*``) + or custom first-party or third-party extensions. - Refer to :doc:`/usage/markdown` for more information on using Markdown - with Sphinx. + To use a third-party extension, you must ensure that it is installed + and include it in the :code-py:`extensions` list, like so: - .. versionadded:: 1.3 + .. code-block:: python - .. deprecated:: 1.8 - Now Sphinx provides an API :meth:`.Sphinx.add_source_parser` to register - a source parser. Please use it instead. + extensions = [ + ... + 'numpydoc', + ] -.. confval:: master_doc + There are two options for first-party extensions. + The configuration file itself can be an extension; + for that, you only need to provide a :func:`setup` function in it. + Otherwise, you must ensure that your custom extension is importable, + and located in a directory that is in the Python path. - Same as :confval:`root_doc`. + Ensure that absolute paths are used when modifying :data:`sys.path`. + If your custom extensions live in a directory that is relative to the + :term:`configuration directory`, use :func:`os.path.abspath` like so: - .. versionchanged:: 4.0 - Renamed ``master_doc`` to ``root_doc``. + .. code-block:: python -.. confval:: root_doc + import os, sys; sys.path.append(os.path.abspath('sphinxext')) - The document name of the "root" document, that is, the document that - contains the root :rst:dir:`toctree` directive. Default is ``'index'``. + extensions = [ + ... + 'extname', + ] - .. versionchanged:: 2.0 - The default is changed to ``'index'`` from ``'contents'``. - .. versionchanged:: 4.0 - Renamed ``root_doc`` from ``master_doc``. + The directory structure illustrated above would look like this: -.. confval:: exclude_patterns + .. code-block:: none - A list of glob-style patterns [1]_ that should be excluded when looking for - source files. They are matched against the source file names relative - to the source directory, using slashes as directory separators on all - platforms. + <project directory>/ + ├── conf.py + └── sphinxext/ +    └── extname.py - Example patterns: - - ``'library/xml.rst'`` -- ignores the ``library/xml.rst`` file - - ``'library/xml'`` -- ignores the ``library/xml`` directory - - ``'library/xml*'`` -- ignores all files and directories starting with - ``library/xml`` - - ``'**/.svn'`` -- ignores all ``.svn`` directories +.. confval:: needs_extensions + :type: :code-py:`dict[str, str]` + :default: :code-py:`{}` + + If set, this value must be a dictionary specifying version requirements + for extensions in :confval:`extensions`. + The version strings should be in the ``'major.minor'`` form. + Requirements do not have to be specified for all extensions, + only for those you want to check. + Example: - :confval:`exclude_patterns` is also consulted when looking for static files - in :confval:`html_static_path` and :confval:`html_extra_path`. + .. code-block:: python - .. versionadded:: 1.0 + needs_extensions = { + 'sphinxcontrib.something': '1.5', + } -.. confval:: include_patterns + This requires that the extension declares its version + in the :code-py:`setup()` function. See :ref:`dev-extensions` for further details. - A list of glob-style patterns [1]_ that are used to find source files. They - are matched against the source file names relative to the source directory, - using slashes as directory separators on all platforms. The default is ``**``, - meaning that all files are recursively included from the source directory. - :confval:`exclude_patterns` has priority over :confval:`include_patterns`. + .. versionadded:: 1.3 - Example patterns: +.. confval:: manpages_url + :type: :code-py:`str` + :default: :code-py:`''` + + A URL to cross-reference :rst:role:`manpage` roles. + If this is defined to ``https://manpages.debian.org/{path}``, + the :literal:`:manpage:`man(1)`` role will link to + <https://manpages.debian.org/man(1)>. + The patterns available are: + + ``page`` + The manual page (``man``) + ``section`` + The manual section (``1``) + ``path`` + The original manual page and section specified (``man(1)``) - - ``'**'`` -- all files in the source directory and subdirectories, recursively - - ``'library/xml'`` -- just the ``library/xml`` directory - - ``'library/xml*'`` -- all files and directories starting with ``library/xml`` - - ``'**/doc'`` -- all ``doc`` directories (this might be useful if - documentation is co-located with source files) + This also supports manpages specified as ``man.1``. - .. versionadded:: 5.1 + .. code-block:: python -.. confval:: templates_path + # To use manpages.debian.org: + manpages_url = 'https://manpages.debian.org/{path}' + # To use man7.org: + manpages_url = 'https://man7.org/linux/man-pages/man{section}/{page}.{section}.html' + # To use linux.die.net: + manpages_url = 'https://linux.die.net/man/{section}/{page}' + # To use helpmanual.io: + manpages_url = 'https://helpmanual.io/man{section}/{page}' - A list of paths that contain extra templates (or templates that overwrite - builtin/theme-specific templates). Relative paths are taken as relative to - the configuration directory. + .. versionadded:: 1.7 - .. versionchanged:: 1.3 - As these files are not meant to be built, they are automatically added to - :confval:`exclude_patterns`. +.. confval:: today + today_fmt -.. confval:: template_bridge + These values determine how to format the current date, + used as the replacement for the :code-rst:`|today|` + :ref:`default substitution <default-substitutions>`. - A string with the fully-qualified name of a callable (or simply a class) - that returns an instance of :class:`~sphinx.application.TemplateBridge`. - This instance is then used to render HTML documents, and possibly the output - of other builders (currently the changes builder). (Note that the template - bridge must be made theme-aware if HTML themes are to be used.) + * If you set :confval:`today` to a non-empty value, it is used. + * Otherwise, the current time is formatted using :func:`time.strftime` and + the format given in :confval:`today_fmt`. -.. confval:: rst_epilog + The default for :confval:`today` is :code-py:`''`, + and the default for :confval:`today_fmt` is :code-py:`'%b %d, %Y'` + (or, if translation is enabled with :confval:`language`, + an equivalent format for the selected locale). - .. index:: pair: global; substitutions - A string of reStructuredText that will be included at the end of every source - file that is read. This is a possible place to add substitutions that should - be available in every file (another being :confval:`rst_prolog`). An - example:: +Options for figure numbering +---------------------------- - rst_epilog = """ - .. |psf| replace:: Python Software Foundation - """ +.. confval:: numfig + :type: :code-py:`bool` + :default: :code-py:`False` - .. versionadded:: 0.6 + If :code-py:`True`, figures, tables and code-blocks are automatically numbered + if they have a caption. + The :rst:role:`numref` role is enabled. + Obeyed so far only by HTML and LaTeX builders. -.. confval:: rst_prolog + .. note:: - .. index:: pair: global; substitutions + The LaTeX builder always assigns numbers whether this option is enabled + or not. - A string of reStructuredText that will be included at the beginning of every - source file that is read. This is a possible place to add substitutions that - should be available in every file (another being :confval:`rst_epilog`). An - example:: + .. versionadded:: 1.3 - rst_prolog = """ - .. |psf| replace:: Python Software Foundation - """ +.. confval:: numfig_format + :type: :code-py:`dict[str, str]` + :default: :code-py:`{}` - .. versionadded:: 1.0 + A dictionary mapping :code-py:`'figure'`, :code-py:`'table'`, + :code-py:`'code-block'` and :code-py:`'section'` to strings + that are used for format of figure numbers. + The marker ``%s`` will be replaced with the figure number. -.. confval:: primary_domain + The defaults are: - .. index:: default; domain - primary; domain + .. code-block:: python - The name of the default :doc:`domain </usage/domains/index>`. - Can also be ``None`` to disable a default domain. The default is ``'py'``. - Those objects in other domains (whether the domain name is given explicitly, - or selected by a :rst:dir:`default-domain` directive) will have the domain - name explicitly prepended when named (e.g., when the default domain is C, - Python functions will be named "Python function", not just "function"). + numfig_format = { + 'code-block': 'Listing %s', + 'figure': 'Fig. %s', + 'section': 'Section', + 'table': 'Table %s', + } - .. versionadded:: 1.0 + .. versionadded:: 1.3 -.. confval:: default_role +.. confval:: numfig_secnum_depth + :type: :code-py:`int` + :default: :code-py:`1` + + * If set to :code-py:`0`, figures, tables, and code-blocks + are continuously numbered starting at ``1``. + * If :code-py:`1`, the numbering will be ``x.1``, ``x.2``, ... + with ``x`` representing the section number. + (If there is no top-level section, the prefix will not be added ). + This naturally applies only if section numbering has been activated via + the ``:numbered:`` option of the :rst:dir:`toctree` directive. + * If :code-py:`2`, the numbering will be ``x.y.1``, ``x.y.2``, ... + with ``x`` representing the section number and ``y`` the sub-section number. + If located directly under a section, there will be no ``y.`` prefix, + and if there is no top-level section, the prefix will not be added. + * Any other positive integer can be used, following the rules above. - .. index:: default; role + .. versionadded:: 1.3 - The name of a reST role (builtin or Sphinx extension) to use as the default - role, that is, for text marked up ```like this```. This can be set to - ``'py:obj'`` to make ```filter``` a cross-reference to the Python function - "filter". The default is ``None``, which doesn't reassign the default role. + .. versionchanged:: 1.7 + The LaTeX builder obeys this setting + if :confval:`numfig` is set to :code-py:`True`. - The default role can always be set within individual documents using the - standard reST :dudir:`default-role` directive. - .. versionadded:: 0.4 +Options for highlighting +------------------------ -.. confval:: keep_warnings +.. confval:: highlight_language + :type: :code-py:`str` + :default: :code-py:`'default'` - If true, keep warnings as "system message" paragraphs in the built - documents. Regardless of this setting, warnings are always written to the - standard error stream when ``sphinx-build`` is run. + The default language to highlight source code in. + The default is :code-py:`'default'`, + which suppresses warnings if highlighting as Python code fails. - The default is ``False``, the pre-0.5 behavior was to always keep them. + The value should be a valid Pygments lexer name, see + :ref:`code-examples` for more details. .. versionadded:: 0.5 -.. confval:: show_warning_types - - If ``True``, the type of each warning is added as a suffix to the warning message, - e.g., ``WARNING: [...] [index]`` or ``WARNING: [...] [toc.circular]``. - The default is ``False``. + .. versionchanged:: 1.4 + The default is now :code-py:`'default'`. - .. versionadded:: 7.3.0 +.. confval:: highlight_options + :type: :code-py:`dict[str, dict[str, Any]]` + :default: :code-py:`{}` -.. confval:: suppress_warnings + A dictionary that maps Pygments lexer names to their options. + These are lexer-specific; for the options understood by each, + see the `Pygments documentation <https://pygments.org/docs/lexers>`_. - A list of warning types to suppress arbitrary warning messages. + Example: - Sphinx core supports following warning types: + .. code-block:: python - * ``app.add_node`` - * ``app.add_directive`` - * ``app.add_role`` - * ``app.add_generic_role`` - * ``app.add_source_parser`` - * ``config.cache`` - * ``download.not_readable`` - * ``epub.unknown_project_files`` - * ``epub.duplicated_toc_entry`` - * ``i18n.inconsistent_references`` - * ``index`` - * ``image.not_readable`` - * ``ref.term`` - * ``ref.ref`` - * ``ref.numref`` - * ``ref.keyword`` - * ``ref.option`` - * ``ref.citation`` - * ``ref.footnote`` - * ``ref.doc`` - * ``ref.python`` - * ``misc.highlighting_failure`` - * ``toc.circular`` - * ``toc.excluded`` - * ``toc.not_readable`` - * ``toc.secnum`` + highlight_options = { + 'default': {'stripall': True}, + 'php': {'startinline': True}, + } - Extensions can also define their own warning types. - Those defined by the first-party ``sphinx.ext`` extensions are: + .. versionadded:: 1.3 + .. versionchanged:: 3.5 - * ``autodoc`` - * ``autodoc.import_object`` - * ``autosectionlabel.<document name>`` - * ``autosummary`` - * ``intersphinx.external`` + Allow configuring highlight options for multiple lexers. - You can choose from these types. You can also give only the first - component to exclude all warnings attached to it. +.. confval:: pygments_style + :type: :code-py:`str` + :default: :code-py:`'sphinx'` - .. versionadded:: 1.4 + The style name to use for Pygments highlighting of source code. + If not set, either the theme's default style + or :code-py:`'sphinx'` is selected for HTML output. - .. versionchanged:: 1.5 + .. versionchanged:: 0.3 + If the value is a fully-qualified name of a custom Pygments style class, + this is then used as custom style. - Added ``misc.highlighting_failure`` - .. versionchanged:: 1.5.1 +Options for HTTP requests +------------------------- - Added ``epub.unknown_project_files`` +.. confval:: tls_verify + :type: :code-py:`bool` + :default: :code-py:`True` - .. versionchanged:: 1.6 + If True, Sphinx verifies server certificates. - Added ``ref.footnote`` + .. versionadded:: 1.5 - .. versionchanged:: 2.1 +.. confval:: tls_cacerts + :type: :code-py:`str | dict[str, str]` + :default: :code-py:`''` - Added ``autosectionlabel.<document name>`` + A path to a certification file of CA or + a path to directory which contains the certificates. + This also allows a dictionary mapping + hostnames to the certificate file path. + The certificates are used to verify server certifications. - .. versionchanged:: 3.3.0 + .. versionadded:: 1.5 - Added ``epub.duplicated_toc_entry`` + .. tip:: - .. versionchanged:: 4.3 + Sphinx uses requests_ as a HTTP library internally. + If :confval:`!tls_cacerts` is not set, + Sphinx falls back to requests' default behaviour. + See :ref:`requests:verification` for further details. - Added ``toc.excluded`` and ``toc.not_readable`` + .. _requests: https://requests.readthedocs.io/ - .. versionadded:: 4.5 +.. confval:: user_agent + :type: :code-py:`str` + :default: :code-py:`'Mozilla/5.0 (X11; Linux x86_64; rv:100.0) Gecko/20100101 \ + Firefox/100.0 Sphinx/X.Y.Z'` - Added ``i18n.inconsistent_references`` + Set the User-Agent used by Sphinx for HTTP requests. - .. versionadded:: 7.1 + .. versionadded:: 2.3 - Added ``index`` warning type. - .. versionadded:: 7.3 +.. _intl-options: - Added ``config.cache`` warning type. +Options for internationalisation +-------------------------------- -.. confval:: needs_sphinx +These options influence Sphinx's *Native Language Support*. +See the documentation on :ref:`intl` for details. - If set to a ``major.minor`` version string like ``'1.1'``, Sphinx will - compare it with its version and refuse to build if it is too old. Default - is no requirement. +.. confval:: language + :type: :code-py:`str` + :default: :code-py:`'en'` + + The code for the language the documents are written in. + Any text automatically generated by Sphinx will be in that language. + Also, Sphinx will try to substitute individual paragraphs + from your documents with the translation sets obtained + from :confval:`locale_dirs`. + Sphinx will search language-specific figures named by + :confval:`figure_language_filename` + (e.g. the German version of ``myfigure.png`` will be ``myfigure.de.png`` + by default setting) + and substitute them for original figures. + In the LaTeX builder, a suitable language will be selected + as an option for the *Babel* package. - .. versionadded:: 1.0 + .. versionadded:: 0.5 .. versionchanged:: 1.4 - also accepts micro version string - -.. confval:: needs_extensions - - This value can be a dictionary specifying version requirements for - extensions in :confval:`extensions`, e.g. ``needs_extensions = - {'sphinxcontrib.something': '1.5'}``. The version strings should be in the - form ``major.minor``. Requirements do not have to be specified for all - extensions, only for those you want to check. - - This requires that the extension specifies its version to Sphinx (see - :ref:`dev-extensions` for how to do that). - - .. versionadded:: 1.3 - -.. confval:: manpages_url - - A URL to cross-reference :rst:role:`manpage` roles. If this is - defined to ``https://manpages.debian.org/{path}``, the - :literal:`:manpage:`man(1)`` role will link to - <https://manpages.debian.org/man(1)>. The patterns available are: - - * ``page`` - the manual page (``man``) - * ``section`` - the manual section (``1``) - * ``path`` - the original manual page and section specified (``man(1)``) - - This also supports manpages specified as ``man.1``. - - .. note:: This currently affects only HTML writers but could be - expanded in the future. - - .. versionadded:: 1.7 - -.. confval:: nitpicky - - If true, Sphinx will warn about *all* references where the target cannot be - found. Default is ``False``. You can activate this mode temporarily using - the :option:`-n <sphinx-build -n>` command-line switch. - - .. versionadded:: 1.0 - -.. confval:: nitpick_ignore - - A set or list of ``(type, target)`` tuples (by default empty) that should be - ignored when generating warnings in "nitpicky mode". Note that ``type`` - should include the domain name if present. Example entries would be - ``('py:func', 'int')`` or ``('envvar', 'LD_LIBRARY_PATH')``. - - .. versionadded:: 1.1 - .. versionchanged:: 6.2 - Changed allowable container types to a set, list, or tuple - -.. confval:: nitpick_ignore_regex - - An extended version of :confval:`nitpick_ignore`, which instead interprets - the ``type`` and ``target`` strings as regular expressions. Note, that the - regular expression must match the whole string (as if the ``^`` and ``$`` - markers were inserted). - - For example, ``(r'py:.*', r'foo.*bar\.B.*')`` will ignore nitpicky warnings - for all python entities that start with ``'foo'`` and have ``'bar.B'`` in - them, such as ``('py:const', 'foo_package.bar.BAZ_VALUE')`` or - ``('py:class', 'food.bar.Barman')``. - - .. versionadded:: 4.1 - .. versionchanged:: 6.2 - Changed allowable container types to a set, list, or tuple + Support figure substitution -.. confval:: numfig + .. versionchanged:: 5.0 + The default is now :code-py:`'en'` (previously :code-py:`None`). - If true, figures, tables and code-blocks are automatically numbered if they - have a caption. The :rst:role:`numref` role is enabled. - Obeyed so far only by HTML and LaTeX builders. Default is ``False``. + Currently supported languages by Sphinx are: + + * ``ar`` -- Arabic + * ``bg`` -- Bulgarian + * ``bn`` -- Bengali + * ``ca`` -- Catalan + * ``cak`` -- Kaqchikel + * ``cs`` -- Czech + * ``cy`` -- Welsh + * ``da`` -- Danish + * ``de`` -- German + * ``el`` -- Greek + * ``en`` -- English (default) + * ``eo`` -- Esperanto + * ``es`` -- Spanish + * ``et`` -- Estonian + * ``eu`` -- Basque + * ``fa`` -- Iranian + * ``fi`` -- Finnish + * ``fr`` -- French + * ``he`` -- Hebrew + * ``hi`` -- Hindi + * ``hi_IN`` -- Hindi (India) + * ``hr`` -- Croatian + * ``hu`` -- Hungarian + * ``id`` -- Indonesian + * ``it`` -- Italian + * ``ja`` -- Japanese + * ``ko`` -- Korean + * ``lt`` -- Lithuanian + * ``lv`` -- Latvian + * ``mk`` -- Macedonian + * ``nb_NO`` -- Norwegian Bokmal + * ``ne`` -- Nepali + * ``nl`` -- Dutch + * ``pl`` -- Polish + * ``pt`` -- Portuguese + * ``pt_BR`` -- Brazilian Portuguese + * ``pt_PT`` -- European Portuguese + * ``ro`` -- Romanian + * ``ru`` -- Russian + * ``si`` -- Sinhala + * ``sk`` -- Slovak + * ``sl`` -- Slovenian + * ``sq`` -- Albanian + * ``sr`` -- Serbian + * ``sr@latin`` -- Serbian (Latin) + * ``sr_RS`` -- Serbian (Cyrillic) + * ``sv`` -- Swedish + * ``ta`` -- Tamil + * ``te`` -- Telugu + * ``tr`` -- Turkish + * ``uk_UA`` -- Ukrainian + * ``ur`` -- Urdu + * ``vi`` -- Vietnamese + * ``zh_CN`` -- Simplified Chinese + * ``zh_TW`` -- Traditional Chinese + +.. confval:: locale_dirs + :type: :code-py:`list[str]` + :default: :code-py:`['locale']` + + Directories in which to search for additional message catalogs + (see :confval:`language`), relative to the source directory. + The directories on this path are searched by the :mod:`gettext` module. + + Internal messages are fetched from a text domain of ``sphinx``; + so if you add the directory :file:`./locale` to this setting, + the message catalogs + (compiled from ``.po`` format using :program:`msgfmt`) + must be in :file:`./locale/{language}/LC_MESSAGES/sphinx.mo`. + The text domain of individual documents + depends on :confval:`gettext_compact`. .. note:: + The :option:`-v option to sphinx-build <sphinx-build -v>` + is useful to check the :confval:`!locale_dirs` setting is working as expected. + If the message catalog directory not found, debug messages are emitted. - The LaTeX builder always assigns numbers whether this option is enabled - or not. + .. versionadded:: 0.5 - .. versionadded:: 1.3 + .. versionchanged:: 1.5 + Use ``locales`` directory as a default value -.. confval:: numfig_format +.. confval:: gettext_allow_fuzzy_translations + :type: :code-py:`bool` + :default: :code-py:`False` + + If True, "fuzzy" messages in the message catalogs are used for translation. + + .. versionadded:: 4.3 + +.. confval:: gettext_compact + :type: :code-py:`bool | str` + :default: :code-py:`True` + + * If :code-py:`True`, a document's text domain is + its docname if it is a top-level project file + and its very base directory otherwise. + * If :code-py:`False`, a document's text domain is + the docname, in full. + * If set to a string, every document's text domain is + set to this string, making all documents use single text domain. + + With :code-py:`gettext_compact = True`, the document + :file:`markup/code.rst` ends up in the ``markup`` text domain. + With this option set to :code-py:`False`, it is ``markup/code``. + With this option set to :code-py:`'sample'`, it is ``sample``. + + .. versionadded:: 1.1 + + .. versionchanged:: 3.3 + Allow string values. + +.. confval:: gettext_uuid + :type: :code-py:`bool` + :default: :code-py:`False` + + If :code-py:`True`, Sphinx generates UUID information + for version tracking in message catalogs. + It is used to: - A dictionary mapping ``'figure'``, ``'table'``, ``'code-block'`` and - ``'section'`` to strings that are used for format of figure numbers. - As a special character, ``%s`` will be replaced to figure number. + * Add a UUID line for each *msgid* in ``.pot`` files. + * Calculate similarity between new msgids and previously saved old msgids. + (This calculation can take a long time.) - Default is to use ``'Fig. %s'`` for ``'figure'``, ``'Table %s'`` for - ``'table'``, ``'Listing %s'`` for ``'code-block'`` and ``'Section %s'`` for - ``'section'``. + .. tip:: + If you want to accelerate the calculation, + you can use a third-party package (Levenshtein_) by running + :command:`pip install levenshtein`. + + .. _Levenshtein: https://pypi.org/project/Levenshtein/ .. versionadded:: 1.3 -.. confval:: numfig_secnum_depth +.. confval:: gettext_location + :type: :code-py:`bool` + :default: :code-py:`True` - - if set to ``0``, figures, tables and code-blocks are continuously numbered - starting at ``1``. - - if ``1`` (default) numbers will be ``x.1``, ``x.2``, ... with ``x`` - the section number (top level sectioning; no ``x.`` if no section). - This naturally applies only if section numbering has been activated via - the ``:numbered:`` option of the :rst:dir:`toctree` directive. - - ``2`` means that numbers will be ``x.y.1``, ``x.y.2``, ... if located in - a sub-section (but still ``x.1``, ``x.2``, ... if located directly under a - section and ``1``, ``2``, ... if not in any top level section.) - - etc... + If :code-py:`True`, Sphinx generates location information + for messages in message catalogs. .. versionadded:: 1.3 - .. versionchanged:: 1.7 - The LaTeX builder obeys this setting (if :confval:`numfig` is set to - ``True``). +.. confval:: gettext_auto_build + :type: :code-py:`bool` + :default: :code-py:`True` -.. confval:: smartquotes + If :code-py:`True`, Sphinx builds a ``.mo`` file + for each translation catalog file. - If true, the `Docutils Smart Quotes transform`__, originally based on - `SmartyPants`__ (limited to English) and currently applying to many - languages, will be used to convert quotes and dashes to typographically - correct entities. Default: ``True``. + .. versionadded:: 1.3 - __ https://docutils.sourceforge.io/docs/user/smartquotes.html - __ https://daringfireball.net/projects/smartypants/ +.. confval:: gettext_additional_targets + :type: :code-py:`set[str] | Sequence[str]` + :default: :code-py:`[]` - .. versionadded:: 1.6.6 - It replaces deprecated :confval:`html_use_smartypants`. - It applies by default to all builders except ``man`` and ``text`` - (see :confval:`smartquotes_excludes`.) + Enable ``gettext`` translation for certain element types. + Example: - A `docutils.conf`__ file located in the configuration directory (or a - global :file:`~/.docutils` file) is obeyed unconditionally if it - *deactivates* smart quotes via the corresponding `Docutils option`__. But - if it *activates* them, then :confval:`smartquotes` does prevail. + .. code-block:: python - __ https://docutils.sourceforge.io/docs/user/config.html - __ https://docutils.sourceforge.io/docs/user/config.html#smart-quotes + gettext_additional_targets = {'literal-block', 'image'} -.. confval:: smartquotes_action + The following element types are supported: - This string customizes the Smart Quotes transform. See the file - :file:`smartquotes.py` at the `Docutils repository`__ for details. The - default ``'qDe'`` educates normal **q**\ uote characters ``"``, ``'``, - em- and en-**D**\ ashes ``---``, ``--``, and **e**\ llipses ``...``. + * :code-py:`'index'` -- index terms + * :code-py:`'literal-block'` -- literal blocks + (``::`` annotation and ``code-block`` directive) + * :code-py:`'doctest-block'` -- doctest block + * :code-py:`'raw'` -- raw content + * :code-py:`'image'` -- image/figure uri - .. versionadded:: 1.6.6 + .. versionadded:: 1.3 + .. versionchanged:: 4.0 + The alt text for images is translated by default. + .. versionchanged:: 7.4 + Permit and prefer a set type. - __ https://sourceforge.net/p/docutils/code/HEAD/tree/trunk/docutils/ +.. confval:: figure_language_filename + :type: :code-py:`str` + :default: :code-py:`'{root}.{language}{ext}'` -.. confval:: smartquotes_excludes + The filename format for language-specific figures. + The available format tokens are: - This is a ``dict`` whose default is:: + * ``{root}``: the filename, including any path component, + without the file extension. + For example: ``images/filename``. + * ``{path}``: the directory path component of the filename, + with a trailing slash if non-empty. + For example: ``images/``. + * ``{basename}``: the filename without the directory path + or file extension components. + For example: ``filename``. + * ``{ext}``: the file extension. + For example: ``.png``. + * ``{language}``: the translation language. + For example: ``en``. + * ``{docpath}``: the directory path component for the current document, + with a trailing slash if non-empty. + For example: ``dirname/``. + + By default, an image directive :code-rst:`.. image:: images/filename.png`, + using an image at :file:`images/filename.png`, + will use the language-specific figure filename + :file:`images/filename.en.png`. + + If :confval:`!figure_language_filename` is set as below, + the language-specific figure filename will be + :file:`images/en/filename.png` instead. - {'languages': ['ja'], 'builders': ['man', 'text']} + .. code-block:: python - Each entry gives a sufficient condition to ignore the - :confval:`smartquotes` setting and deactivate the Smart Quotes transform. - Accepted keys are as above ``'builders'`` or ``'languages'``. - The values are lists. + figure_language_filename = '{path}{language}/{basename}{ext}' - .. note:: Currently, in case of invocation of :program:`make` with multiple - targets, the first target name is the only one which is tested against - the ``'builders'`` entry and it decides for all. Also, a ``make text`` - following ``make html`` needs to be issued in the form ``make text - O="-E"`` to force re-parsing of source files, as the cached ones are - already transformed. On the other hand the issue does not arise with - direct usage of :program:`sphinx-build` as it caches - (in its default usage) the parsed source files in per builder locations. + .. versionadded:: 1.4 - .. hint:: An alternative way to effectively deactivate (or customize) the - smart quotes for a given builder, for example ``latex``, is to use - ``make`` this way: + .. versionchanged:: 1.5 + Added ``{path}`` and ``{basename}`` tokens. - .. code-block:: console + .. versionchanged:: 3.2 + Added ``{docpath}`` token. + +.. confval:: translation_progress_classes + :type: :code-py:`bool | 'translated' | 'untranslated'` + :default: :code-py:`False` - make latex O="-D smartquotes_action=" + Control which, if any, classes are added to indicate translation progress. + This setting would likely only be used by translators of documentation, + in order to quickly indicate translated and untranslated content. - This can follow some ``make html`` with no problem, in contrast to the - situation from the prior note. + :code-py:`True` + Add ``translated`` and ``untranslated`` classes + to all nodes with translatable content. + :code-py:`'translated'` + Only add the ``translated`` class. + :code-py:`'untranslated'` + Only add the ``untranslated`` class. + :code-py:`False` + Do not add any classes to indicate translation progress. - .. versionadded:: 1.6.6 + .. versionadded:: 7.1 -.. confval:: user_agent - A User-Agent of Sphinx. It is used for a header on HTTP access (ex. - linkcheck, intersphinx and so on). Default is ``"Sphinx/X.Y.Z - requests/X.Y.Z python/X.Y.Z"``. +Options for markup +------------------ - .. versionadded:: 2.3 +.. confval:: default_role + :type: :code-py:`str` + :default: :code-py:`None` -.. confval:: tls_verify + .. index:: default; role - If true, Sphinx verifies server certifications. Default is ``True``. + The name of a reStructuredText role (builtin or Sphinx extension) + to use as the default role, that is, for text marked up ```like this```. + This can be set to :code-py:`'py:obj'` to make ```filter``` + a cross-reference to the Python function "filter". - .. versionadded:: 1.5 + The default role can always be set within individual documents using + the standard reStructuredText :dudir:`default-role` directive. -.. confval:: tls_cacerts + .. versionadded:: 0.4 - A path to a certification file of CA or a path to directory which - contains the certificates. This also allows a dictionary mapping - hostname to the path to certificate file. - The certificates are used to verify server certifications. +.. confval:: keep_warnings + :type: :code-py:`bool` + :default: :code-py:`False` - .. versionadded:: 1.5 + Keep warnings as "system message" paragraphs in the rendered documents. + Warnings are always written to the standard error stream + when :program:`sphinx-build` is run, regardless of this setting. - .. tip:: Sphinx uses requests_ as a HTTP library internally. - Therefore, Sphinx refers a certification file on the - directory pointed ``REQUESTS_CA_BUNDLE`` environment - variable if ``tls_cacerts`` not set. + .. versionadded:: 0.5 - .. _requests: https://requests.readthedocs.io/en/master/ +.. confval:: option_emphasise_placeholders + :type: :code-py:`bool` + :default: :code-py:`False` -.. confval:: today - today_fmt + When enabled, emphasise placeholders in :rst:dir:`option` directives. + To display literal braces, escape with a backslash (``\{``). + For example, ``option_emphasise_placeholders=True`` + and ``.. option:: -foption={TYPE}`` would render with ``TYPE`` emphasised. - These values determine how to format the current date, used as the - replacement for ``|today|``. + .. versionadded:: 5.1 - * If you set :confval:`today` to a non-empty value, it is used. - * Otherwise, the current time is formatted using :func:`time.strftime` and - the format given in :confval:`today_fmt`. +.. confval:: primary_domain + :type: :code-py:`str` + :default: :code-py:`'py'` - The default is now :confval:`today` and a :confval:`today_fmt` of ``'%b %d, - %Y'`` (or, if translation is enabled with :confval:`language`, an equivalent - format for the selected locale). + .. index:: pair: default; domain -.. confval:: highlight_language + The name of the default :doc:`domain </usage/domains/index>`. + Can also be :code-py:`None` to disable a default domain. + The default is :code-py:`'py'`, for the Python domain. + + Those objects in other domain + (whether the domain name is given explicitly, + or selected by a :rst:dir:`default-domain` directive) + will have the domain name explicitly prepended when named + (e.g., when the default domain is C, + Python functions will be named "Python function", not just "function"). + Example: - The default language to highlight source code in. The default is - ``'default'``. It is similar to ``'python3'``; it is mostly a superset of - ``'python'`` but it fallbacks to ``'none'`` without warning if failed. - ``'python3'`` and other languages will emit warning if failed. + .. code-block:: python - The value should be a valid Pygments lexer name, see - :ref:`code-examples` for more details. + primary_domain = 'cpp' - .. versionadded:: 0.5 + .. versionadded:: 1.0 - .. versionchanged:: 1.4 - The default is now ``'default'``. If you prefer Python 2 only - highlighting, you can set it back to ``'python'``. +.. confval:: rst_epilog + :type: :code-py:`str` + :default: :code-py:`''` -.. confval:: highlight_options + .. index:: pair: global; substitutions - A dictionary that maps language names to options for the lexer modules of - Pygments. These are lexer-specific; for the options understood by each, - see the `Pygments documentation <https://pygments.org/docs/lexers>`_. + A string of reStructuredText that will be included + at the end of every source file that is read. + This is a possible place to add substitutions that + should be available in every file (another being :confval:`rst_prolog`). + Example: - Example:: + .. code-block:: python - highlight_options = { - 'default': {'stripall': True}, - 'php': {'startinline': True}, - } + rst_epilog = """ + .. |psf| replace:: Python Software Foundation + """ - A single dictionary of options are also allowed. Then it is recognized - as options to the lexer specified by :confval:`highlight_language`:: + .. versionadded:: 0.6 - # configuration for the ``highlight_language`` - highlight_options = {'stripall': True} +.. confval:: rst_prolog + :type: :code-py:`str` + :default: :code-py:`''` - .. versionadded:: 1.3 - .. versionchanged:: 3.5 + .. index:: pair: global; substitutions - Allow to configure highlight options for multiple languages + A string of reStructuredText that will be included + at the beginning of every source file that is read. + This is a possible place to add substitutions that + should be available in every file (another being :confval:`rst_epilog`). + Example: -.. confval:: pygments_style + .. code-block:: python - The style name to use for Pygments highlighting of source code. If not set, - either the theme's default style or ``'sphinx'`` is selected for HTML - output. + rst_prolog = """ + .. |psf| replace:: Python Software Foundation + """ - .. versionchanged:: 0.3 - If the value is a fully-qualified name of a custom Pygments style class, - this is then used as custom style. + .. versionadded:: 1.0 -.. confval:: maximum_signature_line_length +.. confval:: show_authors + :type: :code-py:`bool` + :default: :code-py:`False` - If a signature's length in characters exceeds the number set, each - parameter within the signature will be displayed on an individual logical - line. + A boolean that decides whether :rst:dir:`codeauthor` and + :rst:dir:`sectionauthor` directives produce any output in the built files. - When ``None`` (the default), there is no maximum length and the entire - signature will be displayed on a single logical line. +.. confval:: trim_footnote_reference_space + :type: :code-py:`bool` + :default: :code-py:`False` - A 'logical line' is similar to a hard line break---builders or themes may - choose to 'soft wrap' a single logical line, and this setting does not affect - that behaviour. + Trim spaces before footnote references that are + necessary for the reStructuredText parser to recognise the footnote, + but do not look too nice in the output. - Domains may provide options to suppress any hard wrapping on an individual - object directive, such as seen in the C, C++, and Python domains (e.g. - :rst:dir:`py:function:single-line-parameter-list`). + .. versionadded:: 0.6 - .. versionadded:: 7.1 -.. confval:: add_function_parentheses +.. _math-options: - A boolean that decides whether parentheses are appended to function and - method role text (e.g. the content of ``:func:`input```) to signify that the - name is callable. Default is ``True``. +Options for Maths +----------------- -.. confval:: add_module_names +These options control maths markup and notation. - A boolean that decides whether module names are prepended to all - :term:`object` names (for object types where a "module" of some kind is - defined), e.g. for :rst:dir:`py:function` directives. Default is ``True``. +.. confval:: math_eqref_format + :type: :code-py:`str` + :default: :code-py:`'({number})'` -.. confval:: toc_object_entries + A string used for formatting the labels of references to equations. + The ``{number}`` place-holder stands for the equation number. - Create table of contents entries for domain objects (e.g. functions, classes, - attributes, etc.). Default is ``True``. + Example: ``'Eq.{number}'`` gets rendered as, for example, ``Eq.10``. -.. confval:: toc_object_entries_show_parents + .. versionadded:: 1.7 - A string that determines how domain objects (e.g. functions, classes, - attributes, etc.) are displayed in their table of contents entry. +.. confval:: math_number_all + :type: :code-py:`bool` + :default: :code-py:`False` - Use ``domain`` to allow the domain to determine the appropriate number of - parents to show. For example, the Python domain would show ``Class.method()`` - and ``function()``, leaving out the ``module.`` level of parents. - This is the default setting. + Force all displayed equations to be numbered. + Example: - Use ``hide`` to only show the name of the element without any parents - (i.e. ``method()``). + .. code-block:: python - Use ``all`` to show the fully-qualified name for the object - (i.e. ``module.Class.method()``), displaying all parents. + math_number_all = True - .. versionadded:: 5.2 + .. versionadded:: 1.4 -.. confval:: show_authors +.. confval:: math_numfig + :type: :code-py:`bool` + :default: :code-py:`True` - A boolean that decides whether :rst:dir:`codeauthor` and - :rst:dir:`sectionauthor` directives produce any output in the built files. + If :code-py:`True`, displayed math equations are numbered across pages + when :confval:`numfig` is enabled. + The :confval:`numfig_secnum_depth` setting is respected. + The :rst:role:`eq`, not :rst:role:`numref`, role + must be used to reference equation numbers. -.. confval:: modindex_common_prefix + .. versionadded:: 1.7 - A list of prefixes that are ignored for sorting the Python module index - (e.g., if this is set to ``['foo.']``, then ``foo.bar`` is shown under ``B``, - not ``F``). This can be handy if you document a project that consists of a - single package. Works only for the HTML builder currently. Default is - ``[]``. +.. confval:: math_numsep + :type: :code-py:`str` + :default: :code-py:`'.'` - .. versionadded:: 0.6 + A string that defines the separator between section numbers + and the equation number when :confval:`numfig` is enabled and + :confval:`numfig_secnum_depth` is positive. -.. confval:: trim_footnote_reference_space + Example: :code-py:`'-'` gets rendered as ``1.2-3``. - Trim spaces before footnote references that are necessary for the reST - parser to recognize the footnote, but do not look too nice in the output. + .. versionadded:: 7.4 - .. versionadded:: 0.6 -.. confval:: trim_doctest_flags +Options for the nitpicky mode +----------------------------- - If true, doctest flags (comments looking like ``# doctest: FLAG, ...``) at - the ends of lines and ``<BLANKLINE>`` markers are removed for all code - blocks showing interactive Python sessions (i.e. doctests). Default is - ``True``. See the extension :mod:`~sphinx.ext.doctest` for more - possibilities of including doctests. +.. confval:: nitpicky + :type: :code-py:`bool` + :default: :code-py:`False` + + Enables nitpicky mode if :code-py:`True`. + In nitpicky mode, Sphinx will warn about *all* references + where the target cannot be found. + This is recommended for new projects as it ensures that all references + are to valid targets. + + You can activate this mode temporarily using + the :option:`--nitpicky <sphinx-build --nitpicky>` command-line option. + See :confval:`nitpick_ignore` for a way to mark missing references + as "known missing". + + .. code-block:: python + + nitpicky = True .. versionadded:: 1.0 - .. versionchanged:: 1.1 - Now also removes ``<BLANKLINE>``. + +.. confval:: nitpick_ignore + :type: :code-py:`set[tuple[str, str]] | Sequence[tuple[str, str]]` + :default: :code-py:`()` + + A set or list of :code-py:`(warning_type, target)` tuples + that should be ignored when generating warnings + in :confval:`"nitpicky mode" <nitpicky>`. + Note that ``warning_type`` should include the domain name if present. + Example: + + .. code-block:: python + + nitpick_ignore = { + ('py:func', 'int'), + ('envvar', 'LD_LIBRARY_PATH'), + } + + .. versionadded:: 1.1 + .. versionchanged:: 6.2 + Changed allowable container types to a set, list, or tuple + +.. confval:: nitpick_ignore_regex + :type: :code-py:`set[tuple[str, str]] | Sequence[tuple[str, str]]` + :default: :code-py:`()` + + An extended version of :confval:`nitpick_ignore`, + which instead interprets the ``warning_type`` and ``target`` strings + as regular expressions. + Note that the regular expression must match the whole string + (as if the ``^`` and ``$`` markers were inserted). + + For example, ``(r'py:.*', r'foo.*bar\.B.*')`` will ignore nitpicky warnings + for all python entities that start with ``'foo'`` + and have ``'bar.B'`` in them, + such as :code-py:`('py:const', 'foo_package.bar.BAZ_VALUE')` + or :code-py:`('py:class', 'food.bar.Barman')`. + + .. versionadded:: 4.1 + .. versionchanged:: 6.2 + Changed allowable container types to a set, list, or tuple + + +Options for object signatures +----------------------------- + +.. confval:: add_function_parentheses + :type: :code-py:`bool` + :default: :code-py:`True` + + A boolean that decides whether parentheses are appended to function and + method role text (e.g. the content of ``:func:`input```) to signify that the + name is callable. + +.. confval:: maximum_signature_line_length + :type: :code-py:`int | None` + :default: :code-py:`None` + + If a signature's length in characters exceeds the number set, + each parameter within the signature will be displayed on + an individual logical line. + + When :code-py:`None`, there is no maximum length and the entire + signature will be displayed on a single logical line. + + A 'logical line' is similar to a hard line break---builders or themes + may choose to 'soft wrap' a single logical line, + and this setting does not affect that behaviour. + + Domains may provide options to suppress any hard wrapping + on an individual object directive, + such as seen in the C, C++, and Python domains + (e.g. :rst:dir:`py:function:single-line-parameter-list`). + + .. versionadded:: 7.1 .. confval:: strip_signature_backslash + :type: :code-py:`bool` + :default: :code-py:`False` - Default is ``False``. When backslash stripping is enabled then every occurrence of ``\\`` in a domain directive will be changed to ``\``, even within string literals. This was the behaviour before version 3.0, and setting this variable to - ``True`` will reinstate that behaviour. + :code-py:`True` will reinstate that behaviour. .. versionadded:: 3.0 -.. confval:: option_emphasise_placeholders +.. confval:: toc_object_entries + :type: :code-py:`bool` + :default: :code-py:`True` - Default is ``False``. - When enabled, emphasise placeholders in :rst:dir:`option` directives. - To display literal braces, escape with a backslash (``\{``). For example, - ``option_emphasise_placeholders=True`` and ``.. option:: -foption={TYPE}`` would - render with ``TYPE`` emphasised. + Create table of contents entries for domain objects + (e.g. functions, classes, attributes, etc.). + + .. versionadded:: 5.2 + +.. confval:: toc_object_entries_show_parents + :type: :code-py:`'domain' | 'hide' | 'all'` + :default: :code-py:`'domain'` + + A string that determines how domain objects + (functions, classes, attributes, etc.) + are displayed in their table of contents entry. + + Use :code-py:`'domain'` to allow the domain to determine + the appropriate number of parents to show. + For example, the Python domain would show :code-py:`Class.method()` + and :code-py:`function()`, + leaving out the :code-py:`module.` level of parents. + + Use :code-py:`'hide'` to only show the name of the element + without any parents (i.e. :code-py:`method()`). + + Use :code-py:`'all'` to show the fully-qualified name for the object + (i.e. :code-py:`module.Class.method()`), displaying all parents. + + .. versionadded:: 5.2 + + +Options for source files +------------------------ + +.. confval:: exclude_patterns + :type: :code-py:`Sequence[str]` + :default: :code-py:`()` + + A list of `glob-style patterns`_ that should be excluded when looking for + source files. + They are matched against the source file names + relative to the source directory, + using slashes as directory separators on all platforms. + :confval:`exclude_patterns` has priority over :confval:`include_patterns`. + + Example patterns: + + * :code-py:`'library/xml.rst'` -- ignores the ``library/xml.rst`` file + * :code-py:`'library/xml'` -- ignores the ``library/xml`` directory + * :code-py:`'library/xml*'` -- ignores all files and directories starting with + :code-py:`library/xml` + * :code-py:`'**/.git'` -- ignores all ``.git`` directories + * :code-py:`'Thumbs.db'` -- ignores all ``Thumbs.db`` files + + :confval:`exclude_patterns` is also consulted when looking for static files + in :confval:`html_static_path` and :confval:`html_extra_path`. + + .. versionadded:: 1.0 + +.. confval:: include_patterns + :type: :code-py:`Sequence[str]` + :default: :code-py:`('**',)` + + A list of `glob-style patterns`_ that are used to find source files. + They are matched against the source file + names relative to the source directory, + using slashes as directory separators on all platforms. + By default, all files are recursively included from the source directory. + :confval:`exclude_patterns` has priority over :confval:`include_patterns`. + + Example patterns: + + * :code-py:`'**'` -- all files in the source directory and subdirectories, + recursively + * :code-py:`'library/xml'` -- just the ``library/xml`` directory + * :code-py:`'library/xml*'` -- all files and directories starting with + ``library/xml`` + * :code-py:`'**/doc'` -- all ``doc`` directories (this might be useful if + documentation is co-located with source files) .. versionadded:: 5.1 -.. _intl-options: +.. confval:: master_doc + root_doc + :type: :code-py:`str` + :default: :code-py:`'index'` + + Sphinx builds a tree of documents based on the :rst:dir:`toctree` directives + contained within the source files. + This sets the name of the document containing the master ``toctree`` directive, + and hence the root of the entire tree. + Example: -Options for internationalization --------------------------------- + .. code-block:: python -These options influence Sphinx's *Native Language Support*. See the -documentation on :ref:`intl` for details. + master_doc = 'contents' -.. confval:: language + .. versionchanged:: 2.0 + Default is :code-py:`'index'` (previously :code-py:`'contents'`). - The code for the language the docs are written in. Any text automatically - generated by Sphinx will be in that language. Also, Sphinx will try to - substitute individual paragraphs from your documents with the translation - sets obtained from :confval:`locale_dirs`. Sphinx will search - language-specific figures named by :confval:`figure_language_filename` - (e.g. the German version of ``myfigure.png`` will be ``myfigure.de.png`` - by default setting) and substitute them for original figures. In the LaTeX - builder, a suitable language will be selected as an option for the *Babel* - package. Default is ``'en'``. + .. versionadded:: 4.0 + The :confval:`!root_doc` alias. + +.. confval:: source_encoding + :type: :code-py:`str` + :default: :code-py:`'utf-8-sig'` + + The file encoding of all source files. + The recommended encoding is ``'utf-8-sig'``. .. versionadded:: 0.5 - .. versionchanged:: 1.4 +.. confval:: source_suffix + :type: :code-py:`dict[str, str] | Sequence[str] | str` + :default: :code-py:`{'.rst': 'restructuredtext'}` - Support figure substitution + A dictionary mapping the file extensions (suffixes) + of source files to their file types. + Sphinx considers all files files with suffixes in :code-py:`source_suffix` + to be source files. + Example: - .. versionchanged:: 5.0 + .. code-block:: python - Currently supported languages by Sphinx are: + source_suffix = { + '.rst': 'restructuredtext', + '.txt': 'restructuredtext', + '.md': 'markdown', + } - * ``ar`` -- Arabic - * ``bg`` -- Bulgarian - * ``bn`` -- Bengali - * ``ca`` -- Catalan - * ``cak`` -- Kaqchikel - * ``cs`` -- Czech - * ``cy`` -- Welsh - * ``da`` -- Danish - * ``de`` -- German - * ``el`` -- Greek - * ``en`` -- English (default) - * ``eo`` -- Esperanto - * ``es`` -- Spanish - * ``et`` -- Estonian - * ``eu`` -- Basque - * ``fa`` -- Iranian - * ``fi`` -- Finnish - * ``fr`` -- French - * ``he`` -- Hebrew - * ``hi`` -- Hindi - * ``hi_IN`` -- Hindi (India) - * ``hr`` -- Croatian - * ``hu`` -- Hungarian - * ``id`` -- Indonesian - * ``it`` -- Italian - * ``ja`` -- Japanese - * ``ko`` -- Korean - * ``lt`` -- Lithuanian - * ``lv`` -- Latvian - * ``mk`` -- Macedonian - * ``nb_NO`` -- Norwegian Bokmal - * ``ne`` -- Nepali - * ``nl`` -- Dutch - * ``pl`` -- Polish - * ``pt`` -- Portuguese - * ``pt_BR`` -- Brazilian Portuguese - * ``pt_PT`` -- European Portuguese - * ``ro`` -- Romanian - * ``ru`` -- Russian - * ``si`` -- Sinhala - * ``sk`` -- Slovak - * ``sl`` -- Slovenian - * ``sq`` -- Albanian - * ``sr`` -- Serbian - * ``sr@latin`` -- Serbian (Latin) - * ``sr_RS`` -- Serbian (Cyrillic) - * ``sv`` -- Swedish - * ``ta`` -- Tamil - * ``te`` -- Telugu - * ``tr`` -- Turkish - * ``uk_UA`` -- Ukrainian - * ``ur`` -- Urdu - * ``vi`` -- Vietnamese - * ``zh_CN`` -- Simplified Chinese - * ``zh_TW`` -- Traditional Chinese + By default, Sphinx only supports the :code-py:`'restructuredtext'` file type. + Further file types can be added with extensions that register different + source file parsers, such as `MyST-Parser`_. + Refer to the extension's documentation to see which file types it supports. -.. confval:: locale_dirs + .. _MyST-Parser: https://myst-parser.readthedocs.io/ - .. versionadded:: 0.5 + If the value is a string or sequence of strings, + Sphinx will consider that they are all :code-py:`'restructuredtext'` files. - Directories in which to search for additional message catalogs (see - :confval:`language`), relative to the source directory. The directories on - this path are searched by the standard :mod:`gettext` module. + .. note:: File extensions must begin with a dot (``'.'``). - Internal messages are fetched from a text domain of ``sphinx``; so if you - add the directory :file:`./locale` to this setting, the message catalogs - (compiled from ``.po`` format using :program:`msgfmt`) must be in - :file:`./locale/{language}/LC_MESSAGES/sphinx.mo`. The text domain of - individual documents depends on :confval:`gettext_compact`. + .. versionchanged:: 1.3 + Support a list of file extensions. - The default is ``['locales']``. + .. versionchanged:: 1.8 + Change to a map of file extensions to file types. - .. note:: The :option:`-v option for sphinx-build command <sphinx-build -v>` - is useful to check the locale_dirs config works as expected. It - emits debug messages if message catalog directory not found. - .. versionchanged:: 1.5 - Use ``locales`` directory as a default value +Options for smart quotes +------------------------ -.. confval:: gettext_allow_fuzzy_translations +.. confval:: smartquotes + :type: :code-py:`bool` + :default: :code-py:`True` - If true, "fuzzy" messages in the message catalogs are used for translation. - The default is ``False``. + If :code-py:`True`, the `Smart Quotes transform`__ + will be used to convert quotation marks and dashes + to typographically correct entities. - .. versionadded:: 4.3 + __ https://docutils.sourceforge.io/docs/user/smartquotes.html -.. confval:: gettext_compact + .. versionadded:: 1.6.6 + Replaces the now-removed :confval:`!html_use_smartypants`. + It applies by default to all builders except ``man`` and ``text`` + (see :confval:`smartquotes_excludes`.) - .. versionadded:: 1.1 + .. note:: - If true, a document's text domain is its docname if it is a top-level - project file and its very base directory otherwise. + A `docutils.conf`__ file located in the :term:`configuration directory` + (or a global :file:`~/.docutils` file) is obeyed unconditionally if it + *deactivates* smart quotes via the corresponding `Docutils option`__. + But if it *activates* them, then :confval:`smartquotes` does prevail. - If set to string, all document's text domain is this string, making all - documents use single text domain. + __ https://docutils.sourceforge.io/docs/user/config.html + __ https://docutils.sourceforge.io/docs/user/config.html#smart-quotes - By default, the document ``markup/code.rst`` ends up in the ``markup`` text - domain. With this option set to ``False``, it is ``markup/code``. +.. confval:: smartquotes_action + :type: :code-py:`str` + :default: :code-py:`'qDe'` + + Customise the Smart Quotes transform. + See below for the permitted codes. + The default :code-py:`'qDe'` educates + normal **q**\ uote characters ``"``, ``'``, + em- and en-**D**\ ashes ``---``, ``--``, + and **e**\ llipses ``...``.. + + :code-py:`'q'` + Convert quotation marks + :code-py:`'b'` + Convert backtick quotation marks + (:literal:`\`\`double''` only) + :code-py:`'B'` + Convert backtick quotation marks + (:literal:`\`\`double''` and :literal:`\`single'`) + :code-py:`'d'` + Convert dashes + (convert ``--`` to em-dashes and ``---`` to en-dashes) + :code-py:`'D'` + Convert dashes (old school) + (convert ``--`` to en-dashes and ``---`` to em-dashes) + :code-py:`'i'` + Convert dashes (inverted old school) + (convert ``--`` to em-dashes and ``---`` to en-dashes) + :code-py:`'e'` + Convert ellipses ``...`` + :code-py:`'w'` + Convert ``'"'`` entities to ``'"'`` - .. versionchanged:: 3.3 - The string value is now accepted. + .. versionadded:: 1.6.6 -.. confval:: gettext_uuid +.. confval:: smartquotes_excludes + :type: :code-py:`dict[str, list[str]]` + :default: :code-py:`{'languages': ['ja'], 'builders': ['man', 'text']}` - If true, Sphinx generates uuid information for version tracking in message - catalogs. It is used for: + Control when the Smart Quotes transform is disabled. + Permitted keys are :code-py:`'builders'` and :code-py:`'languages'`, and + The values are lists of strings. - * Add uid line for each msgids in .pot files. - * Calculate similarity between new msgids and previously saved old msgids. - This calculation takes a long time. + Each entry gives a sufficient condition to ignore the + :confval:`smartquotes` setting and deactivate the Smart Quotes transform. + Example: - If you want to accelerate the calculation, you can use - ``python-levenshtein`` 3rd-party package written in C by using - :command:`pip install python-levenshtein`. + .. code-block:: python - The default is ``False``. + smartquotes_excludes = { + 'languages': ['ja'], + 'builders': ['man', 'text'], + } - .. versionadded:: 1.3 + .. note:: -.. confval:: gettext_location + Currently, in case of invocation of :program:`make` with multiple + targets, the first target name is the only one which is tested against + the :code-py:`'builders'` entry and it decides for all. + Also, a ``make text`` following ``make html`` needs to be issued + in the form ``make text SPHINXOPTS="-E"`` to force re-parsing + of source files, as the cached ones are already transformed. + On the other hand the issue does not arise with + direct usage of :program:`sphinx-build` as it caches + (in its default usage) the parsed source files in per builder locations. - If true, Sphinx generates location information for messages in message - catalogs. + .. hint:: - The default is ``True``. + An alternative way to effectively deactivate (or customise) the + smart quotes for a given builder, for example ``latex``, + is to use ``make`` this way: - .. versionadded:: 1.3 + .. code-block:: console -.. confval:: gettext_auto_build + make latex SPHINXOPTS="-D smartquotes_action=" - If true, Sphinx builds mo file for each translation catalog files. + This can follow some ``make html`` with no problem, in contrast to the + situation from the prior note. - The default is ``True``. + .. versionadded:: 1.6.6 - .. versionadded:: 1.3 -.. confval:: gettext_additional_targets +Options for templating +---------------------- + +.. confval:: template_bridge + :type: :code-py:`str` + :default: :code-py:`''` - To specify names to enable gettext extracting and translation applying for - i18n additionally. You can specify below names: + A string with the fully-qualified name of a callable (or simply a class) + that returns an instance of :class:`~sphinx.application.TemplateBridge`. + This instance is then used to render HTML documents, + and possibly the output of other builders (currently the changes builder). + (Note that the template bridge must be made theme-aware + if HTML themes are to be used.) + Example: - :index: index terms - :literal-block: literal blocks (``::`` annotation and ``code-block`` directive) - :doctest-block: doctest block - :raw: raw content - :image: image/figure uri + .. code-block:: python - For example: ``gettext_additional_targets = ['literal-block', 'image']``. + template_bridge = 'module.CustomTemplateBridge' - The default is ``[]``. +.. confval:: templates_path + :type: :code-py:`Sequence[str]` + :default: :code-py:`()` - .. versionadded:: 1.3 - .. versionchanged:: 4.0 + A list of paths that contain extra templates + (or templates that overwrite builtin/theme-specific templates). + Relative paths are taken as relative to the :term:`configuration directory`. + Example: + + .. code-block:: python - The alt text for image is translated by default. + templates_path = ['.templates'] -.. confval:: figure_language_filename + .. versionchanged:: 1.3 + As these files are not meant to be built, + they are automatically excluded when discovering source files. + + +Options for warning control +--------------------------- + +.. confval:: show_warning_types + :type: :code-py:`bool` + :default: :code-py:`False` + + Add the type of each warning as a suffix to the warning message. + For example, ``WARNING: [...] [index]`` or ``WARNING: [...] [toc.circular]``. + This setting can be useful for determining which warnings types to include + in a :confval:`suppress_warnings` list. + + .. versionadded:: 7.3.0 + +.. confval:: suppress_warnings + :type: :code-py:`Sequence[str]` + :default: :code-py:`()` + + A list of warning codes to suppress arbitrary warning messages. + + By default, Sphinx supports the following warning codes: + + * ``app.add_node`` + * ``app.add_directive`` + * ``app.add_role`` + * ``app.add_generic_role`` + * ``app.add_source_parser`` + * ``config.cache`` + * ``docutils`` + * ``download.not_readable`` + * ``epub.unknown_project_files`` + * ``epub.duplicated_toc_entry`` + * ``i18n.inconsistent_references`` + * ``index`` + * ``image.not_readable`` + * ``ref.term`` + * ``ref.ref`` + * ``ref.numref`` + * ``ref.keyword`` + * ``ref.option`` + * ``ref.citation`` + * ``ref.footnote`` + * ``ref.doc`` + * ``ref.python`` + * ``misc.highlighting_failure`` + * ``toc.circular`` + * ``toc.excluded`` + * ``toc.no_title`` + * ``toc.not_readable`` + * ``toc.secnum`` - The filename format for language-specific figures. The default value is - ``{root}.{language}{ext}``. It will be expanded to - ``dirname/filename.en.png`` from ``.. image:: dirname/filename.png``. - The available format tokens are: + Extensions can also define their own warning types. + Those defined by the first-party ``sphinx.ext`` extensions are: - * ``{root}`` - the filename, including any path component, without the file - extension, e.g. ``dirname/filename`` - * ``{path}`` - the directory path component of the filename, with a trailing - slash if non-empty, e.g. ``dirname/`` - * ``{docpath}`` - the directory path component for the current document, with - a trailing slash if non-empty. - * ``{basename}`` - the filename without the directory path or file extension - components, e.g. ``filename`` - * ``{ext}`` - the file extension, e.g. ``.png`` - * ``{language}`` - the translation language, e.g. ``en`` + * ``autodoc`` + * ``autodoc.import_object`` + * ``autosectionlabel.<document name>`` + * ``autosummary`` + * ``autosummary.import_cycle`` + * ``intersphinx.external`` - For example, setting this to ``{path}{language}/{basename}{ext}`` will - expand to ``dirname/en/filename.png`` instead. + You can choose from these types. You can also give only the first + component to exclude all warnings attached to it. .. versionadded:: 1.4 .. versionchanged:: 1.5 - Added ``{path}`` and ``{basename}`` tokens. - - .. versionchanged:: 3.2 - Added ``{docpath}`` token. - -.. confval:: translation_progress_classes - - Control which, if any, classes are added to indicate translation progress. - This setting would likely only be used by translators of documentation, - in order to quickly indicate translated and untranslated content. - - * ``True``: add ``translated`` and ``untranslated`` classes - to all nodes with translatable content. - * ``translated``: only add the ``translated`` class. - * ``untranslated``: only add the ``untranslated`` class. - * ``False``: do not add any classes to indicate translation progress. - - Defaults to ``False``. - - .. versionadded:: 7.1 + Added ``misc.highlighting_failure`` -.. _math-options: + .. versionchanged:: 1.5.1 + Added ``epub.unknown_project_files`` -Options for Math ----------------- + .. versionchanged:: 1.6 + Added ``ref.footnote`` -These options influence Math notations. + .. versionchanged:: 2.1 + Added ``autosectionlabel.<document name>`` -.. confval:: math_number_all + .. versionchanged:: 3.3.0 + Added ``epub.duplicated_toc_entry`` - Set this option to ``True`` if you want all displayed math to be numbered. - The default is ``False``. + .. versionchanged:: 4.3 + Added ``toc.excluded`` and ``toc.not_readable`` -.. confval:: math_eqref_format + .. versionadded:: 4.5 + Added ``i18n.inconsistent_references`` - A string used for formatting the labels of references to equations. - The ``{number}`` place-holder stands for the equation number. + .. versionadded:: 7.1 + Added ``index``. - Example: ``'Eq.{number}'`` gets rendered as, for example, ``Eq.10``. + .. versionadded:: 7.3 + Added ``config.cache``. -.. confval:: math_numfig + .. versionadded:: 7.3 + Added ``toc.no_title``. - If ``True``, displayed math equations are numbered across pages when - :confval:`numfig` is enabled. The :confval:`numfig_secnum_depth` setting - is respected. The :rst:role:`eq`, not :rst:role:`numref`, role - must be used to reference equation numbers. Default is ``True``. - .. versionadded:: 1.7 +Builder options +=============== .. _html-options: @@ -1072,186 +1432,243 @@ These options influence Math notations. Options for HTML output ----------------------- -These options influence HTML as well as HTML Help output, and other builders -that use Sphinx's HTMLWriter class. +These options influence HTML output. +Various other builders are derived from the HTML output, +and also make use of these options. .. confval:: html_theme + :type: :code-py:`str` + :default: :code-py:`'alabaster'` - The "theme" that the HTML output should use. See the :doc:`section about - theming </usage/theming>`. The default is ``'alabaster'``. + The theme for HTML output. + See the :doc:`HTML theming section </usage/theming>`. .. versionadded:: 0.6 + .. versionchanged:: 1.3 + The default theme is now :code-py:`'alabaster'`. .. confval:: html_theme_options + :type: :code-py:`dict[str, Any]` + :default: :code-py:`{}` - A dictionary of options that influence the look and feel of the selected - theme. These are theme-specific. For the options understood by the builtin - themes, see :ref:`this section <builtin-themes>`. + A dictionary of options that influence the + look and feel of the selected theme. + These are theme-specific. + The options understood by the :ref:`builtin themes + <builtin-themes>` are described :ref:`here <builtin-themes>`. .. versionadded:: 0.6 .. confval:: html_theme_path + :type: :code-py:`list[str]` + :default: :code-py:`[]` - A list of paths that contain custom themes, either as subdirectories or as - zip files. Relative paths are taken as relative to the configuration - directory. + A list of paths that contain custom themes, + either as subdirectories or as zip files. + Relative paths are taken as relative to the :term:`configuration directory`. .. versionadded:: 0.6 .. confval:: html_style + :type: :code-py:`Sequence[str] | str` + :default: :code-py:`()` + + Stylesheets to use for HTML pages. + The stylesheet given by the selected theme is used by default + A file of that name must exist either in Sphinx's :file:`static/` path + or in one of the custom paths given in :confval:`html_static_path`. + If you only want to add or override a few things from the theme, + use CSS ``@import`` to import the theme's stylesheet. - The style sheet to use for HTML pages. A file of that name must exist - either in Sphinx's :file:`static/` path, or in one of the custom paths given - in :confval:`html_static_path`. Default is the stylesheet given by the - selected theme. If you only want to add or override a few things compared - to the theme's stylesheet, use CSS ``@import`` to import the theme's - stylesheet. + .. versionchanged:: 5.1 + The value can be a iterable of strings. .. confval:: html_title + :type: :code-py:`str` + :default: :samp:`'{project} {release} documentation'` The "title" for HTML documentation generated with Sphinx's own templates. - This is appended to the ``<title>`` tag of individual pages, and used in the - navigation bar as the "topmost" element. It defaults to :samp:`'{<project>} - v{<revision>} documentation'`. + This is appended to the ``<title>`` tag of individual pages, + and used in the navigation bar as the "topmost" element. .. confval:: html_short_title + :type: :code-py:`str` + :default: The value of **html_title** - A shorter "title" for the HTML docs. This is used for links in the - header and in the HTML Help docs. If not given, it defaults to the value of - :confval:`html_title`. + A shorter "title" for HTML documentation. + This is used for links in the header and in the HTML Help documentation. .. versionadded:: 0.4 .. confval:: html_baseurl + :type: :code-py:`str` + :default: :code-py:`''` - The base URL which points to the root of the HTML documentation. It is used - to indicate the location of document using `The Canonical Link Relation`_. - Default: ``''``. - - .. _The Canonical Link Relation: https://datatracker.ietf.org/doc/html/rfc6596 + The base URL which points to the root of the HTML documentation. + It is used to indicate the location of document using + :rfc:`the Canonical Link Relation <6596>`. .. versionadded:: 1.8 .. confval:: html_codeblock_linenos_style + :type: :code-py:`'inline' | 'table'` + :default: :code-py:`'inline'` The style of line numbers for code-blocks. - * ``'table'`` -- display line numbers using ``<table>`` tag - * ``'inline'`` -- display line numbers using ``<span>`` tag (default) + :code-py:`'table'` + Display line numbers using ``<table>`` tag + :code-py:`'inline'` + Display line numbers using ``<span>`` tag .. versionadded:: 3.2 .. versionchanged:: 4.0 - - It defaults to ``'inline'``. - + It defaults to :code-py:`'inline'`. .. deprecated:: 4.0 .. confval:: html_context + :type: :code-py:`dict[str, Any]` + :default: :code-py:`{}` - A dictionary of values to pass into the template engine's context for all - pages. Single values can also be put in this dictionary using the - :option:`-A <sphinx-build -A>` command-line option of ``sphinx-build``. + A dictionary of values to pass into + the template engine's context for all pages. + Single values can also be put in this dictionary using + :program:`sphinx-build`'s :option:`--html-define + <sphinx-build --html-define>` command-line option. .. versionadded:: 0.5 .. confval:: html_logo + :type: :code-py:`str` + :default: :code-py:`''` - If given, this must be the name of an image file (path relative to the - :term:`configuration directory`) that is the logo of the docs, or URL that - points an image file for the logo. It is placed at the top of the sidebar; - its width should therefore not exceed 200 pixels. Default: ``None``. + If given, this must be the name of an image file + (path relative to the :term:`configuration directory`) + that is the logo of the documentation, + or a URL that points an image file for the logo. + It is placed at the top of the sidebar; + its width should therefore not exceed 200 pixels. .. versionadded:: 0.4.1 - The image file will be copied to the ``_static`` directory of the output - HTML, but only if the file does not already exist there. - + The image file will be copied to the ``_static`` directory, + but only if the file does not already exist there. .. versionchanged:: 4.0 - Also accepts the URL for the logo file. + Also accepts a URL. .. confval:: html_favicon + :type: :code-py:`str` + :default: :code-py:`''` + + If given, this must be the name of an image file + (path relative to the :term:`configuration directory`) + that is the favicon_ of the documentation, + or a URL that points an image file for the favicon. + Browsers use this as the icon for tabs, windows and bookmarks. + It should be a 16-by-16 pixel icon in + the PNG, SVG, GIF, or ICO file formats. + + .. _favicon: https://developer.mozilla.org/en-US/ + docs/Web/HTML/Attributes/rel#icon - If given, this must be the name of an image file (path relative to the - :term:`configuration directory`) that is the favicon of the docs, or URL that - points an image file for the favicon. Modern browsers use this as the icon - for tabs, windows and bookmarks. It should be a Windows-style icon file - (``.ico``), which is 16x16 or 32x32 pixels large. Default: ``None``. + Example: + + .. code-block:: python + + html_favicon = 'static/favicon.png' .. versionadded:: 0.4 - The image file will be copied to the ``_static`` directory of the output - HTML, but only if the file does not already exist there. + The image file will be copied to the ``_static``, + but only if the file does not already exist there. .. versionchanged:: 4.0 Also accepts the URL for the favicon. .. confval:: html_css_files + :type: :code-py:`Sequence[str | tuple[str, dict[str, str]]]` + :default: :code-py:`[]` - A list of CSS files. The entry must be a *filename* string or a tuple - containing the *filename* string and the *attributes* dictionary. The - *filename* must be relative to the :confval:`html_static_path`, or a full URI - with scheme like ``https://example.org/style.css``. The *attributes* is used - for attributes of ``<link>`` tag. It defaults to an empty list. + A list of CSS files. + The entry must be a *filename* string + or a tuple containing the *filename* string and the *attributes* dictionary. + The *filename* must be relative to the :confval:`html_static_path`, + or a full URI with scheme like :code-py:`'https://example.org/style.css'`. + The *attributes* dictionary is used for the ``<link>`` tag's attributes. - Example:: + Example: + + .. code-block:: python - html_css_files = ['custom.css', - 'https://example.com/css/custom.css', - ('print.css', {'media': 'print'})] + html_css_files = [ + 'custom.css', + 'https://example.com/css/custom.css', + ('print.css', {'media': 'print'}), + ] - As a special attribute, *priority* can be set as an integer to load the CSS - file at an earlier or lazier step. For more information, refer - :meth:`.Sphinx.add_css_file()`. + The special attribute *priority* can be set as an integer + to load the CSS file at an earlier or later step. + For more information, refer to :meth:`.Sphinx.add_css_file()`. .. versionadded:: 1.8 .. versionchanged:: 3.5 - - Support priority attribute + Support the *priority* attribute .. confval:: html_js_files + :type: :code-py:`Sequence[str | tuple[str, dict[str, str]]]` + :default: :code-py:`[]` + + A list of JavaScript files. + The entry must be a *filename* string + or a tuple containing the *filename* string and the *attributes* dictionary. + The *filename* must be relative to the :confval:`html_static_path`, + or a full URI with scheme like :code-py:`'https://example.org/script.js'`. + The *attributes* dictionary is used for the ``<script>`` tag's attributes. - A list of JavaScript *filename*. The entry must be a *filename* string or a - tuple containing the *filename* string and the *attributes* dictionary. The - *filename* must be relative to the :confval:`html_static_path`, or a full - URI with scheme like ``https://example.org/script.js``. The *attributes* is - used for attributes of ``<script>`` tag. It defaults to an empty list. + Example: - Example:: + .. code-block:: python - html_js_files = ['script.js', - 'https://example.com/scripts/custom.js', - ('custom.js', {'async': 'async'})] + html_js_files = [ + 'script.js', + 'https://example.com/scripts/custom.js', + ('custom.js', {'async': 'async'}), + ] - As a special attribute, *priority* can be set as an integer to load the - JavaScript file at an earlier or lazier step. For more information, refer - :meth:`.Sphinx.add_js_file()`. + As a special attribute, *priority* can be set as an integer + to load the JavaScript file at an earlier or later step. + For more information, refer to :meth:`.Sphinx.add_js_file()`. .. versionadded:: 1.8 .. versionchanged:: 3.5 - - Support priority attribute + Support the *priority* attribute .. confval:: html_static_path + :type: :code-py:`list[str]` + :default: :code-py:`[]` - A list of paths that contain custom static files (such as style - sheets or script files). Relative paths are taken as relative to - the configuration directory. They are copied to the output's - :file:`_static` directory after the theme's static files, so a file - named :file:`default.css` will overwrite the theme's - :file:`default.css`. + A list of paths that contain custom static files + (such as style sheets or script files). + Relative paths are taken as relative to the :term:`configuration directory`. + They are copied to the output's :file:`_static` directory + after the theme's static files, + so a file named :file:`default.css` will overwrite + the theme's :file:`default.css`. - As these files are not meant to be built, they are automatically excluded - from source files. + As these files are not meant to be built, + they are automatically excluded from source files. .. note:: - For security reasons, dotfiles under ``html_static_path`` will - not be copied. If you would like to copy them intentionally, please - add each filepath to this setting:: + For security reasons, dotfiles under :confval:`!html_static_path` + will not be copied. + If you would like to copy them intentionally, + explicitly add each file to this setting: - html_static_path = ['_static', '_static/.htaccess'] + .. code-block:: python - Another way to do that, you can also use - :confval:`html_extra_path`. It allows to copy dotfiles under - the directories. + html_static_path = ['_static', '_static/.htaccess'] + + An alternative approach is to use :confval:`html_extra_path`, + which allows copying dotfiles under the directories. .. versionchanged:: 0.4 The paths in :confval:`html_static_path` can now contain subdirectories. @@ -1264,244 +1681,298 @@ that use Sphinx's HTMLWriter class. files. .. confval:: html_extra_path + :type: :code-py:`list[str]` + :default: :code-py:`[]` A list of paths that contain extra files not directly related to - the documentation, such as :file:`robots.txt` or :file:`.htaccess`. - Relative paths are taken as relative to the configuration - directory. They are copied to the output directory. They will - overwrite any existing file of the same name. + the documentation, + such as :file:`robots.txt` or :file:`.htaccess`. + Relative paths are taken as relative to the :term:`configuration directory`. + They are copied to the output directory. + They will overwrite any existing file of the same name. - As these files are not meant to be built, they are automatically excluded - from source files. + As these files are not meant to be built, + they are automatically excluded from source files. .. versionadded:: 1.2 .. versionchanged:: 1.4 - The dotfiles in the extra directory will be copied to the output - directory. And it refers :confval:`exclude_patterns` on copying extra + The dotfiles in the extra directory will be copied + to the output directory. + And it refers :confval:`exclude_patterns` on copying extra files and directories, and ignores if path matches to patterns. .. confval:: html_last_updated_fmt + :type: :code-py:`str` + :default: :code-py:`'%b %d, %Y'` - If this is not None, a 'Last updated on:' timestamp is inserted - at every page bottom, using the given :func:`~time.strftime` format. - The empty string is equivalent to ``'%b %d, %Y'`` (or a - locale-dependent equivalent). - -.. confval:: html_use_smartypants - - If true, quotes and dashes are converted to typographically correct - entities. Default: ``True``. - - .. deprecated:: 1.6 - To disable smart quotes, use rather :confval:`smartquotes`. + If set, a 'Last updated on:' timestamp is inserted into the page footer + using the given :func:`~time.strftime` format. + The empty string is equivalent to :code-py:`'%b %d, %Y'` + (or a locale-dependent equivalent). .. confval:: html_permalinks + :type: :code-py:`bool` + :default: :code-py:`True` Add link anchors for each heading and description environment. - Default: ``True``. .. versionadded:: 3.5 .. confval:: html_permalinks_icon + :type: :code-py:`str` + :default: :code-py:`'¶'` (the paragraph sign) Text for link anchors for each heading and description environment. - HTML entities and Unicode are allowed. Default: a paragraph sign; ``¶`` + HTML entities and Unicode are allowed. .. versionadded:: 3.5 .. confval:: html_sidebars + :type: :code-py:`dict[str, Sequence[str]]` + :default: :code-py:`{}` - Custom sidebar templates, must be a dictionary that maps document names to - template names. - - The keys can contain glob-style patterns [1]_, in which case all matching - documents will get the specified sidebars. (A warning is emitted when a - more than one glob-style pattern matches for any document.) - - The values can be either lists or single strings. + A dictionary defining custom sidebar templates, + mapping document names to template names. - * If a value is a list, it specifies the complete list of sidebar templates - to include. If all or some of the default sidebars are to be included, - they must be put into this list as well. + The keys can contain `glob-style patterns`_, + in which case all matching documents will get the specified sidebars. + (A warning is emitted when a more than one glob-style pattern + matches for any document.) - The default sidebars (for documents that don't match any pattern) are - defined by theme itself. Builtin themes are using these templates by - default: ``['localtoc.html', 'relations.html', 'sourcelink.html', - 'searchbox.html']``. + Each value must be a list of strings which specifies + the complete list of sidebar templates to include. + If all or some of the default sidebars are to be included, + they must be put into this list as well. - * If a value is a single string, it specifies a custom sidebar to be added - between the ``'sourcelink.html'`` and ``'searchbox.html'`` entries. This - is for compatibility with Sphinx versions before 1.0. + The default sidebars (for documents that don't match any pattern) are + defined by theme itself. + The builtin themes use these templates by default: + :code-py:`'localtoc.html'`, :code-py:`'relations.html'`, + :code-py:`'sourcelink.html'`, and :code-py:`'searchbox.html'`. - .. deprecated:: 1.7 - - a single string value for ``html_sidebars`` will be removed in 2.0 - - Builtin sidebar templates that can be rendered are: + The bundled first-party sidebar templates that can be rendered are: * **localtoc.html** -- a fine-grained table of contents of the current document * **globaltoc.html** -- a coarse-grained table of contents for the whole documentation set, collapsed * **relations.html** -- two links to the previous and next documents - * **sourcelink.html** -- a link to the source of the current document, if - enabled in :confval:`html_show_sourcelink` + * **sourcelink.html** -- a link to the source of the current document, + if enabled in :confval:`html_show_sourcelink` * **searchbox.html** -- the "quick search" box - Example:: + Example: + + .. code-block:: python html_sidebars = { '**': ['globaltoc.html', 'sourcelink.html', 'searchbox.html'], - 'using/windows': ['windowssidebar.html', 'searchbox.html'], + 'using/windows': ['windows-sidebar.html', 'searchbox.html'], } - This will render the custom template ``windowssidebar.html`` and the quick + This will render the custom template ``windows-sidebar.html`` and the quick search box within the sidebar of the given document, and render the default sidebars for all other pages (except that the local TOC is replaced by the global TOC). + Note that this value only has no effect if + the chosen theme does not possess a sidebar, + like the builtin **scrolls** and **haiku** themes. + .. versionadded:: 1.0 The ability to use globbing keys and to specify multiple sidebars. - Note that this value only has no effect if the chosen theme does not possess - a sidebar, like the builtin **scrolls** and **haiku** themes. + .. deprecated:: 1.7 + A single string value for :confval:`!html_sidebars` will be removed. + + .. versionchanged:: 2.0 + :confval:`!html_sidebars` must be a list of strings, + and no longer accepts a single string value. .. confval:: html_additional_pages + :type: :code-py:`dict[str, str]` + :default: :code-py:`{}` - Additional templates that should be rendered to HTML pages, must be a - dictionary that maps document names to template names. + Additional templates that should be rendered to HTML pages, + must be a dictionary that maps document names to template names. + + Example: - Example:: + .. code-block:: python html_additional_pages = { - 'download': 'customdownload.html', + 'download': 'custom-download.html.jinja', } - This will render the template ``customdownload.html`` as the page - ``download.html``. + This will render the template :file:`custom-download.html.jinja` + as the page :file:`download.html`. .. confval:: html_domain_indices + :type: :code-py:`bool | Sequence[str]` + :default: :code-py:`True` - If true, generate domain-specific indices in addition to the general index. - For e.g. the Python domain, this is the global module index. Default is - ``True``. + If True, generate domain-specific indices in addition to the general index. + For e.g. the Python domain, this is the global module index. - This value can be a bool or a list of index names that should be generated. + This value can be a Boolean or a list of index names that should be generated. To find out the index name for a specific index, look at the HTML file name. For example, the Python module index has the name ``'py-modindex'``. + Example: + + .. code-block:: python + + html_domain_indices = { + 'py-modindex', + } + .. versionadded:: 1.0 + .. versionchanged:: 7.4 + Permit and prefer a set type. .. confval:: html_use_index + :type: :code-py:`bool` + :default: :code-py:`True` - If true, add an index to the HTML documents. Default is ``True``. + Controls if an index is added to the HTML documents. .. versionadded:: 0.4 .. confval:: html_split_index + :type: :code-py:`bool` + :default: :code-py:`False` - If true, the index is generated twice: once as a single page with all the - entries, and once as one page per starting letter. Default is ``False``. + Generates two versions of the index: + once as a single page with all the entries, + and once as one page per starting letter. .. versionadded:: 0.4 .. confval:: html_copy_source + :type: :code-py:`bool` + :default: :code-py:`True` - If true, the reST sources are included in the HTML build as - :file:`_sources/{name}`. The default is ``True``. + If True, the reStructuredText sources are included in the HTML build as + :file:`_sources/{docname}`. .. confval:: html_show_sourcelink + :type: :code-py:`bool` + :default: :code-py:`True` - If true (and :confval:`html_copy_source` is true as well), links to the - reST sources will be added to the sidebar. The default is ``True``. + If True (and :confval:`html_copy_source` is true as well), + links to the reStructuredText sources will be added to the sidebar. .. versionadded:: 0.6 .. confval:: html_sourcelink_suffix + :type: :code-py:`str` + :default: :code-py:`'.txt'` - Suffix to be appended to source links (see :confval:`html_show_sourcelink`), - unless they have this suffix already. Default is ``'.txt'``. + The suffix to append to source links + (see :confval:`html_show_sourcelink`), + unless files they have this suffix already. .. versionadded:: 1.5 .. confval:: html_use_opensearch + :type: :code-py:`str` + :default: :code-py:`''` If nonempty, an `OpenSearch <https://github.com/dewitt/opensearch>`_ - description file will be output, and all pages will contain a ``<link>`` - tag referring to it. Since OpenSearch doesn't support relative URLs for - its search page location, the value of this option must be the base URL - from which these documents are served (without trailing slash), e.g. - ``"https://docs.python.org"``. The default is ``''``. + description file will be output, + and all pages will contain a ``<link>`` tag referring to it. + Since OpenSearch doesn't support relative URLs for its search page location, + the value of this option must be the base URL + from which these documents are served (without trailing slash), + e.g. :code-py:`'https://docs.python.org'`. + + .. versionadded:: 0.2 .. confval:: html_file_suffix + :type: :code-py:`str` + :default: :code-py:`'.html'` - This is the file name suffix for generated HTML files, if set to a :obj:`str` - value. If left to the default ``None``, the suffix will be ``".html"``. + The file name suffix (file extension) for generated HTML files. .. versionadded:: 0.4 .. confval:: html_link_suffix + :type: :code-py:`str` + :default: The value of **html_file_suffix** - Suffix for generated links to HTML files. The default is whatever - :confval:`html_file_suffix` is set to; it can be set differently (e.g. to - support different web server setups). + The suffix for generated links to HTML files. + Intended to support more esoteric server setups. .. versionadded:: 0.6 .. confval:: html_show_copyright + :type: :code-py:`bool` + :default: :code-py:`True` - If true, "(C) Copyright ..." is shown in the HTML footer. Default is - ``True``. + If True, "© Copyright ..." is shown in the HTML footer, + with the value or values from :confval:`copyright`. .. versionadded:: 1.0 .. confval:: html_show_search_summary + :type: :code-py:`bool` + :default: :code-py:`True` - If true, the text around the keyword is shown as summary of each search result. - Default is ``True``. + Show a summary of the search result, i.e., the text around the keyword. .. versionadded:: 4.5 .. confval:: html_show_sphinx + :type: :code-py:`bool` + :default: :code-py:`True` - If true, "Created using Sphinx" is shown in the HTML footer. Default is - ``True``. + Add "Created using Sphinx_" to the HTML footer. + + .. _Sphinx: https://www.sphinx-doc.org/ .. versionadded:: 0.4 .. confval:: html_output_encoding + :type: :code-py:`str` + :default: :code-py:`'utf-8'` - Encoding of HTML output files. Default is ``'utf-8'``. Note that this - encoding name must both be a valid Python encoding name and a valid HTML - ``charset`` value. + Encoding of HTML output files. + This encoding name must both be a valid Python encoding name + and a valid HTML ``charset`` value. .. versionadded:: 1.0 .. confval:: html_compact_lists + :type: :code-py:`bool` + :default: :code-py:`True` - If true, a list all whose items consist of a single paragraph and/or a + If True, a list all whose items consist of a single paragraph and/or a sub-list all whose items etc... (recursive definition) will not use the - ``<p>`` element for any of its items. This is standard docutils behavior. - Default: ``True``. + ``<p>`` element for any of its items. This is standard docutils behaviour. + Default: :code-py:`True`. .. versionadded:: 1.0 .. confval:: html_secnumber_suffix + :type: :code-py:`str` + :default: :code-py:`'. '` - Suffix for section numbers. Default: ``". "``. Set to ``" "`` to suppress - the final dot on section numbers. + Suffix for section numbers in HTML output. + Set to :code-py:`' '` to suppress the final dot on section numbers. .. versionadded:: 1.0 .. confval:: html_search_language + :type: :code-py:`str` + :default: The value of **language** - Language to be used for generating the HTML full-text search index. This - defaults to the global language selected with :confval:`language`. If there - is no support for this language, ``"en"`` is used which selects the English - language. + Language to be used for generating the HTML full-text search index. + This defaults to the global language selected with :confval:`language`. + English (:code-py:`'en'`) is used as a fall-back option + if there is no support for this language. - Support is present for these languages: + Support exists for the following languages: * ``da`` -- Danish * ``nl`` -- Dutch @@ -1521,98 +1992,101 @@ that use Sphinx's HTMLWriter class. * ``tr`` -- Turkish * ``zh`` -- Chinese - .. admonition:: Accelerating build speed + .. tip:: Accelerating build speed Each language (except Japanese) provides its own stemming algorithm. - Sphinx uses a Python implementation by default. You can use a C - implementation to accelerate building the index file. + Sphinx uses a Python implementation by default. + If you want to accelerate building the index file, + you can use a third-party package (PyStemmer_) by running + :command:`pip install PyStemmer`. - * `PorterStemmer <https://pypi.org/project/PorterStemmer/>`_ (``en``) - * `PyStemmer <https://pypi.org/project/PyStemmer/>`_ (all languages) + .. _PyStemmer: https://pypi.org/project/PyStemmer/ .. versionadded:: 1.1 - With support for ``en`` and ``ja``. + Support English (``en``) and Japanese (``ja``). .. versionchanged:: 1.3 Added additional languages. .. confval:: html_search_options + :type: :code-py:`dict[str, str]` + :default: :code-py:`{}` - A dictionary with options for the search language support, empty by default. + A dictionary with options for the search language support. The meaning of these options depends on the language selected. - - The English support has no options. - - The Japanese support has these options: - - :type: - _`type` is dotted module path string to specify Splitter implementation - which should be derived from :class:`!sphinx.search.ja.BaseSplitter`. If - not specified or ``None`` is specified, - ``'sphinx.search.ja.DefaultSplitter'`` will be used. - - You can choose from these modules: - - :'sphinx.search.ja.DefaultSplitter': - TinySegmenter algorithm. This is default splitter. - :'sphinx.search.ja.MecabSplitter': - MeCab binding. To use this splitter, 'mecab' python binding or dynamic - link library ('libmecab.so' for linux, 'libmecab.dll' for windows) is - required. - :'sphinx.search.ja.JanomeSplitter': - Janome binding. To use this splitter, - `Janome <https://pypi.org/project/Janome/>`_ is required. - - .. deprecated:: 1.6 - ``'mecab'``, ``'janome'`` and ``'default'`` is deprecated. - To keep compatibility, ``'mecab'``, ``'janome'`` and ``'default'`` are - also acceptable. - - Other option values depend on splitter value which you choose. - - Options for ``'mecab'``: - :dic_enc: - _`dic_enc option` is the encoding for the MeCab algorithm. - :dict: - _`dict option` is the dictionary to use for the MeCab algorithm. - :lib: - _`lib option` is the library name for finding the MeCab library via - ctypes if the Python binding is not installed. - - For example:: - - html_search_options = { - 'type': 'mecab', - 'dic_enc': 'utf-8', - 'dict': '/path/to/mecab.dic', - 'lib': '/path/to/libmecab.so', - } - - Options for ``'janome'``: - :user_dic: - _`user_dic option` is the user dictionary file path for Janome. - :user_dic_enc: - _`user_dic_enc option` is the encoding for the user dictionary file - specified by ``user_dic`` option. Default is 'utf8'. + Currently, only Japanese and Chinese support options. + + :Japanese: + ``type`` -- the type of the splitter to use. + The other options depend on the splitter used. + + :code-py:`'sphinx.search.ja.DefaultSplitter'` + The TinySegmenter algorithm, used by default. + :code-py:`'sphinx.search.ja.MecabSplitter'`: + The MeCab binding + To use this splitter, the 'mecab' python binding + or dynamic link library + ('libmecab.so' for Linux, 'libmecab.dll' for Windows) is required. + :code-py:`'sphinx.search.ja.JanomeSplitter'`: + The Janome binding. + To use this splitter, + `Janome <https://pypi.org/project/Janome/>`_ is required. + + + .. deprecated:: 1.6 + ``'mecab'``, ``'janome'`` and ``'default'`` is deprecated. + To keep compatibility, + ``'mecab'``, ``'janome'`` and ``'default'`` are also acceptable. + + Options for :code-py:`'mecab'`: + :dic_enc: + _`dic_enc option` is the encoding for the MeCab algorithm. + :dict: + _`dict option` is the dictionary to use for the MeCab algorithm. + :lib: + _`lib option` is the library name for finding the MeCab library + via ``ctypes`` if the Python binding is not installed. + + For example: + + .. code-block:: python + + html_search_options = { + 'type': 'mecab', + 'dic_enc': 'utf-8', + 'dict': '/path/to/mecab .dic', + 'lib': '/path/to/libmecab.so', + } + + Options for :code-py:`'janome'`: + :user_dic: + _`user_dic option` is the user dictionary file path for Janome. + :user_dic_enc: + _`user_dic_enc option` is the encoding for + the user dictionary file specified by ``user_dic`` option. + Default is 'utf8'. + + :Chinese: + ``dict`` + The ``jieba`` dictionary path for using a custom dictionary. .. versionadded:: 1.1 .. versionchanged:: 1.4 - html_search_options for Japanese is re-organized and any custom splitter - can be used by `type`_ settings. - - The Chinese support has these options: - - * ``dict`` -- the ``jieba`` dictionary path if want to use - custom dictionary. + Allow any custom splitter in the *type* setting for Japanese. .. confval:: html_search_scorer + :type: :code-py:`str` + :default: :code-py:`''` - The name of a JavaScript file (relative to the configuration directory) that - implements a search results scorer. If empty, the default will be used. + The name of a JavaScript file + (relative to the :term:`configuration directory`) + that implements a search results scorer. + If empty, the default will be used. The scorer must implement the following interface, - and may optionally define the ``score()`` function for more granular control. + and may optionally define the :code-js:`score()` function + for more granular control. .. code-block:: javascript @@ -1650,54 +2124,59 @@ that use Sphinx's HTMLWriter class. .. versionadded:: 1.2 .. confval:: html_scaled_image_link + :type: :code-py:`bool` + :default: :code-py:`True` - If true, image itself links to the original image if it doesn't have - 'target' option or scale related options: 'scale', 'width', 'height'. - The default is ``True``. + Link images that have been resized with a + scale option (*scale*, *width*, or *height*) + to their original full-resolution image. + This will not overwrite any link given by the *target* option + on the the :dudir:`image` directive, if present. - Document authors can disable this feature manually with giving - ``no-scaled-link`` class to the image: + .. tip:: - .. code-block:: rst + To disable this feature on a per-image basis, + add the ``no-scaled-link`` class to the image directive: - .. image:: sphinx.png - :scale: 50% - :class: no-scaled-link + .. code-block:: rst + + .. image:: sphinx.png + :scale: 50% + :class: no-scaled-link .. versionadded:: 1.3 .. versionchanged:: 3.0 - - It is disabled for images having ``no-scaled-link`` class + Images with the ``no-scaled-link`` class will not be linked. .. confval:: html_math_renderer + :type: :code-py:`str` + :default: :code-py:`'mathjax'` - The name of math_renderer extension for HTML output. The default is - ``'mathjax'``. + The maths renderer to use for HTML output. + The bundled renders are *mathjax* and *imgmath*. + You must also load the relevant extension in :confval:`extensions`. .. versionadded:: 1.8 -.. confval:: html_experimental_html5_writer - - Output is processed with HTML5 writer. Default is ``False``. - - .. versionadded:: 1.6 - - .. deprecated:: 2.0 - -.. confval:: html4_writer - - Output is processed with HTML4 writer. Default is ``False``. Options for Single HTML output ------------------------------- +These options influence Single HTML output. +This builder derives from the HTML builder, +so the HTML options also apply where appropriate. + .. confval:: singlehtml_sidebars + :type: :code-py:`dict[str, Sequence[str]]` + :default: The value of **html_sidebars** + + A dictionary defining custom sidebar templates, + mapping document names to template names. - Custom sidebar templates, must be a dictionary that maps document names to - template names. And it only allows a key named ``'index'``. All other keys - are ignored. For more information, refer to :confval:`html_sidebars`. By - default, it is same as :confval:`html_sidebars`. + This has the same effect as :confval:`html_sidebars`, + but the only permitted key is :code-py:`'index'`, + and all other keys are ignored. .. _htmlhelp-options: @@ -1705,20 +2184,31 @@ Options for Single HTML output Options for HTML help output ----------------------------- +These options influence HTML help output. +This builder derives from the HTML builder, +so the HTML options also apply where appropriate. + .. confval:: htmlhelp_basename + :type: :code-py:`str` + :default: :code-py:`'{project}doc'` - Output file base name for HTML help builder. Default is ``'pydoc'``. + Output file base name for HTML help builder. + The default is the :confval:`project name <project>` + with spaces removed and ``doc`` appended. .. confval:: htmlhelp_file_suffix + :type: :code-py:`str` + :default: :code-py:`'.html'` - This is the file name suffix for generated HTML help files. The - default is ``".html"``. + This is the file name suffix for generated HTML help files. .. versionadded:: 2.0 .. confval:: htmlhelp_link_suffix + :type: :code-py:`str` + :default: The value of **htmlhelp_file_suffix** - Suffix for generated links to HTML files. The default is ``".html"``. + Suffix for generated links to HTML files. .. versionadded:: 2.0 @@ -1730,26 +2220,35 @@ Options for Apple Help output .. versionadded:: 1.3 -These options influence the Apple Help output. This builder derives from the -HTML builder, so the HTML options also apply where appropriate. +These options influence Apple Help output. +This builder derives from the HTML builder, +so the HTML options also apply where appropriate. .. note:: - Apple Help output will only work on Mac OS X 10.6 and higher, as it - requires the :program:`hiutil` and :program:`codesign` command line tools, - neither of which are Open Source. + Apple Help output will only work on Mac OS X 10.6 and higher, + as it requires the :program:`hiutil` and :program:`codesign` + command-line tools, neither of which are Open Source. You can disable the use of these tools using - :confval:`applehelp_disable_external_tools`, but the result will not be a - valid help book until the indexer is run over the ``.lproj`` folders within - the bundle. + :confval:`applehelp_disable_external_tools`, + but the result will not be a valid help book + until the indexer is run over the ``.lproj`` directories within the bundle. + + .. TODO: Is this warning still relevant as of 2024-07? + Needs updating by someone with a Mac. .. confval:: applehelp_bundle_name + :type: :code-py:`str` + :default: The value of **project** - The basename for the Apple Help Book. Defaults to the :confval:`project` - name. + The basename for the Apple Help Book. + The default is the :confval:`project name <project>` + with spaces removed. .. confval:: applehelp_bundle_id + :type: :code-py:`str` + :default: :code-py:`None` The bundle ID for the help book bundle. @@ -1757,388 +2256,509 @@ HTML builder, so the HTML options also apply where appropriate. You *must* set this value in order to generate Apple Help. -.. confval:: applehelp_dev_region +.. confval:: applehelp_bundle_version + :type: :code-py:`str` + :default: :code-py:`'1'` - The development region. Defaults to ``'en-us'``, which is Apple’s - recommended setting. + The bundle version, as a string. -.. confval:: applehelp_bundle_version +.. confval:: applehelp_dev_region + :type: :code-py:`str` + :default: :code-py:`'en-us'` - The bundle version (as a string). Defaults to ``'1'``. + The development region. + Defaults to Apple’s recommended setting, :code-py:`'en-us'`. .. confval:: applehelp_icon + :type: :code-py:`str` + :default: :code-py:`None` - The help bundle icon file, or ``None`` for no icon. According to Apple's - documentation, this should be a 16-by-16 pixel version of the application's - icon with a transparent background, saved as a PNG file. + Path to the help bundle icon file or :code-py:`None` for no icon. + According to Apple's documentation, + this should be a 16-by-16 pixel version of the application's icon + with a transparent background, saved as a PNG file. .. confval:: applehelp_kb_product + :type: :code-py:`str` + :default: :samp:`'{project}-{release}'` - The product tag for use with :confval:`applehelp_kb_url`. Defaults to - :samp:`'{<project>}-{<release>}'`. + The product tag for use with :confval:`applehelp_kb_url`. .. confval:: applehelp_kb_url + :type: :code-py:`str` + :default: :code-py:`None` The URL for your knowledgebase server, e.g. ``https://example.com/kbsearch.py?p='product'&q='query'&l='lang'``. - Help Viewer will replace the values ``'product'``, ``'query'`` and - ``'lang'`` at runtime with the contents of :confval:`applehelp_kb_product`, - the text entered by the user in the search box and the user's system - language respectively. + At runtime, Help Viewer will replace + ``'product'`` with the contents of :confval:`applehelp_kb_product`, + ``'query'`` with the text entered by the user in the search box, + and ``'lang'`` with the user's system language. - Defaults to ``None`` for no remote search. + Set this to to :code-py:`None` to disable remote search. .. confval:: applehelp_remote_url + :type: :code-py:`str` + :default: :code-py:`None` - The URL for remote content. You can place a copy of your Help Book's - ``Resources`` folder at this location and Help Viewer will attempt to use - it to fetch updated content. + The URL for remote content. + You can place a copy of your Help Book's ``Resources`` directory + at this location and Help Viewer will attempt to use it + to fetch updated content. - e.g. if you set it to ``https://example.com/help/Foo/`` and Help Viewer - wants a copy of ``index.html`` for an English speaking customer, it will - look at ``https://example.com/help/Foo/en.lproj/index.html``. + For example, if you set it to ``https://example.com/help/Foo/`` + and Help Viewer wants a copy of ``index.html`` for + an English speaking customer, + it will look at ``https://example.com/help/Foo/en.lproj/index.html``. - Defaults to ``None`` for no remote content. + Set this to to :code-py:`None` for no remote content. .. confval:: applehelp_index_anchors + :type: :code-py:`bool` + :default: :code-py:`False` - If ``True``, tell the help indexer to index anchors in the generated HTML. - This can be useful for jumping to a particular topic using the - ``AHLookupAnchor`` function or the ``openHelpAnchor:inBook:`` method in - your code. It also allows you to use ``help:anchor`` URLs; see the Apple - documentation for more information on this topic. + Tell the help indexer to index anchors in the generated HTML. + This can be useful for jumping to a particular topic + using the ``AHLookupAnchor`` function + or the ``openHelpAnchor:inBook:`` method in your code. + It also allows you to use ``help:anchor`` URLs; + see the Apple documentation for more information on this topic. .. confval:: applehelp_min_term_length + :type: :code-py:`str` + :default: :code-py:`None` - Controls the minimum term length for the help indexer. Defaults to - ``None``, which means the default will be used. + Controls the minimum term length for the help indexer. + If :code-py:`None`, use the default length. .. confval:: applehelp_stopwords + :type: :code-py:`str` + :default: The value of **language** - Either a language specification (to use the built-in stopwords), or the - path to a stopwords plist, or ``None`` if you do not want to use stopwords. + Either a language specification (to use the built-in stopwords), + or the path to a stopwords plist, + or :code-py:`None` if you do not want to use stopwords. The default stopwords plist can be found at - ``/usr/share/hiutil/Stopwords.plist`` and contains, at time of writing, - stopwords for the following languages: - - ========= ==== - Language Code - ========= ==== - English en - German de - Spanish es - French fr - Swedish sv - Hungarian hu - Italian it - ========= ==== - - Defaults to :confval:`language`, or if that is not set, to ``'en'``. + ``/usr/share/hiutil/Stopwords.plist`` + and contains, at time of writing, stopwords for the following languages: -.. confval:: applehelp_locale + * German (``de``) + * English (``en``) + * Spanish (``es``) + * French (``fr``) + * Hungarian (``hu``) + * Italian (``it``) + * Swedish (``sv``) - Specifies the locale to generate help for. This is used to determine - the name of the ``.lproj`` folder inside the Help Book’s ``Resources``, and - is passed to the help indexer. +.. confval:: applehelp_locale + :type: :code-py:`str` + :default: The value of **language** - Defaults to :confval:`language`, or if that is not set, to ``'en'``. + Specifies the locale to generate help for. + This is used to determine the name of the ``.lproj`` directory + inside the Help Book’s ``Resources``, + and is passed to the help indexer. .. confval:: applehelp_title + :type: :code-py:`str` + :default: :samp:`'{project} Help'` - Specifies the help book title. Defaults to :samp:`'{<project>} Help'`. + Specifies the help book title. .. confval:: applehelp_codesign_identity + :type: :code-py:`str` + :default: The value of **CODE_SIGN_IDENTITY** - Specifies the identity to use for code signing, or ``None`` if code signing - is not to be performed. + Specifies the identity to use for code signing. + Use :code-py:`None` if code signing is not to be performed. - Defaults to the value of the environment variable ``CODE_SIGN_IDENTITY``, - which is set by Xcode for script build phases, or ``None`` if that variable - is not set. + Defaults to the value of the :envvar:`!CODE_SIGN_IDENTITY` + environment variable, which is set by Xcode for script build phases, + or :code-py:`None` if that variable is not set. .. confval:: applehelp_codesign_flags + :type: :code-py:`list[str]` + :default: The value of **OTHER_CODE_SIGN_FLAGS** A *list* of additional arguments to pass to :program:`codesign` when signing the help book. - Defaults to a list based on the value of the environment variable - ``OTHER_CODE_SIGN_FLAGS``, which is set by Xcode for script build phases, + Defaults to a list based on the value of the :envvar:`!OTHER_CODE_SIGN_FLAGS` + environment variable, which is set by Xcode for script build phases, or the empty list if that variable is not set. -.. confval:: applehelp_indexer_path +.. confval:: applehelp_codesign_path + :type: :code-py:`str` + :default: :code-py:`'/usr/bin/codesign'` - The path to the :program:`hiutil` program. Defaults to - ``'/usr/bin/hiutil'``. + The path to the :program:`codesign` program. -.. confval:: applehelp_codesign_path +.. confval:: applehelp_indexer_path + :type: :code-py:`str` + :default: :code-py:`'/usr/bin/hiutil'` - The path to the :program:`codesign` program. Defaults to - ``'/usr/bin/codesign'``. + The path to the :program:`hiutil` program. .. confval:: applehelp_disable_external_tools + :type: :code-py:`bool` + :default: :code-py:`False` - If ``True``, the builder will not run the indexer or the code signing tool, + Do not run the indexer or the code signing tool, no matter what other settings are specified. - This is mainly useful for testing, or where you want to run the Sphinx - build on a non-Mac OS X platform and then complete the final steps on OS X - for some reason. - - Defaults to ``False``. + This is mainly useful for testing, + or where you want to run the Sphinx build on a non-macOS platform + and then complete the final steps on a Mac for some reason. .. _epub-options: -Options for epub output +Options for EPUB output ----------------------- -These options influence the epub output. As this builder derives from the HTML -builder, the HTML options also apply where appropriate. The actual values for -some of the options is not really important, they just have to be entered into -the `Dublin Core metadata <https://dublincore.org/>`_. +These options influence EPUB output. +This builder derives from the HTML builder, +so the HTML options also apply where appropriate. + +.. note:: + The actual value for some of these options is not important, + but they are required for the `Dublin Core metadata`_. + + .. _Dublin Core metadata: https://dublincore.org/ .. confval:: epub_basename + :type: :code-py:`str` + :default: The value of **project** - The basename for the epub file. It defaults to the :confval:`project` name. + The basename for the EPUB file. .. confval:: epub_theme + :type: :code-py:`str` + :default: :code-py:`'epub'` - The HTML theme for the epub output. Since the default themes are not - optimized for small screen space, using the same theme for HTML and epub - output is usually not wise. This defaults to ``'epub'``, a theme designed - to save visual space. + The HTML theme for the EPUB output. Since the default themes are not + optimised for small screen space, using the same theme for HTML and EPUB + output is usually not wise. + This defaults to :code-py:`'epub'`, + a theme designed to save visual space. .. confval:: epub_theme_options + :type: :code-py:`dict[str, Any]` + :default: :code-py:`{}` - A dictionary of options that influence the look and feel of the selected - theme. These are theme-specific. For the options understood by the builtin - themes, see :ref:`this section <builtin-themes>`. + A dictionary of options that influence the + look and feel of the selected theme. + These are theme-specific. + The options understood by the :ref:`builtin themes + <builtin-themes>` are described :ref:`here <builtin-themes>`. .. versionadded:: 1.2 .. confval:: epub_title + :type: :code-py:`str` + :default: The value of **project** - The title of the document. It defaults to the :confval:`html_title` option - but can be set independently for epub creation. It defaults to the - :confval:`project` option. + The title of the document. .. versionchanged:: 2.0 - It defaults to the ``project`` option. + It defaults to the :confval:`!project` option + (previously :confval:`!html_title`). .. confval:: epub_description + :type: :code-py:`str` + :default: :code-py:`'unknown'` - The description of the document. The default value is ``'unknown'``. + The description of the document. .. versionadded:: 1.4 .. versionchanged:: 1.5 - Renamed from ``epub3_description`` + Renamed from :confval:`!epub3_description` .. confval:: epub_author + :type: :code-py:`str` + :default: The value of **author** - The author of the document. This is put in the Dublin Core metadata. It - defaults to the :confval:`author` option. + The author of the document. + This is put in the Dublin Core metadata. .. confval:: epub_contributor + :type: :code-py:`str` + :default: :code-py:`'unknown'` - The name of a person, organization, etc. that played a secondary role in - the creation of the content of an EPUB Publication. The default value is - ``'unknown'``. + The name of a person, organisation, etc. that played a secondary role + in the creation of the content of an EPUB Publication. .. versionadded:: 1.4 .. versionchanged:: 1.5 - Renamed from ``epub3_contributor`` + Renamed from :confval:`!epub3_contributor` .. confval:: epub_language + :type: :code-py:`str` + :default: The value of **language** - The language of the document. This is put in the Dublin Core metadata. The - default is the :confval:`language` option or ``'en'`` if unset. + The language of the document. + This is put in the Dublin Core metadata. .. confval:: epub_publisher + :type: :code-py:`str` + :default: The value of **author** - The publisher of the document. This is put in the Dublin Core metadata. - You may use any sensible string, e.g. the project homepage. The defaults to - the :confval:`author` option. + The publisher of the document. + This is put in the Dublin Core metadata. + You may use any sensible string, e.g. the project homepage. .. confval:: epub_copyright + :type: :code-py:`str` + :default: The value of **copyright** - The copyright of the document. It defaults to the :confval:`copyright` - option but can be set independently for epub creation. + The copyright of the document. .. confval:: epub_identifier + :type: :code-py:`str` + :default: :code-py:`'unknown'` - An identifier for the document. This is put in the Dublin Core metadata. - For published documents this is the ISBN number, but you can also use an - alternative scheme, e.g. the project homepage. The default value is - ``'unknown'``. + An identifier for the document. + This is put in the Dublin Core metadata. + For published documents this is the ISBN number, + but you can also use an alternative scheme, e.g. the project homepage. .. confval:: epub_scheme + :type: :code-py:`str` + :default: :code-py:`'unknown'` - The publication scheme for the :confval:`epub_identifier`. This is put in - the Dublin Core metadata. For published books the scheme is ``'ISBN'``. If - you use the project homepage, ``'URL'`` seems reasonable. The default value - is ``'unknown'``. + The publication scheme for the :confval:`epub_identifier`. + This is put in the Dublin Core metadata. + For published books the scheme is ``'ISBN'``. + If you use the project homepage, ``'URL'`` seems reasonable. .. confval:: epub_uid + :type: :code-py:`str` + :default: :code-py:`'unknown'` - A unique identifier for the document. This is put in the Dublin Core - metadata. You may use a - `XML's Name format <https://www.w3.org/TR/REC-xml/#NT-NameStartChar>`_ - string. You can't use hyphen, period, numbers as a first character. The - default value is ``'unknown'``. + A unique identifier for the document. + This is put in the Dublin Core metadata. + You may use a `XML's Name format`_ string. + You can't use hyphen, period, numbers as a first character. + + .. _XML's Name format: https://www.w3.org/TR/REC-xml/#NT-NameStartChar .. confval:: epub_cover + :type: :code-py:`tuple[str, str]` + :default: :code-py:`()` + + The cover page information. + This is a tuple containing the filenames of the cover image + and the html template. + The rendered html cover page is inserted as the first item + in the spine in :file:`content.opf`. + If the template filename is empty, no html cover page is created. + No cover at all is created if the tuple is empty. - The cover page information. This is a tuple containing the filenames of - the cover image and the html template. The rendered html cover page is - inserted as the first item in the spine in :file:`content.opf`. If the - template filename is empty, no html cover page is created. No cover at all - is created if the tuple is empty. Examples:: + Examples: + + .. code-block:: python epub_cover = ('_static/cover.png', 'epub-cover.html') epub_cover = ('_static/cover.png', '') epub_cover = () - The default value is ``()``. - .. versionadded:: 1.1 .. confval:: epub_css_files + :type: :code-py:`Sequence[str | tuple[str, dict[str, str]]]` + :default: :code-py:`[]` - A list of CSS files. The entry must be a *filename* string or a tuple - containing the *filename* string and the *attributes* dictionary. For more - information, see :confval:`html_css_files`. + A list of CSS files. + The entry must be a *filename* string + or a tuple containing the *filename* string and the *attributes* dictionary. + The *filename* must be relative to the :confval:`html_static_path`, + or a full URI with scheme like :code-py:`'https://example.org/style.css'`. + The *attributes* dictionary is used for the ``<link>`` tag's attributes. + For more information, see :confval:`html_css_files`. .. versionadded:: 1.8 .. confval:: epub_guide + :type: :code-py:`Sequence[tuple[str, str, str]]` + :default: :code-py:`()` + + Meta data for the guide element of :file:`content.opf`. + This is a sequence of tuples containing + the *type*, the *uri* and the *title* of the optional guide information. + See `the OPF documentation <https://idpf.org/epub>`_ for details. + If possible, default entries for the *cover* and *toc* types + are automatically inserted. + However, the types can be explicitly overwritten + if the default entries are not appropriate. + + Example: - Meta data for the guide element of :file:`content.opf`. This is a - sequence of tuples containing the *type*, the *uri* and the *title* of - the optional guide information. See the OPF documentation - at `<https://idpf.org/epub>`_ for details. If possible, default entries - for the *cover* and *toc* types are automatically inserted. However, - the types can be explicitly overwritten if the default entries are not - appropriate. Example:: + .. code-block:: python - epub_guide = (('cover', 'cover.html', 'Cover Page'),) + epub_guide = ( + ('cover', 'cover.html', 'Cover Page'), + ) - The default value is ``()``. + The default value is :code-py:`()`. .. confval:: epub_pre_files + :type: :code-py:`Sequence[tuple[str, str]]` + :default: :code-py:`()` + + Additional files that should be inserted before the text generated by Sphinx. + It is a list of tuples containing the file name and the title. + If the title is empty, no entry is added to :file:`toc.ncx`. + + Example: - Additional files that should be inserted before the text generated by - Sphinx. It is a list of tuples containing the file name and the title. - If the title is empty, no entry is added to :file:`toc.ncx`. Example:: + .. code-block:: python epub_pre_files = [ ('index.html', 'Welcome'), ] - The default value is ``[]``. - .. confval:: epub_post_files + :type: :code-py:`Sequence[tuple[str, str]]` + :default: :code-py:`()` Additional files that should be inserted after the text generated by Sphinx. - It is a list of tuples containing the file name and the title. This option - can be used to add an appendix. If the title is empty, no entry is added - to :file:`toc.ncx`. The default value is ``[]``. + It is a list of tuples containing the file name and the title. + This option can be used to add an appendix. + If the title is empty, no entry is added to :file:`toc.ncx`. + + Example: + + .. code-block:: python + + epub_post_files = [ + ('appendix.xhtml', 'Appendix'), + ] .. confval:: epub_exclude_files + :type: :code-py:`Sequence[str]` + :default: :code-py:`[]` - A list of files that are generated/copied in the build directory but should - not be included in the epub file. The default value is ``[]``. + A sequence of files that are generated/copied in the build directory + but should not be included in the EPUB file. .. confval:: epub_tocdepth + :type: :code-py:`int` + :default: :code-py:`3` + + The depth of the table of contents in the file :file:`toc.ncx`. + It should be an integer greater than zero. - The depth of the table of contents in the file :file:`toc.ncx`. It should - be an integer greater than zero. The default value is 3. Note: A deeply - nested table of contents may be difficult to navigate. + .. tip:: + A deeply nested table of contents may be difficult to navigate. .. confval:: epub_tocdup + :type: :code-py:`bool` + :default: :code-py:`True` - This flag determines if a toc entry is inserted again at the beginning of - its nested toc listing. This allows easier navigation to the top of - a chapter, but can be confusing because it mixes entries of different - depth in one list. The default value is ``True``. + This flag determines if a ToC entry is inserted again + at the beginning of its nested ToC listing. + This allows easier navigation to the top of a chapter, + but can be confusing because it mixes entries of different depth in one list. .. confval:: epub_tocscope + :type: :code-py:`'default' | 'includehidden'` + :default: :code-py:`'default'` - This setting control the scope of the epub table of contents. The setting - can have the following values: + This setting control the scope of the EPUB table of contents. + The setting can have the following values: - * ``'default'`` -- include all toc entries that are not hidden (default) - * ``'includehidden'`` -- include all toc entries + :code-py:`'default'` + Include all ToC entries that are not hidden + :code-py:`'includehidden'` + Include all ToC entries .. versionadded:: 1.2 .. confval:: epub_fix_images + :type: :code-py:`bool` + :default: :code-py:`False` - This flag determines if sphinx should try to fix image formats that are not - supported by some epub readers. At the moment palette images with a small - color table are upgraded. You need Pillow, the Python Image Library, - installed to use this option. The default value is ``False`` because the + Try and fix image formats that are not supported by some EPUB readers. + At the moment palette images with a small colour table are upgraded. + This is disabled by default because the automatic conversion may lose information. + You need the Python Image Library (Pillow_) installed to use this option. + + .. _Pillow: https://pypi.org/project/Pillow/ .. versionadded:: 1.2 .. confval:: epub_max_image_width + :type: :code-py:`int` + :default: :code-py:`0` - This option specifies the maximum width of images. If it is set to a value - greater than zero, images with a width larger than the given value are - scaled accordingly. If it is zero, no scaling is performed. The default - value is ``0``. You need the Python Image Library (Pillow) installed to use - this option. + This option specifies the maximum width of images. + If it is set to a valuevgreater than zero, + images with a width larger than the given value are scaled accordingly. + If it is zero, no scaling is performed. + You need the Python Image Library (Pillow_) installed to use this option. + + .. _Pillow: https://pypi.org/project/Pillow/ .. versionadded:: 1.2 .. confval:: epub_show_urls + :type: :code-py:`'footnote' | 'no' | 'inline'` + :default: :code-py:`'footnote'` - Control whether to display URL addresses. This is very useful for - readers that have no other means to display the linked URL. The - settings can have the following values: + Control how to display URL addresses. + This is very useful for readers that have no other means + to display the linked URL. + The setting can have the following values: - * ``'inline'`` -- display URLs inline in parentheses (default) - * ``'footnote'`` -- display URLs in footnotes - * ``'no'`` -- do not display URLs + :code-py:`'inline'` + Display URLs inline in parentheses. + :code-py:`'footnote'` + Display URLs in footnotes. + :code-py:`'no'` + Do not display URLs. - The display of inline URLs can be customized by adding CSS rules for the - class ``link-target``. + The display of inline URLs can be customised by adding CSS rules + for the class ``link-target``. .. versionadded:: 1.2 .. confval:: epub_use_index + :type: :code-py:`bool` + :default: The value of **html_use_index** - If true, add an index to the epub document. It defaults to the - :confval:`html_use_index` option but can be set independently for epub - creation. + Add an index to the EPUB document. .. versionadded:: 1.2 .. confval:: epub_writing_mode + :type: :code-py:`'horizontal' | 'vertical'` + :default: :code-py:`'horizontal'` - It specifies writing direction. It can accept ``'horizontal'`` (default) and - ``'vertical'`` + It specifies writing direction. + It can accept :code-py:`'horizontal'` and :code-py:`'vertical'` .. list-table:: + :align: left :header-rows: 1 :stub-columns: 1 - - * ``epub_writing_mode`` - * ``'horizontal'`` - * ``'vertical'`` - - * writing-mode [#]_ - * ``horizontal-tb`` - * ``vertical-rl`` - - * page progression - * left to right - * right to left - - * iBook's Scroll Theme support - * scroll-axis is vertical. - * scroll-axis is horizontal. + * - ``epub_writing_mode`` + - ``'horizontal'`` + - ``'vertical'`` + * - writing-mode_ + - ``horizontal-tb`` + - ``vertical-rl`` + * - page progression + - left to right + - right to left + * - iBook's Scroll Theme support + - scroll-axis is vertical. + - scroll-axis is horizontal. - .. [#] https://developer.mozilla.org/en-US/docs/Web/CSS/writing-mode + .. _writing-mode: https://developer.mozilla.org/en-US/docs/Web/CSS/writing-mode .. _latex-options: @@ -2149,241 +2769,295 @@ Options for LaTeX output These options influence LaTeX output. .. confval:: latex_engine + :type: :code-py:`'pdflatex' | 'xelatex' | 'lualatex' | 'platex' | 'uplatex'` + :default: :code-py:`'pdflatex'` + + The LaTeX engine to build the documentation. + The setting can have the following values: + + * :code-py:`'pdflatex'` -- PDFLaTeX (default) + * :code-py:`'xelatex'` -- XeLaTeX + * :code-py:`'lualatex'` -- LuaLaTeX + * :code-py:`'platex'` -- pLaTeX + * :code-py:`'uplatex'` -- upLaTeX + (default if :confval:`language` is :code-py:`'ja'`) + + .. caution:: + ``'pdflatex'``\ 's support for Unicode characters is limited. + If your project uses Unicode characters, + setting the engine to ``'xelatex'`` or ``'lualatex'`` + and making sure to use an OpenType font with wide-enough glyph coverage + is often easier than trying to make ``'pdflatex'`` work + with the extra Unicode characters. + Since Sphinx 2.0, the default typeface is GNU FreeFont, + which has good coverage of Latin, Cyrillic, and Greek glyphs. - The LaTeX engine to build the docs. The setting can have the following - values: - - * ``'pdflatex'`` -- PDFLaTeX (default) - * ``'xelatex'`` -- XeLaTeX - * ``'lualatex'`` -- LuaLaTeX - * ``'platex'`` -- pLaTeX - * ``'uplatex'`` -- upLaTeX (default if :confval:`language` is ``'ja'``) + .. note:: - ``'pdflatex'``\ 's support for Unicode characters is limited. + Sphinx 2.0 adds support to ``'pdflatex'`` in Latin language document of + occasional Cyrillic or Greek letters or words. + This is not automatic, see the discussion + of the ``'fontenc'`` key in :confval:`latex_elements` . .. note:: - 2.0 adds to ``'pdflatex'`` support in Latin language document of - occasional Cyrillic or Greek letters or words. This is not automatic, - see the discussion of the :confval:`latex_elements` ``'fontenc'`` key. - - If your project uses Unicode characters, setting the engine to - ``'xelatex'`` or ``'lualatex'`` and making sure to use an OpenType font - with wide-enough glyph coverage is often easier than trying to make - ``'pdflatex'`` work with the extra Unicode characters. Since Sphinx 2.0 - the default is the GNU FreeFont which covers well Latin, Cyrillic and - Greek. + Contrarily to :ref:`MathJaX math rendering in HTML output <math-support>`, + LaTeX requires some extra configuration to support Unicode literals in + :rst:dir:`math`: + the only comprehensive solution (as far as we know) is to + use ``'xelatex'`` or ``'lualatex'`` *and* to add + ``r'\usepackage{unicode-math}'`` + (e.g. via the :confval:`latex_elements` ``'preamble'`` key). + You may prefer ``r'\usepackage[math-style=literal]{unicode-math}'`` + to keep a Unicode literal such as ``α`` (U+03B1) as-is in output, + rather than being rendered as :math:`\alpha`. .. versionchanged:: 2.1.0 - - Use ``xelatex`` (and LaTeX package ``xeCJK``) by default for Chinese - documents. + Use ``xelatex`` (and LaTeX package ``xeCJK``) + by default for Chinese documents. .. versionchanged:: 2.2.1 - Use ``xelatex`` by default for Greek documents. .. versionchanged:: 2.3 - Add ``uplatex`` support. .. versionchanged:: 4.0 - - ``uplatex`` becomes the default setting of Japanese documents. - - Contrarily to :ref:`MathJaX math rendering in HTML output <math-support>`, - LaTeX requires some extra configuration to support Unicode literals in - :rst:dir:`math`: the only comprehensive solution (as far as we know) is to - use ``'xelatex'`` or ``'lualatex'`` *and* to add - ``r'\usepackage{unicode-math}'`` (e.g. via the :confval:`latex_elements` - ``'preamble'`` key). You may prefer - ``r'\usepackage[math-style=literal]{unicode-math}'`` to keep a Unicode - literal such as ``α`` (U+03B1) for example as is in output, rather than - being rendered as :math:`\alpha`. + Use ``uplatex`` by default for Japanese documents. .. confval:: latex_documents + :type: :code-py:`Sequence[tuple[str, str, str, str, str, bool]]` + :default: The default LaTeX documents - This value determines how to group the document tree into LaTeX source files. + This value determines how to group the document tree + into LaTeX source files. It must be a list of tuples ``(startdocname, targetname, title, author, - theme, toctree_only)``, where the items are: + theme, toctree_only)``, + where the items are: *startdocname* - String that specifies the :term:`document name` of the LaTeX file's master - document. All documents referenced by the *startdoc* document in TOC trees - will be included in the LaTeX file. (If you want to use the default root - document for your LaTeX build, provide your :confval:`root_doc` here.) + String that specifies the :term:`document name` of + the LaTeX file's master document. + All documents referenced by the *startdoc* document in + ToC trees will be included in the LaTeX file. + (If you want to use the default master document for your LaTeX build, + provide your :confval:`master_doc` here.) *targetname* - File name of the LaTeX file in the output directory. + File name of the LaTeX file in the output directory. *title* - LaTeX document title. Can be empty to use the title of the *startdoc* - document. This is inserted as LaTeX markup, so special characters like a - backslash or ampersand must be represented by the proper LaTeX commands if - they are to be inserted literally. + LaTeX document title. + Can be empty to use the title of the *startdoc* document. + This is inserted as LaTeX markup, + so special characters like a backslash or ampersand + must be represented by the proper LaTeX commands + if they are to be inserted literally. *author* - Author for the LaTeX document. The same LaTeX markup caveat as for *title* - applies. Use ``\\and`` to separate multiple authors, as in: - ``'John \\and Sarah'`` (backslashes must be Python-escaped to reach LaTeX). + Author for the LaTeX document. + The same LaTeX markup caveat as for *title* applies. + Use ``\\and`` to separate multiple authors, as in: ``'John \\and Sarah'`` + (backslashes must be Python-escaped to reach LaTeX). *theme* - LaTeX theme. See :confval:`latex_theme`. + LaTeX theme. + See :confval:`latex_theme`. *toctree_only* - Must be ``True`` or ``False``. If true, the *startdoc* document itself is - not included in the output, only the documents referenced by it via TOC - trees. With this option, you can put extra stuff in the master document - that shows up in the HTML, but not the LaTeX output. + Must be :code-py:`True` or :code-py:`False`. + If True, the *startdoc* document itself is not included in the output, + only the documents referenced by it via ToC trees. + With this option, you can put extra stuff in the master document + that shows up in the HTML, but not the LaTeX output. + + .. versionadded:: 0.3 + The 6th item ``toctree_only``. + Tuples with 5 items are still accepted. .. versionadded:: 1.2 In the past including your own document class required you to prepend the - document class name with the string "sphinx". This is not necessary - anymore. - - .. versionadded:: 0.3 - The 6th item ``toctree_only``. Tuples with 5 items are still accepted. + document class name with the string "sphinx". + This is not necessary anymore. .. confval:: latex_logo + :type: :code-py:`str` + :default: :code-py:`''` - If given, this must be the name of an image file (relative to the - configuration directory) that is the logo of the docs. It is placed at the - top of the title page. Default: ``None``. + If given, this must be the name of an image file + (path relative to the :term:`configuration directory`) + that is the logo of the documentation. + It is placed at the top of the title page. .. confval:: latex_toplevel_sectioning + :type: :code-py:`'part' | 'chapter' | 'section'` + :default: :code-py:`None` - This value determines the topmost sectioning unit. It should be chosen from - ``'part'``, ``'chapter'`` or ``'section'``. The default is ``None``; - the topmost - sectioning unit is switched by documentclass: ``section`` is used if - documentclass will be ``howto``, otherwise ``chapter`` will be used. + This value determines the topmost sectioning unit. + By default, the topmost sectioning unit is switched by documentclass: + ``section`` is used if documentclass will be ``howto``, + otherwise ``chapter`` is used be used. - Note that if LaTeX uses ``\part`` command, then the numbering of sectioning - units one level deep gets off-sync with HTML numbering, because LaTeX - numbers continuously ``\chapter`` (or ``\section`` for ``howto``.) + Note that if LaTeX uses :code-tex:`\\part` command, + then the numbering of sectioning units one level deep gets off-sync + with HTML numbering, + because LaTeX numbers :code-tex:`\\chapter` continuously + (or :code-tex:`\\section` for ``howto``). .. versionadded:: 1.4 .. confval:: latex_appendices + :type: :code-py:`Sequence[str]` + :default: :code-py:`()` A list of document names to append as an appendix to all manuals. + This is ignored if :confval:`latex_theme` is set to :code-py:`'howto'`. .. confval:: latex_domain_indices + :type: :code-py:`bool | Sequence[str]` + :default: :code-py:`True` + + If True, generate domain-specific indices in addition to the general index. + For e.g. the Python domain, this is the global module index. + + This value can be a Boolean or a list of index names that should be generated. + To find out the index name for a specific index, look at the HTML file name. + For example, the Python module index has the name ``'py-modindex'``. + + Example: - If true, generate domain-specific indices in addition to the general index. - For e.g. the Python domain, this is the global module index. Default is - ``True``. + .. code-block:: python - This value can be a bool or a list of index names that should be generated, - like for :confval:`html_domain_indices`. + latex_domain_indices = { + 'py-modindex', + } .. versionadded:: 1.0 + .. versionchanged:: 7.4 + Permit and prefer a set type. .. confval:: latex_show_pagerefs + :type: :code-py:`bool` + :default: :code-py:`False` - If true, add page references after internal references. This is very useful - for printed copies of the manual. Default is ``False``. + Add page references after internal references. + This is very useful for printed copies of the manual. .. versionadded:: 1.0 .. confval:: latex_show_urls + :type: :code-py:`'no' | 'footnote' | 'inline'` + :default: :code-py:`'no'` - Control whether to display URL addresses. This is very useful for printed - copies of the manual. The setting can have the following values: + Control how to display URL addresses. + This is very useful for printed copies of the manual. + The setting can have the following values: - * ``'no'`` -- do not display URLs (default) - * ``'footnote'`` -- display URLs in footnotes - * ``'inline'`` -- display URLs inline in parentheses + :code-py:`'no'` + Do not display URLs + :code-py:`'footnote'` + Display URLs in footnotes + :code-py:`'inline'` + Display URLs inline in parentheses .. versionadded:: 1.0 .. versionchanged:: 1.1 - This value is now a string; previously it was a boolean value, and a true - value selected the ``'inline'`` display. For backwards compatibility, - ``True`` is still accepted. + This value is now a string; previously it was a boolean value, + and a true value selected the :code-py:`'inline'` display. + For backwards compatibility, :code-py:`True` is still accepted. .. confval:: latex_use_latex_multicolumn - - The default is ``False``: it means that Sphinx's own macros are used for - merged cells from grid tables. They allow general contents (literal blocks, - lists, blockquotes, ...) but may have problems if the - :rst:dir:`tabularcolumns` directive was used to inject LaTeX mark-up of the - type ``>{..}``, ``<{..}``, ``@{..}`` as column specification. - - Setting to ``True`` means to use LaTeX's standard ``\multicolumn``; this is - incompatible with literal blocks in the horizontally merged cell, and also - with multiple paragraphs in such cell if the table is rendered using - ``tabulary``. + :type: :code-py:`bool` + :default: :code-py:`False` + + Use standard LaTeX's :code-tex:`\\multicolumn` for merged cells in tables. + + :code-py:`False` + Sphinx's own macros are used for merged cells from grid tables. + They allow general contents (literal blocks, lists, blockquotes, ...) + but may have problems if the :rst:dir:`tabularcolumns` directive + was used to inject LaTeX mark-up of the type + ``>{..}``, ``<{..}``, ``@{..}`` as column specification. + :code-py:`True` + Use LaTeX's standard :code-tex:`\\multicolumn`; + this is incompatible with literal blocks in horizontally merged cells, + and also with multiple paragraphs in such cells + if the table is rendered using ``tabulary``. .. versionadded:: 1.6 .. confval:: latex_table_style - - A list of styling classes (strings). Currently supported: - - - ``'booktabs'``: no vertical lines, and only 2 or 3 horizontal lines (the - latter if there is a header), using the booktabs_ package. - - - ``'borderless'``: no lines whatsoever. - - - ``'colorrows'``: the table rows are rendered with alternating background - colours. The interface to customize them is via :ref:`dedicated keys - <tablecolors>` of :ref:`latexsphinxsetup`. - - .. important:: - - With the ``'colorrows'`` style, the ``\rowcolors`` LaTeX command - becomes a no-op (this command has limitations and has never correctly - supported all types of tables Sphinx produces in LaTeX). Please - update your project to use instead - the :ref:`latex table color configuration <tablecolors>` keys. - - Default: ``['booktabs', 'colorrows']`` - - .. versionadded:: 5.3.0 - - .. versionchanged:: 6.0.0 - - Modify default from ``[]`` to ``['booktabs', 'colorrows']``. - - Each table can override the global style via ``:class:`` option, or - ``.. rst-class::`` for no-directive tables (cf. :ref:`table-directives`). - Currently recognized classes are ``booktabs``, ``borderless``, - ``standard``, ``colorrows``, ``nocolorrows``. The latter two can be - combined with any of the first three. The ``standard`` class produces - tables with both horizontal and vertical lines (as has been the default so - far with Sphinx). - - A single-row multi-column merged cell will obey the row colour, if it is - set. See also ``TableMergeColor{Header,Odd,Even}`` in the - :ref:`latexsphinxsetup` section. + :type: :code-py:`list[str]` + :default: :code-py:`['booktabs', 'colorrows']` + + A list of styling classes (strings). + Currently supported: + + :code-py:`'booktabs'` + No vertical lines, and only 2 or 3 horizontal lines + (the latter if there is a header), + using the booktabs_ package. + + :code-py:`'borderless'` + No lines whatsoever. + + :code-py:`'colorrows'` + The table rows are rendered with alternating background colours. + The interface to customise them is via + :ref:`dedicated keys <tablecolors>` of :ref:`latexsphinxsetup`. + + .. important:: + + With the :code-py:`'colorrows'` style, + the :code-tex:`\\rowcolors` LaTeX command becomes a no-op + (this command has limitations and has never correctly + supported all types of tables Sphinx produces in LaTeX). + Please update your project to use the + :ref:`latex table color configuration <tablecolors>` keys instead. + + Each table can override the global style via ``:class:`` option, + or ``.. rst-class::`` for no-directive tables (cf. :ref:`table-directives`). + Currently recognised classes are ``booktabs``, ``borderless``, + ``standard``, ``colorrows``, ``nocolorrows``. + The latter two can be combined with any of the first three. + The ``standard`` class produces tables with + both horizontal and vertical lines + (as has been the default so far with Sphinx). + + A single-row multi-column merged cell will obey the row colour, + if it is set. + See also ``TableMergeColor{Header,Odd,Even}`` + in the :ref:`latexsphinxsetup` section. .. note:: - - It is hard-coded in LaTeX that a single cell will obey the row colour - even if there is a column colour set via ``\columncolor`` from a - column specification (see :rst:dir:`tabularcolumns`). Sphinx provides - ``\sphinxnorowcolor`` which can be used like this: + * It is hard-coded in LaTeX that a single cell will obey the row colour + even if there is a column colour set via :code-tex:`\\columncolor` + from a column specification (see :rst:dir:`tabularcolumns`). + Sphinx provides :code-tex:`\\sphinxnorowcolor` which can be used + in a table column specification like this: .. code-block:: latex >{\columncolor{blue}\sphinxnorowcolor} - in a table column specification. - - - Sphinx also provides ``\sphinxcolorblend`` which however requires the - xcolor_ package. Here is an example: + * Sphinx also provides :code-tex:`\\sphinxcolorblend`, + which however requires the xcolor_ package. + Here is an example: .. code-block:: latex >{\sphinxcolorblend{!95!red}} - It means that in this column, the row colours will be slightly tinted - by red; refer to xcolor_ documentation for more on the syntax of its - ``\blendcolors`` command (a ``\blendcolors`` in place of - ``\sphinxcolorblend`` would modify colours of the cell *contents*, not - of the cell *background colour panel*...). You can find an example of - usage in the :ref:`dev-deprecated-apis` section of this document in - PDF format. + It means that in this column, + the row colours will be slightly tinted by red; + refer to xcolor_ documentation for more on the syntax of its + :code-tex:`\\blendcolors` command + (a :code-tex:`\\blendcolors` in place of :code-tex:`\\sphinxcolorblend` + would modify colours of the cell *contents*, + not of the cell *background colour panel*...). + You can find an example of usage in the :ref:`dev-deprecated-apis` + section of this document in PDF format. .. hint:: @@ -2391,19 +3065,21 @@ These options influence LaTeX output. cells of a given column use ``>{\noindent\color{<color>}}``, possibly in addition to the above. - - Multi-row merged cells, whether single column or multi-column + * Multi-row merged cells, whether single column or multi-column currently ignore any set column, row, or cell colour. - - It is possible for a simple cell to set a custom colour via the - :dudir:`raw` directive and the ``\cellcolor`` LaTeX command used - anywhere in the cell contents. This currently is without effect - in a merged cell, whatever its kind. + * It is possible for a simple cell to set a custom colour via the + :dudir:`raw` directive and + the :code-tex:`\\cellcolor` LaTeX command used + anywhere in the cell contents. + This currently is without effect in a merged cell, whatever its kind. .. hint:: - In a document not using ``'booktabs'`` globally, it is possible to style - an individual table via the ``booktabs`` class, but it will be necessary - to add ``r'\usepackage{booktabs}'`` to the LaTeX preamble. + In a document not using ``'booktabs'`` globally, + it is possible to style an individual table via the ``booktabs`` class, + but it will be necessary to add ``r'\usepackage{booktabs}'`` + to the LaTeX preamble. On the other hand one can use ``colorrows`` class for individual tables with no extra package (as Sphinx since 5.3.0 always loads colortbl_). @@ -2412,113 +3088,140 @@ These options influence LaTeX output. .. _colortbl: https://ctan.org/pkg/colortbl .. _xcolor: https://ctan.org/pkg/xcolor + .. versionadded:: 5.3.0 + + .. versionchanged:: 6.0.0 + + Modify default from :code-py:`[]` to :code-py:`['booktabs', 'colorrows']`. + .. confval:: latex_use_xindy + :type: :code-py:`bool` + :default: :code-py:`True if latex_engine in {'xelatex', 'lualatex'} else False` - If ``True``, the PDF build from the LaTeX files created by Sphinx - will use :program:`xindy` (doc__) rather than :program:`makeindex` - for preparing the index of general terms (from :rst:dir:`index` - usage). This means that words with UTF-8 characters will get + Use Xindy_ to prepare the index of general terms. + By default, the LaTeX builder uses :program:`makeindex` + for preparing the index of general terms . + This means that words with UTF-8 characters will be ordered correctly for the :confval:`language`. - __ https://xindy.sourceforge.net/ + .. _Xindy: https://xindy.sourceforge.net/ - - This option is ignored if :confval:`latex_engine` is ``'platex'`` - (Japanese documents; :program:`mendex` replaces :program:`makeindex` - then). + * This option is ignored if :confval:`latex_engine` is :code-py:`'platex'` + (Japanese documents; + :program:`mendex` replaces :program:`makeindex` then). - - The default is ``True`` for ``'xelatex'`` or ``'lualatex'`` as - :program:`makeindex`, if any indexed term starts with a non-ascii - character, creates ``.ind`` files containing invalid bytes for - UTF-8 encoding. With ``'lualatex'`` this then breaks the PDF - build. + * The default is :code-py:`True` + for :code-py:`'xelatex'` or :code-py:`'lualatex'` as + :program:`makeindex` creates ``.ind`` files containing invalid bytes + for the UTF-8 encoding if any indexed term starts with + a non-ASCII character. + With :code-py:`'lualatex'` this then breaks the PDF build. - - The default is ``False`` for ``'pdflatex'`` but ``True`` is - recommended for non-English documents as soon as some indexed - terms use non-ascii characters from the language script. + * The default is :code-py:`False` for :code-py:`'pdflatex'`, + but :code-py:`True` is recommended for non-English documents as soon + as some indexed terms use non-ASCII characters from the language script. - Sphinx adds to :program:`xindy` base distribution some dedicated support - for using ``'pdflatex'`` engine with Cyrillic scripts. And whether with - ``'pdflatex'`` or Unicode engines, Cyrillic documents handle correctly the - indexing of Latin names, even with diacritics. + Sphinx adds some dedicated support to the :program:`xindy` base distribution + for using :code-py:`'pdflatex'` engine with Cyrillic scripts. + With both :code-py:`'pdflatex'` and Unicode engines, + Cyrillic documents handle the indexing of Latin names correctly, + even with diacritics. .. versionadded:: 1.8 .. confval:: latex_elements + :type: :code-py:`dict[str, str]` + :default: :code-py:`{}` .. versionadded:: 0.5 - Its :ref:`documentation <latex_elements_confval>` has moved to :doc:`/latex`. + :ref:`See the full documentation for latex_elements <latex_elements_confval>`. .. confval:: latex_docclass + :type: :code-py:`dict[str, str]` + :default: :code-py:`{}` - A dictionary mapping ``'howto'`` and ``'manual'`` to names of real document - classes that will be used as the base for the two Sphinx classes. Default - is to use ``'article'`` for ``'howto'`` and ``'report'`` for ``'manual'``. + A dictionary mapping :code-py:`'howto'` and :code-py:`'manual'` + to names of real document classes that will be used as the base + for the two Sphinx classes. + Default is to use :code-py:`'article'` for :code-py:`'howto'` + and :code-py:`'report'` for :code-py:`'manual'`. .. versionadded:: 1.0 .. versionchanged:: 1.5 - - In Japanese docs (:confval:`language` is ``'ja'``), by default - ``'jreport'`` is used for ``'howto'`` and ``'jsbook'`` for ``'manual'``. + In Japanese documentation (:confval:`language` is :code-py:`'ja'`), + by default :code-py:`'jreport'` is used for :code-py:`'howto'` + and :code-py:`'jsbook'` for :code-py:`'manual'`. .. confval:: latex_additional_files + :type: :code-py:`Sequence[str]` + :default: :code-py:`()` - A list of file names, relative to the configuration directory, to copy to - the build directory when building LaTeX output. This is useful to copy - files that Sphinx doesn't copy automatically, e.g. if they are referenced in - custom LaTeX added in ``latex_elements``. Image files that are referenced - in source files (e.g. via ``.. image::``) are copied automatically. + A list of file names, relative to the :term:`configuration directory`, + to copy to the build directory when building LaTeX output. + This is useful to copy files that Sphinx doesn't copy automatically, + e.g. if they are referenced in custom LaTeX added in ``latex_elements``. + Image files that are referenced in source files (e.g. via ``.. image::``) + are copied automatically. You have to make sure yourself that the filenames don't collide with those of any automatically copied files. .. attention:: - - Filenames with extension ``.tex`` will automatically be handed over to - the PDF build process triggered by :option:`sphinx-build -M` - ``latexpdf`` or by :program:`make latexpdf`. If the file was added only - to be ``\input{}`` from a modified preamble, you must add a further - suffix such as ``.txt`` to the filename and adjust accordingly the - ``\input{}`` command added to the LaTeX document preamble. + Filenames with the ``.tex`` extension will be automatically + handed over to the PDF build process triggered by + :option:`sphinx-build -M latexpdf <sphinx-build -M>` + or by :program:`make latexpdf`. + If the file was added only to be :code-tex:`\\input{}` + from a modified preamble, + you must add a further suffix such as ``.txt`` to the filename + and adjust the :code-tex:`\\input{}` macro accordingly. .. versionadded:: 0.6 .. versionchanged:: 1.2 - This overrides the files which is provided from Sphinx such as - ``sphinx.sty``. + This overrides the files provided from Sphinx such as ``sphinx.sty``. .. confval:: latex_theme + :type: :code-py:`str` + :default: :code-py:`'manual'` - The "theme" that the LaTeX output should use. It is a collection of settings - for LaTeX output (ex. document class, top level sectioning unit and so on). + The "theme" that the LaTeX output should use. + It is a collection of settings for LaTeX output + (e.g. document class, top level sectioning unit and so on). - As a built-in LaTeX themes, ``manual`` and ``howto`` are bundled. + The bundled first-party LaTeX themes are *manual* and *howto*: ``manual`` - A LaTeX theme for writing a manual. It imports the ``report`` document - class (Japanese documents use ``jsbook``). + A LaTeX theme for writing a manual. + It imports the ``report`` document class + (Japanese documents use ``jsbook``). ``howto`` - A LaTeX theme for writing an article. It imports the ``article`` document - class (Japanese documents use ``jreport`` rather). :confval:`latex_appendices` - is available only for this theme. - - It defaults to ``'manual'``. + A LaTeX theme for writing an article. + It imports the ``article`` document class + (Japanese documents use ``jreport``). + :confval:`latex_appendices` is only available for this theme. .. versionadded:: 3.0 .. confval:: latex_theme_options + :type: :code-py:`dict[str, Any]` + :default: :code-py:`{}` - A dictionary of options that influence the look and feel of the selected - theme. + A dictionary of options that influence the + look and feel of the selected theme. + These are theme-specific. .. versionadded:: 3.1 .. confval:: latex_theme_path + :type: :code-py:`list[str]` + :default: :code-py:`[]` - A list of paths that contain custom LaTeX themes as subdirectories. Relative - paths are taken as relative to the configuration directory. + A list of paths that contain custom LaTeX themes as subdirectories. + Relative paths are taken as relative to the :term:`configuration directory`. .. versionadded:: 3.0 @@ -2530,42 +3233,47 @@ Options for text output These options influence text output. -.. confval:: text_newlines - - Determines which end-of-line character(s) are used in text output. - - * ``'unix'``: use Unix-style line endings (``\n``) - * ``'windows'``: use Windows-style line endings (``\r\n``) - * ``'native'``: use the line ending style of the platform the documentation - is built on +.. confval:: text_add_secnumbers + :type: :code-py:`bool` + :default: :code-py:`True` - Default: ``'unix'``. + Include section numbers in text output. - .. versionadded:: 1.1 + .. versionadded:: 1.7 -.. confval:: text_sectionchars +.. confval:: text_newlines + :type: :code-py:`'unix' | 'windows' | 'native'` + :default: :code-py:`'unix'` - A string of 7 characters that should be used for underlining sections. - The first character is used for first-level headings, the second for - second-level headings and so on. + Determines which end-of-line character(s) are used in text output. - The default is ``'*=-~"+`'``. + :code-py:`'unix'` + Use Unix-style line endings (``\n``). + :code-py:`'windows'` + Use Windows-style line endings (``\r\n``). + :code-py:`'native'` + Use the line ending style of the platform the documentation is built on. .. versionadded:: 1.1 -.. confval:: text_add_secnumbers +.. confval:: text_secnumber_suffix + :type: :code-py:`str` + :default: :code-py:`'. '` - A boolean that decides whether section numbers are included in text output. - Default is ``True``. + Suffix for section numbers in text output. + Set to :code-py:`' '` to suppress the final dot on section numbers. .. versionadded:: 1.7 -.. confval:: text_secnumber_suffix +.. confval:: text_sectionchars + :type: :code-py:`str` + :default: :code-py:`'*=-~"+\`'` - Suffix for section numbers in text output. Default: ``". "``. Set to - ``" "`` to suppress the final dot on section numbers. + A string of 7 characters that should be used for underlining sections. + The first character is used for first-level headings, + the second for second-level headings and so on. - .. versionadded:: 1.7 + .. versionadded:: 1.1 .. _man-options: @@ -2576,57 +3284,68 @@ Options for manual page output These options influence manual page output. .. confval:: man_pages + :type: :code-py:`Sequence[tuple[str, str, str, str, str]]` + :default: The default manual pages - This value determines how to group the document tree into manual pages. It - must be a list of tuples ``(startdocname, name, description, authors, - section)``, where the items are: + This value determines how to group the document tree + into manual pages. + It must be a list of tuples + ``(startdocname, name, description, authors, section)``, + where the items are: *startdocname* - String that specifies the :term:`document name` of the manual page's master - document. All documents referenced by the *startdoc* document in TOC trees - will be included in the manual file. (If you want to use the default - root document for your manual pages build, use your :confval:`root_doc` - here.) + String that specifies the :term:`document name` of + the manual page's master document. + All documents referenced by the *startdoc* document in + ToC trees will be included in the manual page. + (If you want to use the default master document for your manual pages build, + provide your :confval:`master_doc` here.) *name* - Name of the manual page. This should be a short string without spaces or - special characters. It is used to determine the file name as well as the + Name of the manual page. + This should be a short string without spaces or special characters. + It is used to determine the file name as well as the name of the manual page (in the NAME section). *description* - Description of the manual page. This is used in the NAME section. - Can be an empty string if you do not want to automatically generate - the NAME section. + Description of the manual page. + This is used in the NAME section. + Can be an empty string if you do not want to + automatically generate the NAME section. *authors* - A list of strings with authors, or a single string. Can be an empty - string or list if you do not want to automatically generate an AUTHORS - section in the manual page. + A list of strings with authors, or a single string. + Can be an empty string or list if you do not want to + automatically generate an AUTHORS section in the manual page. *section* - The manual page section. Used for the output file name as well as in the - manual page header. + The manual page section. + Used for the output file name as well as in the manual page header. .. versionadded:: 1.0 .. confval:: man_show_urls + :type: :code-py:`bool` + :default: :code-py:`False` - If true, add URL addresses after links. Default is ``False``. + Add URL addresses after links. .. versionadded:: 1.1 .. confval:: man_make_section_directory + :type: :code-py:`bool` + :default: :code-py:`True` - If true, make a section directory on build man page. Default is True. + Make a section directory on build man page. .. versionadded:: 3.3 - .. versionchanged:: 4.0 - The default is changed to ``False`` from ``True``. + .. versionchanged:: 4.0 + The default is now :code-py:`False` (previously :code-py:`True`). .. versionchanged:: 4.0.2 + Revert the change in the default. - The default is changed to ``True`` from ``False`` again. .. _texinfo-options: @@ -2636,266 +3355,275 @@ Options for Texinfo output These options influence Texinfo output. .. confval:: texinfo_documents + :type: :code-py:`Sequence[tuple[str, str, str, str, str, str, str, bool]]` + :default: The default Texinfo documents - This value determines how to group the document tree into Texinfo source - files. It must be a list of tuples ``(startdocname, targetname, title, - author, dir_entry, description, category, toctree_only)``, where the items - are: + This value determines how to group the document tree + into Texinfo source files. + It must be a list of tuples ``(startdocname, targetname, title, author, + dir_entry, description, category, toctree_only)``, + where the items are: *startdocname* - String that specifies the :term:`document name` of the the Texinfo file's - master document. All documents referenced by the *startdoc* document in - TOC trees will be included in the Texinfo file. (If you want to use the - default master document for your Texinfo build, provide your - :confval:`root_doc` here.) + String that specifies the :term:`document name` of + the Texinfo file's master document. + All documents referenced by the *startdoc* document in + ToC trees will be included in the Texinfo file. + (If you want to use the default master document for your Texinfo build, + provide your :confval:`master_doc` here.) *targetname* - File name (no extension) of the Texinfo file in the output directory. + File name (no extension) of the Texinfo file in the output directory. *title* - Texinfo document title. Can be empty to use the title of the *startdoc* - document. Inserted as Texinfo markup, so special characters like ``@`` and - ``{}`` will need to be escaped to be inserted literally. + Texinfo document title. + Can be empty to use the title of the *startdoc* + document. Inserted as Texinfo markup, + so special characters like ``@`` and ``{}`` will need to + be escaped to be inserted literally. *author* - Author for the Texinfo document. Inserted as Texinfo markup. Use ``@*`` - to separate multiple authors, as in: ``'John@*Sarah'``. + Author for the Texinfo document. + Inserted as Texinfo markup. + Use ``@*`` to separate multiple authors, as in: ``'John@*Sarah'``. *dir_entry* - The name that will appear in the top-level ``DIR`` menu file. + The name that will appear in the top-level ``DIR`` menu file. *description* - Descriptive text to appear in the top-level ``DIR`` menu file. + Descriptive text to appear in the top-level ``DIR`` menu file. *category* - Specifies the section which this entry will appear in the top-level - ``DIR`` menu file. + Specifies the section which this entry will appear in the top-level + ``DIR`` menu file. *toctree_only* - Must be ``True`` or ``False``. If true, the *startdoc* document itself is - not included in the output, only the documents referenced by it via TOC - trees. With this option, you can put extra stuff in the master document - that shows up in the HTML, but not the Texinfo output. + Must be :code-py:`True` or :code-py:`False`. + If True, the *startdoc* document itself is not included in the output, + only the documents referenced by it via ToC trees. + With this option, you can put extra stuff in the master document + that shows up in the HTML, but not the Texinfo output. .. versionadded:: 1.1 .. confval:: texinfo_appendices + :type: :code-py:`Sequence[str]` + :default: :code-py:`[]` A list of document names to append as an appendix to all manuals. .. versionadded:: 1.1 -.. confval:: texinfo_domain_indices - - If true, generate domain-specific indices in addition to the general index. - For e.g. the Python domain, this is the global module index. Default is - ``True``. +.. confval:: texinfo_cross_references + :type: :code-py:`bool` + :default: :code-py:`True` - This value can be a bool or a list of index names that should be generated, - like for :confval:`html_domain_indices`. + Generate inline references in a document. + Disabling inline references can make an info file more readable + with a stand-alone reader (``info``). - .. versionadded:: 1.1 + .. versionadded:: 4.4 -.. confval:: texinfo_show_urls +.. confval:: texinfo_domain_indices + :type: :code-py:`bool | Sequence[str]` + :default: :code-py:`True` - Control how to display URL addresses. + If True, generate domain-specific indices in addition to the general index. + For e.g. the Python domain, this is the global module index. - * ``'footnote'`` -- display URLs in footnotes (default) - * ``'no'`` -- do not display URLs - * ``'inline'`` -- display URLs inline in parentheses + This value can be a Boolean or a list of index names that should be generated. + To find out the index name for a specific index, look at the HTML file name. + For example, the Python module index has the name ``'py-modindex'``. - .. versionadded:: 1.1 + Example: -.. confval:: texinfo_no_detailmenu + .. code-block:: python - If true, do not generate a ``@detailmenu`` in the "Top" node's menu - containing entries for each sub-node in the document. Default is ``False``. + texinfo_domain_indices = { + 'py-modindex', + } - .. versionadded:: 1.2 + .. versionadded:: 1.1 + .. versionchanged:: 7.4 + Permit and prefer a set type. .. confval:: texinfo_elements + :type: :code-py:`dict[str, Any]` + :default: :code-py:`{}` - A dictionary that contains Texinfo snippets that override those Sphinx - usually puts into the generated ``.texi`` files. + A dictionary that contains Texinfo snippets that override those that + Sphinx usually puts into the generated ``.texi`` files. * Keys that you may want to override include: ``'paragraphindent'`` - Number of spaces to indent the first line of each paragraph, default - ``2``. Specify ``0`` for no indentation. + Number of spaces to indent the first line of each paragraph, + default ``2``. + Specify ``0`` for no indentation. ``'exampleindent'`` Number of spaces to indent the lines for examples or literal blocks, - default ``4``. Specify ``0`` for no indentation. + default ``4``. + Specify ``0`` for no indentation. ``'preamble'`` Texinfo markup inserted near the beginning of the file. ``'copying'`` - Texinfo markup inserted within the ``@copying`` block and displayed - after the title. The default value consists of a simple title page - identifying the project. - - * Keys that are set by other options and therefore should not be overridden - are: - - ``'author'`` - ``'body'`` - ``'date'`` - ``'direntry'`` - ``'filename'`` - ``'project'`` - ``'release'`` - ``'title'`` + Texinfo markup inserted within the ``@copying`` block + and displayed after the title. + The default value consists of a simple title page identifying the project. + + * Keys that are set by other options + and therefore should not be overridden are + ``'author'``, ``'body'``, ``'date'``, ``'direntry'`` + ``'filename'``, ``'project'``, ``'release'``, and ``'title'``. + + .. versionadded:: 1.1 + +.. confval:: texinfo_no_detailmenu + :type: :code-py:`bool` + :default: :code-py:`False` + + Do not generate a ``@detailmenu`` in the "Top" node's menu + containing entries for each sub-node in the document. + + .. versionadded:: 1.2 + +.. confval:: texinfo_show_urls + :type: :code-py:`'footnote' | 'no' | 'inline'` + :default: :code-py:`'footnote'` - .. versionadded:: 1.1 + Control how to display URL addresses. + The setting can have the following values: -.. confval:: texinfo_cross_references + :code-py:`'footnote'` + Display URLs in footnotes. + :code-py:`'no'` + Do not display URLs. + :code-py:`'inline'` + Display URLs inline in parentheses. - If false, do not generate inline references in a document. That makes - an info file more readable with stand-alone reader (``info``). - Default is ``True``. + .. versionadded:: 1.1 - .. versionadded:: 4.4 .. _qthelp-options: Options for QtHelp output -------------------------- -These options influence qthelp output. As this builder derives from the HTML -builder, the HTML options also apply where appropriate. +These options influence qthelp output. +This builder derives from the HTML builder, +so the HTML options also apply where appropriate. .. confval:: qthelp_basename + :type: :code-py:`str` + :default: The value of **project** - The basename for the qthelp file. It defaults to the :confval:`project` - name. + The basename for the qthelp file. .. confval:: qthelp_namespace + :type: :code-py:`str` + :default: :code-py:`'org.sphinx.{project_name}.{project_version}'` - The namespace for the qthelp file. It defaults to - ``org.sphinx.<project_name>.<project_version>``. + The namespace for the qthelp file. .. confval:: qthelp_theme + :type: :code-py:`str` + :default: :code-py:`'nonav'` The HTML theme for the qthelp output. - This defaults to ``'nonav'``. .. confval:: qthelp_theme_options + :type: :code-py:`dict[str, Any]` + :default: :code-py:`{}` - A dictionary of options that influence the look and feel of the selected - theme. These are theme-specific. For the options understood by the builtin - themes, see :ref:`this section <builtin-themes>`. - - -Options for the linkcheck builder ---------------------------------- - -.. confval:: linkcheck_ignore - - A list of regular expressions that match URIs that should not be checked - when doing a ``linkcheck`` build. Example:: - - linkcheck_ignore = [r'https://localhost:\d+/'] + A dictionary of options that influence the + look and feel of the selected theme. + These are theme-specific. + The options understood by the :ref:`builtin themes + <builtin-themes>` are described :ref:`here <builtin-themes>`. - .. versionadded:: 1.1 -.. confval:: linkcheck_allowed_redirects +Options for XML output +---------------------- - A dictionary that maps a pattern of the source URI to a pattern of the canonical - URI. The linkcheck builder treats the redirected link as "working" when: +.. confval:: xml_pretty + :type: :code-py:`bool` + :default: :code-py:`True` - - the link in the document matches the source URI pattern, and - - the redirect location matches the canonical URI pattern. + Pretty-print the XML. - Example: + .. versionadded:: 1.2 - .. code-block:: python - linkcheck_allowed_redirects = { - # All HTTP redirections from the source URI to the canonical URI will be treated as "working". - r'https://sphinx-doc\.org/.*': r'https://sphinx-doc\.org/en/master/.*' - } +Options for the linkcheck builder +--------------------------------- - If set, linkcheck builder will emit a warning when disallowed redirection - found. It's useful to detect unexpected redirects under :option:`the - warn-is-error mode <sphinx-build -W>`. +Filtering +~~~~~~~~~ - .. versionadded:: 4.1 +These options control which links the *linkcheck* builder checks, +and which failures and redirects it ignores. -.. confval:: linkcheck_request_headers +.. confval:: linkcheck_allowed_redirects + :type: :code-py:`dict[str, str]` + :default: :code-py:`{}` - A dictionary that maps baseurls to HTTP request headers. + A dictionary that maps a pattern of the source URI + to a pattern of the canonical URI. + The *linkcheck* builder treats the redirected link as "working" when: - The key is a URL base string like ``"https://www.sphinx-doc.org/"``. To specify - headers for other hosts, ``"*"`` can be used. It matches all hosts only when - the URL does not match other settings. + * the link in the document matches the source URI pattern, and + * the redirect location matches the canonical URI pattern. - The value is a dictionary that maps header name to its value. + The *linkcheck* builder will emit a warning when + it finds redirected links that don't meet the rules above. + It can be useful to detect unexpected redirects when using + :option:`the fail-on-warnings mode <sphinx-build --fail-on-warning>`. Example: .. code-block:: python - linkcheck_request_headers = { - "https://www.sphinx-doc.org/": { - "Accept": "text/html", - "Accept-Encoding": "utf-8", - }, - "*": { - "Accept": "text/html,application/xhtml+xml", - } + linkcheck_allowed_redirects = { + # All HTTP redirections from the source URI to + # the canonical URI will be treated as "working". + r'https://sphinx-doc\.org/.*': r'https://sphinx-doc\.org/en/master/.*' } - .. versionadded:: 3.1 - -.. confval:: linkcheck_retries - - The number of times the linkcheck builder will attempt to check a URL before - declaring it broken. Defaults to 1 attempt. - - .. versionadded:: 1.4 - -.. confval:: linkcheck_timeout - - The duration, in seconds, that the linkcheck builder will wait for a - response after each hyperlink request. Defaults to 30 seconds. - - .. versionadded:: 1.1 - -.. confval:: linkcheck_workers - - The number of worker threads to use when checking links. Default is 5 - threads. - - .. versionadded:: 1.1 + .. versionadded:: 4.1 .. confval:: linkcheck_anchors + :type: :code-py:`bool` + :default: :code-py:`True` - If true, check the validity of ``#anchor``\ s in links. Since this requires - downloading the whole document, it's considerably slower when enabled. - Default is ``True``. + Check the validity of ``#anchor``\ s in links. + Since this requires downloading the whole document, + it is considerably slower when enabled. .. versionadded:: 1.2 .. confval:: linkcheck_anchors_ignore + :type: :code-py:`Sequence[str]` + :default: :code-py:`["^!"]` - A list of regular expressions that match anchors Sphinx should skip when - checking the validity of anchors in links. This allows skipping anchors that - a website's JavaScript adds to control dynamic pages or when triggering an - internal REST request. Default is ``["^!"]``. + A list of regular expressions that match anchors that the *linkcheck* builder + should skip when checking the validity of anchors in links. + For example, this allows skipping anchors added by a website's JavaScript. .. tip:: - Use :confval:`linkcheck_anchors_ignore_for_url` to check a URL, but skip verifying that the anchors exist. .. note:: + If you want to ignore anchors of a specific page or + of pages that match a specific pattern + (but still check occurrences of the same page(s) that don't have anchors), + use :confval:`linkcheck_ignore` instead, + for example as follows: - If you want to ignore anchors of a specific page or of pages that match a - specific pattern (but still check occurrences of the same page(s) that - don't have anchors), use :confval:`linkcheck_ignore` instead, for example - as follows:: + .. code-block:: python linkcheck_ignore = [ 'https://www.sphinx-doc.org/en/1.7/intro.html#', @@ -2904,33 +3632,78 @@ Options for the linkcheck builder .. versionadded:: 1.5 .. confval:: linkcheck_anchors_ignore_for_url + :type: :code-py:`Sequence[str]` + :default: :code-py:`()` A list or tuple of regular expressions matching URLs - for which Sphinx should not check the validity of anchors. + for which the *linkcheck* builder should not check the validity of anchors. This allows skipping anchor checks on a per-page basis while still checking the validity of the page itself. - Default is an empty tuple ``()``. .. versionadded:: 7.1 +.. confval:: linkcheck_exclude_documents + :type: :code-py:`Sequence[str]` + :default: :code-py:`()` + + A list of regular expressions that match documents in which + the *linkcheck* builder should not check the validity of links. + This can be used for permitting link decay + in legacy or historical sections of the documentation. + + Example: + + .. code-block:: python + + # ignore all links in documents located in a subdirectory named 'legacy' + linkcheck_exclude_documents = [r'.*/legacy/.*'] + + .. versionadded:: 4.4 + +.. confval:: linkcheck_ignore + :type: :code-py:`Sequence[str]` + :default: :code-py:`()` + + A list of regular expressions that match URIs that should not be checked + when doing a ``linkcheck`` build. + + Example: + + .. code-block:: python + + linkcheck_ignore = [r'https://localhost:\d+/'] + + .. versionadded:: 1.1 + +HTTP Requests +~~~~~~~~~~~~~ + +These options control how the *linkcheck* builder makes HTTP requests, +including how it handles redirects and authentication, +and the number of workers to use. + .. confval:: linkcheck_auth + :type: :code-py:`Sequence[tuple[str, Any]]` + :default: :code-py:`[]` Pass authentication information when doing a ``linkcheck`` build. - A list of ``(regex_pattern, auth_info)`` tuples where the items are: + A list of :code-py:`(regex_pattern, auth_info)` tuples where the items are: *regex_pattern* A regular expression that matches a URI. *auth_info* - Authentication information to use for that URI. The value can be anything - that is understood by the ``requests`` library (see :ref:`requests - Authentication <requests:authentication>` for details). + Authentication information to use for that URI. + The value can be anything that is understood by the ``requests`` library + (see :ref:`requests authentication <requests:authentication>` for details). + + The *linkcheck* builder will use the first matching ``auth_info`` value + it can find in the :confval:`!linkcheck_auth` list, + so values earlier in the list have higher priority. - The ``linkcheck`` builder will use the first matching ``auth_info`` value - it can find in the :confval:`linkcheck_auth` list, so values earlier in the - list have higher priority. + Example: - Example:: + .. code-block:: python linkcheck_auth = [ ('https://foo\.yourcompany\.com/.+', ('johndoe', 'secret')), @@ -2939,81 +3712,123 @@ Options for the linkcheck builder .. versionadded:: 2.3 -.. confval:: linkcheck_rate_limit_timeout +.. confval:: linkcheck_allow_unauthorized + :type: :code-py:`bool` + :default: :code-py:`True` - The ``linkcheck`` builder may issue a large number of requests to the same - site over a short period of time. This setting controls the builder behavior - when servers indicate that requests are rate-limited. + When a webserver responds with an HTTP 401 (unauthorised) response, + the current default behaviour of the *linkcheck* builder is + to treat the link as "working". + To change that behaviour, set this option to :code-py:`False`. - If a server indicates when to retry (using the `Retry-After`_ header), - ``linkcheck`` always follows the server indication. + .. attention:: + The default value for this option will be changed in Sphinx 8.0; + from that version onwards, + HTTP 401 responses to checked hyperlinks will be treated + as "broken" by default. + + .. xref RemovedInSphinx80Warning + + .. versionadded:: 7.3 +.. confval:: linkcheck_rate_limit_timeout + :type: :code-py:`int` + :default: :code-py:`300` + + The *linkcheck* builder may issue a large number of requests to the same + site over a short period of time. + This setting controls the builder behaviour + when servers indicate that requests are rate-limited, + by setting the maximum duration (in seconds) that the builder will + wait for between each attempt before recording a failure. + + The *linkcheck* builder always respects a server's direction + of when to retry (using the `Retry-After`_ header). Otherwise, ``linkcheck`` waits for a minute before to retry and keeps doubling the wait time between attempts until it succeeds or exceeds the - ``linkcheck_rate_limit_timeout``. By default, the timeout is 300 seconds - and custom timeouts should be given in seconds. + :confval:`!linkcheck_rate_limit_timeout` (in seconds). + Custom timeouts should be given as a number of seconds. .. _Retry-After: https://datatracker.ietf.org/doc/html/rfc7231#section-7.1.3 .. versionadded:: 3.4 -.. confval:: linkcheck_exclude_documents +.. confval:: linkcheck_report_timeouts_as_broken + :type: :code-py:`bool` + :default: :code-py:`True` - A list of regular expressions that match documents in which Sphinx should - not check the validity of links. This can be used for permitting link decay - in legacy or historical sections of the documentation. + When an HTTP response is not received from a webserver before the configured + :confval:`linkcheck_timeout` expires, + the current default behaviour of the *linkcheck* builder is + to treat the link as 'broken'. + To report timeouts using a distinct report code of ``timeout``, + set :confval:`linkcheck_report_timeouts_as_broken` to :code-py:`False`. - Example:: + .. attention:: + From Sphinx 8.0 onwards, timeouts that occur while checking hyperlinks + will be reported using the new 'timeout' status code. - # ignore all links in documents located in a subfolder named 'legacy' - linkcheck_exclude_documents = [r'.*/legacy/.*'] + .. xref RemovedInSphinx80Warning - .. versionadded:: 4.4 + .. versionadded:: 7.3 -.. confval:: linkcheck_allow_unauthorized +.. confval:: linkcheck_request_headers + :type: :code-py:`dict[str, dict[str, str]]` + :default: :code-py:`{}` - When a webserver responds with an HTTP 401 (unauthorized) response, the - current default behaviour of Sphinx is to treat the link as "working". To - change that behaviour, set this option to ``False``. + A dictionary that maps URL (without paths) to HTTP request headers. - The default value for this option will be changed in Sphinx 8.0; from that - version onwards, HTTP 401 responses to checked hyperlinks will be treated - as "broken" by default. + The key is a URL base string like :code-py:`'https://www.sphinx-doc.org/'`. + To specify headers for other hosts, :code-py:`"*"` can be used. + It matches all hosts only when the URL does not match other settings. - .. versionadded:: 7.3 + The value is a dictionary that maps header name to its value. -.. confval:: linkcheck_report_timeouts_as_broken + Example: - When an HTTP response is not received from a webserver before the configured - :confval:`linkcheck_timeout` expires, - the current default behaviour of Sphinx is to treat the link as 'broken'. - To report timeouts using a distinct report code of ``timeout``, - set :confval:`linkcheck_report_timeouts_as_broken` to ``False``. + .. code-block:: python - From Sphinx 8.0 onwards, timeouts that occur while checking hyperlinks - will be reported using the new 'timeout' status code. + linkcheck_request_headers = { + "https://www.sphinx-doc.org/": { + "Accept": "text/html", + "Accept-Encoding": "utf-8", + }, + "*": { + "Accept": "text/html,application/xhtml+xml", + } + } - .. xref RemovedInSphinx80Warning + .. versionadded:: 3.1 - .. versionadded:: 7.3 +.. confval:: linkcheck_retries + :type: :code-py:`int` + :default: :code-py:`1` + The number of times the *linkcheck* builder + will attempt to check a URL before declaring it broken. -Options for the XML builder ---------------------------- + .. versionadded:: 1.4 -.. confval:: xml_pretty +.. confval:: linkcheck_timeout + :type: :code-py:`int` + :default: :code-py:`30` - If true, pretty-print the XML. Default is ``True``. + The duration, in seconds, that the *linkcheck* builder + will wait for a response after each hyperlink request. - .. versionadded:: 1.2 + .. versionadded:: 1.1 + +.. confval:: linkcheck_workers + :type: :code-py:`int` + :default: :code-py:`5` + + The number of worker threads to use when checking links. + .. versionadded:: 1.1 -.. rubric:: Footnotes -.. [1] A note on available globbing syntax: you can use the standard shell - constructs ``*``, ``?``, ``[...]`` and ``[!...]`` with the feature that - these all don't match slashes. A double star ``**`` can be used to - match any sequence of characters *including* slashes. +Domain options +============== .. _c-config: @@ -3021,124 +3836,255 @@ Options for the XML builder Options for the C domain ------------------------ -.. confval:: c_id_attributes +.. confval:: c_extra_keywords + :type: :code-py:`Set[str] | Sequence[str]` + :default: :code-py:`['alignas', 'alignof', 'bool', + 'complex', 'imaginary', 'noreturn', + 'static_assert', 'thread_local']` - A list of strings that the parser additionally should accept as attributes. - This can for example be used when attributes have been ``#define`` d for - portability. + A list of identifiers to be recognised as keywords by the C parser. - .. versionadded:: 3.0 + .. versionadded:: 4.0.3 + .. versionchanged:: 7.4 + :confval:`!c_extra_keywords` can now be a set. -.. confval:: c_paren_attributes +.. confval:: c_id_attributes + :type: :code-py:`Sequence[str]` + :default: :code-py:`()` - A list of strings that the parser additionally should accept as attributes - with one argument. That is, if ``my_align_as`` is in the list, then - ``my_align_as(X)`` is parsed as an attribute for all strings ``X`` that have - balanced braces (``()``, ``[]``, and ``{}``). This can for example be used - when attributes have been ``#define`` d for portability. + A sequence of strings that the parser should additionally accept + as attributes. + For example, this can be used when :code-c:`#define` + has been used for attributes, for portability. - .. versionadded:: 3.0 + Example: -.. confval:: c_extra_keywords + .. code-block:: python - A list of identifiers to be recognized as keywords by the C parser. - It defaults to ``['alignas', 'alignof', 'bool', 'complex', 'imaginary', - 'noreturn', 'static_assert', 'thread_local']``. + c_id_attributes = [ + 'my_id_attribute', + ] - .. versionadded:: 4.0.3 + .. versionadded:: 3.0 + .. versionchanged:: 7.4 + :confval:`!c_id_attributes` can now be a tuple. .. confval:: c_maximum_signature_line_length + :type: :code-py:`int | None` + :default: :code-py:`None` + + If a signature's length in characters exceeds the number set, + each parameter within the signature will be displayed on + an individual logical line. - If a signature's length in characters exceeds the number set, each - parameter will be displayed on an individual logical line. This is a - domain-specific setting, overriding :confval:`maximum_signature_line_length`. + When :code-py:`None`, there is no maximum length and the entire + signature will be displayed on a single logical line. + + This is a domain-specific setting, + overriding :confval:`maximum_signature_line_length`. .. versionadded:: 7.1 +.. confval:: c_paren_attributes + :type: :code-py:`Sequence[str]` + :default: :code-py:`()` + + A sequence of strings that the parser should additionally accept + as attributes with one argument. + That is, if ``my_align_as`` is in the list, + then :code-c:`my_align_as(X)` is parsed as an attribute + for all strings ``X`` that have balanced braces + (:code-c:`()`, :code-c:`[]`, and :code-c:`{}`). + For example, this can be used when :code-c:`#define` + has been used for attributes, for portability. + + Example: + + .. code-block:: python + + c_paren_attributes = [ + 'my_align_as', + ] + + .. versionadded:: 3.0 + .. versionchanged:: 7.4 + :confval:`!c_paren_attributes` can now be a tuple. + + .. _cpp-config: Options for the C++ domain -------------------------- -.. confval:: cpp_index_common_prefix +.. confval:: cpp_id_attributes + :type: :code-py:`Sequence[str]` + :default: :code-py:`()` + + A sequence of strings that the parser should additionally accept + as attributes. + For example, this can be used when :code-cpp:`#define` + has been used for attributes, for portability. + + Example: - A list of prefixes that will be ignored when sorting C++ objects in the - global index. For example ``['awesome_lib::']``. + .. code-block:: python + + cpp_id_attributes = [ + 'my_id_attribute', + ] .. versionadded:: 1.5 + .. versionchanged:: 7.4 + :confval:`!cpp_id_attributes` can now be a tuple. -.. confval:: cpp_id_attributes +.. confval:: cpp_index_common_prefix + :type: :code-py:`Sequence[str]` + :default: :code-py:`()` + + A list of prefixes that will be ignored + when sorting C++ objects in the global index. + + Example: - A list of strings that the parser additionally should accept as attributes. - This can for example be used when attributes have been ``#define`` d for - portability. + .. code-block:: python + + cpp_index_common_prefix = [ + 'awesome_lib::', + ] .. versionadded:: 1.5 +.. confval:: cpp_maximum_signature_line_length + :type: :code-py:`int | None` + :default: :code-py:`None` + + If a signature's length in characters exceeds the number set, + each parameter within the signature will be displayed on + an individual logical line. + + When :code-py:`None`, there is no maximum length and the entire + signature will be displayed on a single logical line. + + This is a domain-specific setting, + overriding :confval:`maximum_signature_line_length`. + + .. versionadded:: 7.1 + .. confval:: cpp_paren_attributes + :type: :code-py:`Sequence[str]` + :default: :code-py:`()` + + A sequence of strings that the parser should additionally accept + as attributes with one argument. + That is, if ``my_align_as`` is in the list, + then :code-cpp:`my_align_as(X)` is parsed as an attribute + for all strings ``X`` that have balanced braces + (:code-cpp:`()`, :code-cpp:`[]`, and :code-cpp:`{}`). + For example, this can be used when :code-cpp:`#define` + has been used for attributes, for portability. + + Example: - A list of strings that the parser additionally should accept as attributes - with one argument. That is, if ``my_align_as`` is in the list, then - ``my_align_as(X)`` is parsed as an attribute for all strings ``X`` that have - balanced braces (``()``, ``[]``, and ``{}``). This can for example be used - when attributes have been ``#define`` d for portability. + .. code-block:: python + + cpp_paren_attributes = [ + 'my_align_as', + ] .. versionadded:: 1.5 + .. versionchanged:: 7.4 + :confval:`!cpp_paren_attributes` can now be a tuple. -.. confval:: cpp_maximum_signature_line_length - If a signature's length in characters exceeds the number set, each - parameter will be displayed on an individual logical line. This is a - domain-specific setting, overriding :confval:`maximum_signature_line_length`. +Options for the Javascript domain +--------------------------------- + +.. confval:: javascript_maximum_signature_line_length + :type: :code-py:`int | None` + :default: :code-py:`None` + + If a signature's length in characters exceeds the number set, + each parameter within the signature will be displayed on + an individual logical line. + + When :code-py:`None`, there is no maximum length and the entire + signature will be displayed on a single logical line. + + This is a domain-specific setting, + overriding :confval:`maximum_signature_line_length`. .. versionadded:: 7.1 + Options for the Python domain ----------------------------- +.. confval:: add_module_names + :type: :code-py:`bool` + :default: :code-py:`True` + + A boolean that decides whether module names are prepended + to all :term:`object` names + (for object types where a "module" of some kind is defined), + e.g. for :rst:dir:`py:function` directives. + +.. confval:: modindex_common_prefix + :type: :code-py:`list[str]` + :default: :code-py:`[]` + + A list of prefixes that are ignored for sorting the Python module index + (e.g., if this is set to :code-py:`['foo.']`, + then ``foo.bar`` is shown under ``B``, not ``F``). + This can be handy if you document a project that consists of a + single package. + + .. caution:: + Works only for the HTML builder currently. + + .. versionadded:: 0.6 + .. confval:: python_display_short_literal_types + :type: :code-py:`bool` + :default: :code-py:`False` This value controls how :py:data:`~typing.Literal` types are displayed. - The setting is a boolean, default ``False``. Examples ~~~~~~~~ The examples below use the following :rst:dir:`py:function` directive: - .. code:: reStructuredText + .. code-block:: rst .. py:function:: serve_food(item: Literal["egg", "spam", "lobster thermidor"]) -> None - When ``False``, :py:data:`~typing.Literal` types display as per standard + When :code-py:`False`, :py:data:`~typing.Literal` types display as per standard Python syntax, i.e.: - .. code:: python + .. code-block:: python - serve_food(item: Literal["egg", "spam", "lobster thermidor"]) -> None + serve_food(item: Literal["egg", "spam", "lobster thermidor"]) -> None - When ``True``, :py:data:`~typing.Literal` types display with a short, + When :code-py:`True`, :py:data:`~typing.Literal` types display with a short, :PEP:`604`-inspired syntax, i.e.: - .. code:: python + .. code-block:: python - serve_food(item: "egg" | "spam" | "lobster thermidor") -> None + serve_food(item: "egg" | "spam" | "lobster thermidor") -> None .. versionadded:: 6.2 -.. confval:: python_use_unqualified_type_names - - If true, suppress the module name of the python reference if it can be - resolved. The default is ``False``. - - .. versionadded:: 4.0 - - .. note:: This configuration is still in experimental - .. confval:: python_maximum_signature_line_length + :type: :code-py:`int | None` + :default: :code-py:`None` If a signature's length in characters exceeds the number set, - each argument or type parameter will be displayed on an individual logical line. + each parameter within the signature will be displayed on + an individual logical line. + + When :code-py:`None`, there is no maximum length and the entire + signature will be displayed on a single logical line. + This is a domain-specific setting, overriding :confval:`maximum_signature_line_length`. @@ -3148,29 +4094,80 @@ Options for the Python domain for the latter, the signature length ignores the length of the type parameters list. - For instance, with ``python_maximum_signature_line_length = 20``, + For instance, with :code-py:`python_maximum_signature_line_length = 20`, only the list of type parameters will be wrapped while the arguments list will be rendered on a single line - .. code:: rst + .. code-block:: rst .. py:function:: add[T: VERY_LONG_SUPER_TYPE, U: VERY_LONG_SUPER_TYPE](a: T, b: U) .. versionadded:: 7.1 -Options for the Javascript domain ---------------------------------- +.. confval:: python_use_unqualified_type_names + :type: :code-py:`bool` + :default: :code-py:`False` -.. confval:: javascript_maximum_signature_line_length + Suppress the module name of the python reference if it can be resolved. + + .. versionadded:: 4.0 - If a signature's length in characters exceeds the number set, each - parameter will be displayed on an individual logical line. This is a - domain-specific setting, overriding :confval:`maximum_signature_line_length`. + .. caution:: + This feature is experimental. - .. versionadded:: 7.1 +.. confval:: trim_doctest_flags + :type: :code-py:`bool` + :default: :code-py:`True` -Example of configuration file ------------------------------ + Remove doctest flags (comments looking like :code-py:`# doctest: FLAG, ...`) + at the ends of lines and ``<BLANKLINE>`` markers for all code + blocks showing interactive Python sessions (i.e. doctests). + See the extension :mod:`~sphinx.ext.doctest` for more + possibilities of including doctests. + + .. versionadded:: 1.0 + .. versionchanged:: 1.1 + Now also removes ``<BLANKLINE>``. + + +Extension options +================= + +Extensions frequently have their own configuration options. +Those for Sphinx's first-party extensions are documented +in each :doc:`extension's page </usage/extensions/index>`. + + +Example configuration file +========================== + +.. code-block:: python + + # -- Project information ----------------------------------------------------- + # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information + + project = 'Test Project' + copyright = '2000-2042, The Test Project Authors' + author = 'The Authors' + version = release = '4.16' + + # -- General configuration ------------------------------------------------ + # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration + + exclude_patterns = [ + '_build', + 'Thumbs.db', + '.DS_Store', + ] + extensions = [] + language = 'en' + master_doc = 'index' + pygments_style = 'sphinx' + source_suffix = '.rst' + templates_path = ['_templates'] + + # -- Options for HTML output ---------------------------------------------- + # https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output -.. literalinclude:: /_static/conf.py.txt - :language: python + html_theme = 'alabaster' + html_static_path = ['_static'] diff --git a/doc/usage/domains/c.rst b/doc/usage/domains/c.rst index 3c1a41d..49aa5ca 100644 --- a/doc/usage/domains/c.rst +++ b/doc/usage/domains/c.rst @@ -24,7 +24,7 @@ The C domain (name **c**) is suited for documentation of C API. .. c:function:: PyObject *PyType_GenericAlloc(PyTypeObject *type, Py_ssize_t nitems) Note that you don't have to backslash-escape asterisks in the signature, as - it is not parsed by the reST inliner. + it is not parsed by the reStructuredText inliner. In the description of a function you can use the following info fields (see also :ref:`info-field-lists`). @@ -128,7 +128,7 @@ The C domain (name **c**) is suited for documentation of C API. Describes a C type, either as a typedef, or the alias for an unspecified type. -.. _c-roles: +.. _c-xref-roles: Cross-referencing C constructs ------------------------------ diff --git a/doc/usage/domains/cpp.rst b/doc/usage/domains/cpp.rst index 6c9372b..57cb932 100644 --- a/doc/usage/domains/cpp.rst +++ b/doc/usage/domains/cpp.rst @@ -568,7 +568,7 @@ following fields: .. versionadded:: 4.3 The ``retval`` field type. -.. _cpp-roles: +.. _cpp-xref-roles: Cross-referencing ----------------- diff --git a/doc/usage/domains/index.rst b/doc/usage/domains/index.rst index b5d43ce..8c47134 100644 --- a/doc/usage/domains/index.rst +++ b/doc/usage/domains/index.rst @@ -1,5 +1,7 @@ .. highlight:: rst +.. _usage-domains: + ======= Domains ======= @@ -121,7 +123,7 @@ This is particularly useful for literate programming: .. py:function:: spam(eggs) :no-typesetting: - .. code:: + .. code:: python def spam(eggs): pass diff --git a/doc/usage/domains/javascript.rst b/doc/usage/domains/javascript.rst index 630b52e..ba0ff10 100644 --- a/doc/usage/domains/javascript.rst +++ b/doc/usage/domains/javascript.rst @@ -120,7 +120,7 @@ The JavaScript domain (name **js**) provides the following directives: Describes the attribute *name* of *object*. -.. _js-roles: +.. _js-xref-roles: These roles are provided to refer to the described objects: diff --git a/doc/usage/domains/python.rst b/doc/usage/domains/python.rst index 96982f1..5b98baa 100644 --- a/doc/usage/domains/python.rst +++ b/doc/usage/domains/python.rst @@ -124,8 +124,9 @@ The following directives are provided for module and class contents: .. rst:directive:: .. py:data:: name Describes global data in a module, including both variables and values used - as "defined constants." Class and object attributes are not documented - using this environment. + as "defined constants." + Consider using :rst:dir:`py:type` for type aliases instead + and :rst:dir:`py:attribute` for class variables and instance attributes. .. rubric:: options @@ -259,6 +260,7 @@ The following directives are provided for module and class contents: Describes an object data attribute. The description should include information about the type of the data to be expected and whether it may be changed directly. + Type aliases should be documented with :rst:dir:`py:type`. .. rubric:: options @@ -315,6 +317,55 @@ The following directives are provided for module and class contents: Describe the location where the object is defined. The default value is the module specified by :rst:dir:`py:currentmodule`. +.. rst:directive:: .. py:type:: name + + Describe a :ref:`type alias <python:type-aliases>`. + + The type that the alias represents should be described + with the :rst:dir:`!canonical` option. + This directive supports an optional description body. + + For example: + + .. code-block:: rst + + .. py:type:: UInt64 + + Represent a 64-bit positive integer. + + will be rendered as follows: + + .. py:type:: UInt64 + :no-contents-entry: + :no-index-entry: + + Represent a 64-bit positive integer. + + .. rubric:: options + + .. rst:directive:option:: canonical + :type: text + + The canonical type represented by this alias, for example: + + .. code-block:: rst + + .. py:type:: StrPattern + :canonical: str | re.Pattern[str] + + Represent a regular expression or a compiled pattern. + + This is rendered as: + + .. py:type:: StrPattern + :no-contents-entry: + :no-index-entry: + :canonical: str | re.Pattern[str] + + Represent a regular expression or a compiled pattern. + + .. versionadded:: 7.4 + .. rst:directive:: .. py:method:: name(parameters) .. py:method:: name[type parameters](parameters) @@ -494,7 +545,7 @@ It is customary to put the opening bracket before the comma. Python 3.12 introduced *type parameters*, which are type variables declared directly within the class or function definition: -.. code:: python +.. code-block:: python class AnimalList[AnimalT](list[AnimalT]): ... @@ -504,7 +555,7 @@ declared directly within the class or function definition: The corresponding reStructuredText documentation would be: -.. code:: rst +.. code-block:: rst .. py:class:: AnimalList[AnimalT] @@ -522,7 +573,8 @@ Info field lists meta fields are added. -Inside Python object description directives, reST field lists with these fields +Inside Python object description directives, +reStructuredText field lists with these fields are recognized and formatted nicely: * ``param``, ``parameter``, ``arg``, ``argument``, ``key``, ``keyword``: @@ -604,7 +656,7 @@ word "or":: :vartype a_var: str or int :rtype: float or str -.. _python-roles: +.. _python-xref-roles: Cross-referencing Python objects -------------------------------- @@ -649,6 +701,10 @@ a matching identifier is found: .. note:: The role is also able to refer to property. +.. rst:role:: py:type + + Reference a type alias. + .. rst:role:: py:exc Reference an exception. A dotted name may be used. diff --git a/doc/usage/domains/restructuredtext.rst b/doc/usage/domains/restructuredtext.rst index 3a936a6..639b686 100644 --- a/doc/usage/domains/restructuredtext.rst +++ b/doc/usage/domains/restructuredtext.rst @@ -10,9 +10,10 @@ The reStructuredText domain (name **rst**) provides the following directives: .. rst:directive:: .. rst:directive:: name - Describes a reST directive. The *name* can be a single directive name or - actual directive syntax (`..` prefix and `::` suffix) with arguments that - will be rendered differently. For example:: + Describes a reStructuredText directive. + The *name* can be a single directive name or actual directive syntax + (`..` prefix and `::` suffix) with arguments that will be rendered differently. + For example:: .. rst:directive:: foo @@ -38,7 +39,7 @@ The reStructuredText domain (name **rst**) provides the following directives: .. rst:directive:: .. rst:directive:option:: name - Describes an option for reST directive. The *name* can be a single option + Describes an option for reStructuredText directive. The *name* can be a single option name or option name with arguments which separated with colon (``:``). For example:: @@ -77,7 +78,7 @@ The reStructuredText domain (name **rst**) provides the following directives: .. rst:directive:: .. rst:role:: name - Describes a reST role. For example:: + Describes a reStructuredText role. For example:: .. rst:role:: foo @@ -91,7 +92,7 @@ The reStructuredText domain (name **rst**) provides the following directives: Foo description. -.. _rst-roles: +.. _rst-xref-roles: These roles are provided to refer to the described objects: diff --git a/doc/usage/domains/standard.rst b/doc/usage/domains/standard.rst index 59b7e72..a676a2d 100644 --- a/doc/usage/domains/standard.rst +++ b/doc/usage/domains/standard.rst @@ -42,6 +42,44 @@ There is a set of directives allowing documenting command-line programs: ``cmdoption`` directive is a deprecated alias for the ``option`` directive. +.. rst:directive:: .. confval:: name + + Describes a configuration value or setting that the documented + code or program uses or defines. + Referenceable by :rst:role:`confval`. + + .. rst:directive:option:: type + :type: text + + Describes the type of the configuration value. + This is optional, and if specified will be interpreted as reStructuredText. + + .. rst:directive:option:: default + :type: text + + Describes the default value of the configuration value. + This is optional, and if specified will be interpreted as reStructuredText. + + Example: + + .. code-block:: rst + + .. confval:: the_answer + :type: ``int`` (a *number*) + :default: **42** + + This is a setting that controls the value of the answer. + + will be rendered as follows: + + .. confval:: the_answer + :no-contents-entry: + :no-index-entry: + :type: ``int`` (a *number*) + :default: **42** + + This is a setting that controls the value of the answer. + .. rst:directive:: .. envvar:: name Describes an environment variable that the documented code or program uses diff --git a/doc/usage/extensions/autodoc.rst b/doc/usage/extensions/autodoc.rst index c920de8..a2a093f 100644 --- a/doc/usage/extensions/autodoc.rst +++ b/doc/usage/extensions/autodoc.rst @@ -1,4 +1,6 @@ -.. highlight:: rest +.. highlight:: rst + +.. _ext-autodoc: :mod:`sphinx.ext.autodoc` -- Include documentation from docstrings ================================================================== @@ -12,13 +14,6 @@ This extension can import the modules you are documenting, and pull in documentation from docstrings in a semi-automatic way. -.. note:: - - For Sphinx (actually, the Python interpreter that executes Sphinx) to find - your module, it must be importable. That means that the module or the - package must be in one of the directories on :data:`sys.path` -- adapt your - :data:`sys.path` in the configuration file accordingly. - .. warning:: :mod:`~sphinx.ext.autodoc` **imports** the modules to be documented. If any @@ -43,6 +38,68 @@ docstrings to correct reStructuredText before :mod:`autodoc` processes them. .. _Google: https://google.github.io/styleguide/pyguide.html#38-comments-and-docstrings .. _NumPy: https://numpydoc.readthedocs.io/en/latest/format.html#docstring-standard +Getting started +--------------- + +Setup +..... +Activate the plugin by adding ``'sphinx.ext.autodoc'`` to the :confval:`extensions` +in your :file:`conf.py`:: + + extensions = [ + ... + 'sphinx.ext.autodoc', + ] + +Ensuring the code can be imported +................................. + +:mod:`~sphinx.ext.autodoc` analyses the code and docstrings by introspection after +importing the modules. For importing to work, you have to make sure that your +modules can be found by Sphinx and that dependencies can be resolved (if your +module does ``import foo``, but ``foo`` is not available in the python environment +that Sphinx runs in, your module import will fail). + +There are two ways to ensure this: + +1. Use an environment that contains your package and Sphinx. This can e.g. be your + local dev environment (with an editable install), or an environment in CI in + which you install Sphinx and your package. The regular installation process + ensures that your package can be found by Sphinx and that all dependencies are + available. + +2. It is alternatively possible to patch the Sphinx run so that it can operate + directly on the sources; e.g. if you want to be able to do a Sphinx build from a + source checkout. + + - Patch :data:`sys.path` in your Sphinx :file:`conf.py` to include the folder of + your sources. E.g. if you have a repository structure with :file:`doc/conf.py` + and your package is at :file:`src/mypackage`, then you should add:: + + sys.path.insert(0, os.path.abspath('../src')) + + to your :file:`conf.py`. + + - To cope with missing dependencies, specify the missing modules in + :confval:`autodoc_mock_imports`. + +Usage +..... + +You can now use the :ref:`autodoc-directives` to add formatted documentation for +Python code elements like functions, classes, modules, etc. For example, to document +the function ``io.open()``, reading its signature and docstring from the source file, +you'd write :: + + .. autofunction:: io.open + +You can also document whole classes or even modules automatically, using member +options for the auto directives, like :: + + .. automodule:: io + :members: + +.. _autodoc-directives: Directives ---------- @@ -271,7 +328,7 @@ inserting them into the page source under a suitable :rst:dir:`py:module`, once by specifying the option to :rst:dir:`automodule` directive. Note: this will lead to markup errors if the inherited members come from a - module whose docstrings are not reST formatted. + module whose docstrings are not reStructuredText formatted. .. versionadded:: 0.3 @@ -688,7 +745,7 @@ There are also config values that you can set: * ``'fully-qualified'`` -- Show the module name and its name of typehints * ``'short'`` -- Suppress the leading module names of the typehints - (ex. ``io.StringIO`` -> ``StringIO``) (default) + (e.g. ``io.StringIO`` -> ``StringIO``) (default) .. versionadded:: 4.4 @@ -816,8 +873,8 @@ needed docstring processing in event :event:`autodoc-process-docstring`: .. versionadded:: 4.1 .. versionchanged:: 4.3 - ``bases`` can contain a string as a base class name. It will be processed - as reST mark-up'ed text. + ``bases`` can contain a string as a base class name. + It will be processed as reStructuredText. Skipping members diff --git a/doc/usage/extensions/autosectionlabel.rst b/doc/usage/extensions/autosectionlabel.rst index b5b9b51..29b1c2a 100644 --- a/doc/usage/extensions/autosectionlabel.rst +++ b/doc/usage/extensions/autosectionlabel.rst @@ -1,4 +1,4 @@ -.. highlight:: rest +.. highlight:: rst :mod:`sphinx.ext.autosectionlabel` -- Allow reference sections using its title ============================================================================== @@ -51,6 +51,6 @@ Debugging --------- The ``WARNING: undefined label`` indicates that your reference in -:rst:role:`ref` is mis-spelled. Invoking :program:`sphinx-build` with ``-vv`` +:rst:role:`ref` is mis-spelled. Invoking :program:`sphinx-build` with ``-vvv`` (see :option:`-v`) will print all section names and the labels that have been generated for them. This output can help finding the right reference label. diff --git a/doc/usage/extensions/autosummary.rst b/doc/usage/extensions/autosummary.rst index a18460b..0a25d8d 100644 --- a/doc/usage/extensions/autosummary.rst +++ b/doc/usage/extensions/autosummary.rst @@ -1,4 +1,4 @@ -.. highlight:: rest +.. highlight:: rst :mod:`sphinx.ext.autosummary` -- Generate autodoc summaries =========================================================== diff --git a/doc/usage/extensions/coverage.rst b/doc/usage/extensions/coverage.rst index b9c493b..75ffc0f 100644 --- a/doc/usage/extensions/coverage.rst +++ b/doc/usage/extensions/coverage.rst @@ -6,15 +6,64 @@ This extension features one additional builder, the :class:`CoverageBuilder`. -.. class:: CoverageBuilder +.. todo:: Write this section. - To use this builder, activate the coverage extension in your configuration - file and give ``-M coverage`` on the command line. +.. note:: -.. todo:: Write this section. + The :doc:`sphinx-apidoc </man/sphinx-apidoc>` command can be used to + automatically generate API documentation for all code in a project, + avoiding the need to manually author these documents and keep them up-to-date. + +.. warning:: + + :mod:`~sphinx.ext.coverage` **imports** the modules to be documented. + If any modules have side effects on import, + these will be executed by the coverage builder when ``sphinx-build`` is run. + + If you document scripts (as opposed to library modules), + make sure their main routine is protected by a + ``if __name__ == '__main__'`` condition. + +.. note:: + + For Sphinx (actually, the Python interpreter that executes Sphinx) + to find your module, it must be importable. + That means that the module or the package must be in + one of the directories on :data:`sys.path` -- adapt your :data:`sys.path` + in the configuration file accordingly. + +To use this builder, activate the coverage extension in your configuration file +and run ``sphinx-build -M coverage`` on the command line. + + +Builder +------- + +.. py:class:: CoverageBuilder + + +Configuration +------------- + +Several configuration values can be used to specify +what the builder should check: + +.. confval:: coverage_modules + :type: ``list[str]`` + :default: ``[]`` + + List of Python packages or modules to test coverage for. + When this is provided, Sphinx will introspect each package + or module provided in this list as well + as all sub-packages and sub-modules found in each. + When this is not provided, Sphinx will only provide coverage + for Python packages and modules that it is aware of: + that is, any modules documented using the :rst:dir:`py:module` directive + provided in the :doc:`Python domain </usage/domains/python>` + or the :rst:dir:`automodule` directive provided by the + :mod:`~sphinx.ext.autodoc` extension. -Several configuration values can be used to specify what the builder -should check: + .. versionadded:: 7.4 .. confval:: coverage_ignore_modules diff --git a/doc/usage/extensions/doctest.rst b/doc/usage/extensions/doctest.rst index 1848e1f..a5fc2c7 100644 --- a/doc/usage/extensions/doctest.rst +++ b/doc/usage/extensions/doctest.rst @@ -1,4 +1,4 @@ -.. highlight:: rest +.. highlight:: rst :mod:`sphinx.ext.doctest` -- Test snippets in the documentation =============================================================== @@ -344,12 +344,12 @@ The doctest extension uses the following configuration values: .. confval:: doctest_test_doctest_blocks - If this is a nonempty string (the default is ``'default'``), standard reST - doctest blocks will be tested too. They will be assigned to the group name - given. + If this is a nonempty string (the default is ``'default'``), + standard reStructuredText doctest blocks will be tested too. + They will be assigned to the group name given. - reST doctest blocks are simply doctests put into a paragraph of their own, - like so:: + reStructuredText doctest blocks are simply doctests + put into a paragraph of their own, like so:: Some documentation text. @@ -378,8 +378,8 @@ The doctest extension uses the following configuration values: with the :mod:`~sphinx.ext.autodoc` extension without marking them up with a special directive. - Note though that you can't have blank lines in reST doctest blocks. They - will be interpreted as one block ending and another one starting. Also, - removal of ``<BLANKLINE>`` and ``# doctest:`` options only works in + Note though that you can't have blank lines in reStructuredText doctest blocks. + They will be interpreted as one block ending and another one starting. + Also, removal of ``<BLANKLINE>`` and ``# doctest:`` options only works in :rst:dir:`doctest` blocks, though you may set :confval:`trim_doctest_flags` to achieve that in all code blocks with Python console content. diff --git a/doc/usage/extensions/graphviz.rst b/doc/usage/extensions/graphviz.rst index 231bd36..0cd7cac 100644 --- a/doc/usage/extensions/graphviz.rst +++ b/doc/usage/extensions/graphviz.rst @@ -1,4 +1,4 @@ -.. highlight:: rest +.. highlight:: rst :mod:`sphinx.ext.graphviz` -- Add Graphviz graphs ================================================= @@ -66,7 +66,7 @@ It adds these directives: .. rst:directive:option:: layout: layout type of the graph :type: text - The layout of the graph (ex. ``dot``, ``neato`` and so on). A path to the + The layout of the graph (e.g. ``dot``, ``neato`` and so on). A path to the graphviz commands are also allowed. By default, :confval:`graphviz_dot` is used. diff --git a/doc/usage/extensions/ifconfig.rst b/doc/usage/extensions/ifconfig.rst index 837c0b3..17cdbc0 100644 --- a/doc/usage/extensions/ifconfig.rst +++ b/doc/usage/extensions/ifconfig.rst @@ -1,4 +1,4 @@ -.. highlight:: rest +.. highlight:: rst :mod:`sphinx.ext.ifconfig` -- Include content based on configuration ==================================================================== diff --git a/doc/usage/extensions/inheritance.rst b/doc/usage/extensions/inheritance.rst index 33284b5..90bbcc3 100644 --- a/doc/usage/extensions/inheritance.rst +++ b/doc/usage/extensions/inheritance.rst @@ -1,4 +1,4 @@ -.. highlight:: rest +.. highlight:: rst :mod:`sphinx.ext.inheritance_diagram` -- Include inheritance diagrams ===================================================================== diff --git a/doc/usage/extensions/intersphinx.rst b/doc/usage/extensions/intersphinx.rst index e81719f..f64b596 100644 --- a/doc/usage/extensions/intersphinx.rst +++ b/doc/usage/extensions/intersphinx.rst @@ -1,3 +1,5 @@ +.. _ext-intersphinx: + :mod:`sphinx.ext.intersphinx` -- Link to other projects' documentation ====================================================================== @@ -143,7 +145,7 @@ linking: Example: - .. code:: python + .. code-block:: python intersphinx_mapping = {'https://docs.python.org/': None} diff --git a/doc/usage/extensions/math.rst b/doc/usage/extensions/math.rst index 251d721..7d48d3a 100644 --- a/doc/usage/extensions/math.rst +++ b/doc/usage/extensions/math.rst @@ -1,4 +1,4 @@ -.. highlight:: rest +.. highlight:: rst .. _math-support: diff --git a/doc/usage/installation.rst b/doc/usage/installation.rst index 13dc6a9..7be6889 100644 --- a/doc/usage/installation.rst +++ b/doc/usage/installation.rst @@ -2,30 +2,101 @@ Installing Sphinx ================= -.. contents:: - :depth: 1 +Sphinx is a Python application. It can be installed in one of the ways described +below. + +.. contents:: Installation methods + :depth: 2 :local: :backlinks: none .. highlight:: console -Overview --------- +After installation, you can check that Sphinx is available by running :: + + $ sphinx-build --version + +This should print out the Sphinx version number. + + +.. tip:: + + For local development, it is + generally recommended to install Sphinx into a non-global environment + (using for example `venv`__ or `conda`__ environments). + This will allow for the use of separate sphinx versions and third-party extensions + for each sphinx project. + + __ https://docs.python.org/3/library/venv.html + __ https://conda.io/projects/conda/en/latest/user-guide/getting-started.html + + +.. _install-pypi: + +PyPI package +------------ + +Sphinx packages are published on the `Python Package Index +<https://pypi.org/project/Sphinx/>`_ (PyPI). The preferred tool for installing +packages from PyPI is :command:`pip`, which is included in all modern versions of +Python. + +Run the following command:: + + $ pip install -U sphinx + +.. tip:: + + To avoid issues when rebuilding your environment, + it is advisable to pin sphinx and third-party extension + versions in a `requirements.txt file`__:: + + $ pip install -r requirements.txt + + Or, if writing documentation for a Python package, + place the dependencies in the `pyproject.toml file`__:: + + $ pip install .[docs] -Sphinx is written in `Python`__ and supports Python 3.9+. It builds upon the -shoulders of many third-party libraries such as `Docutils`__ and `Jinja`__, -which are installed when Sphinx is installed. + __ https://pip.pypa.io/en/stable/reference/requirements-file-format/ + __ https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#dependencies-optional-dependencies -__ https://docs.python-guide.org/ -__ https://docutils.sourceforge.io/ -__ https://jinja.palletsprojects.com/ +.. _install-conda: +Conda package +------------- +To work with :command:`conda`, you need a conda-based Python distribution such as +`anaconda`__, `miniconda`__, `miniforge`__ or `micromamba`__. + +__ https://docs.anaconda.com/anaconda/ +__ https://docs.anaconda.com/miniconda/ +__ https://github.com/conda-forge/miniforge/ +__ https://mamba.readthedocs.io/en/latest/installation/micromamba-installation.html + + +Sphinx is available both via the *anaconda main* channel (maintained by Anaconda +Inc.) + +:: + + $ conda install sphinx + +as well as via the *conda-forge* community channel :: + + $ conda install -c conda-forge sphinx + +OS-specific package manager +--------------------------- + +You may install a global version of Sphinx into your system using OS-specific +package managers. However, be aware that this is less flexible and you may run into +compatibility issues if you want to work across different projects. Linux ------ +~~~~~ Debian/Ubuntu -~~~~~~~~~~~~~ +""""""""""""" Install either ``python3-sphinx`` using :command:`apt-get`: @@ -36,7 +107,7 @@ Install either ``python3-sphinx`` using :command:`apt-get`: If it not already present, this will install Python for you. RHEL, CentOS -~~~~~~~~~~~~ +"""""""""""" Install ``python-sphinx`` using :command:`yum`: @@ -47,7 +118,7 @@ Install ``python-sphinx`` using :command:`yum`: If it not already present, this will install Python for you. Other distributions -~~~~~~~~~~~~~~~~~~~ +""""""""""""""""""" Most Linux distributions have Sphinx in their package repositories. Usually the package is called ``python3-sphinx``, ``python-sphinx`` or ``sphinx``. Be @@ -55,19 +126,16 @@ aware that there are at least two other packages with ``sphinx`` in their name: a speech recognition toolkit (*CMU Sphinx*) and a full-text search database (*Sphinx search*). - macOS ------ +~~~~~ -Sphinx can be installed using `Homebrew`__, `MacPorts`__, or as part of -a Python distribution such as `Anaconda`__. +Sphinx can be installed using `Homebrew`__, `MacPorts`__. __ https://brew.sh/ __ https://www.macports.org/ -__ https://www.anaconda.com/download Homebrew -~~~~~~~~ +"""""""" :: @@ -78,7 +146,7 @@ For more information, refer to the `package overview`__. __ https://formulae.brew.sh/formula/sphinx-doc MacPorts -~~~~~~~~ +"""""""" Install either ``python3x-sphinx`` using :command:`port`: @@ -97,23 +165,15 @@ For more information, refer to the `package overview`__. __ https://www.macports.org/ports.php?by=library&substr=py39-sphinx -Anaconda -~~~~~~~~ - -:: - - $ conda install sphinx - Windows -------- +~~~~~~~ -Sphinx can be install using `Chocolatey`__ or -:ref:`installed manually <windows-other-method>`. +Sphinx can be install using `Chocolatey`__. __ https://chocolatey.org/ Chocolatey -~~~~~~~~~~ +"""""""""" :: @@ -127,89 +187,6 @@ For more information, refer to the `chocolatey page`__. __ https://chocolatey.org/packages/sphinx/ -.. _windows-other-method: - -Other Methods -~~~~~~~~~~~~~ - -Most Windows users do not have Python installed by default, so we begin with -the installation of Python itself. To check if you already have Python -installed, open the *Command Prompt* (:kbd:`⊞Win-r` and type :command:`cmd`). -Once the command prompt is open, type :command:`python --version` and press -Enter. If Python is installed, you will see the version of Python printed to -the screen. If you do not have Python installed, refer to the `Hitchhikers -Guide to Python's`__ Python on Windows installation guides. You must install -`Python 3`__. - -Once Python is installed, you can install Sphinx using :command:`pip`. Refer -to the :ref:`pip installation instructions <install-pypi>` below for more -information. - -__ https://docs.python-guide.org/ -__ https://docs.python-guide.org/starting/install3/win/ - - -.. _install-pypi: - -Installation from PyPI ----------------------- - -Sphinx packages are published on the `Python Package Index -<https://pypi.org/project/Sphinx/>`_. The preferred tool for installing -packages from *PyPI* is :command:`pip`. This tool is provided with all modern -versions of Python. - -On Linux or MacOS, you should open your terminal and run the following command. - -:: - - $ pip install -U sphinx - -On Windows, you should open *Command Prompt* (:kbd:`⊞Win-r` and type -:command:`cmd`) and run the same command. - -.. code-block:: doscon - - C:\> pip install -U sphinx - -After installation, type :command:`sphinx-build --version` on the command -prompt. If everything worked fine, you will see the version number for the -Sphinx package you just installed. - -Installation from *PyPI* also allows you to install the latest development -release. You will not generally need (or want) to do this, but it can be -useful if you see a possible bug in the latest stable release. To do this, use -the ``--pre`` flag. - -:: - - $ pip install -U --pre sphinx - -Using virtual environments -~~~~~~~~~~~~~~~~~~~~~~~~~~ - -When installing Sphinx using pip, -it is highly recommended to use *virtual environments*, -which isolate the installed packages from the system packages, -thus removing the need to use administrator privileges. -To create a virtual environment in the ``.venv`` directory, -use the following command. - -:: - - $ python -m venv .venv - -.. seealso:: :mod:`venv` -- creating virtual environments - -.. warning:: - - Note that in some Linux distributions, such as Debian and Ubuntu, - this might require an extra installation step as follows. - - .. code-block:: console - - $ apt-get install python3-venv - Docker ------ @@ -251,6 +228,17 @@ For more details, please read `README file`__ of docker images. .. __: https://hub.docker.com/r/sphinxdoc/sphinx +Installation of the latest development release +---------------------------------------------- + +You can install the latest development from *PyPI* using the ``--pre`` flag:: + + $ pip install -U --pre sphinx + +.. warning:: + + You will not generally need (or want) to do this, but it can be + useful if you see a possible bug in the latest stable release. Installation from source ------------------------ diff --git a/doc/usage/quickstart.rst b/doc/usage/quickstart.rst index fcbfa80..774a581 100644 --- a/doc/usage/quickstart.rst +++ b/doc/usage/quickstart.rst @@ -54,7 +54,8 @@ to contain the root of the "table of contents tree" (or *toctree*). This is one of the main things that Sphinx adds to reStructuredText, a way to connect multiple files to a single hierarchy of documents. -.. sidebar:: reStructuredText directives +.. admonition:: reStructuredText directives + :class: note ``toctree`` is a reStructuredText :dfn:`directive`, a very versatile piece of markup. Directives can have arguments, options and content. @@ -95,7 +96,9 @@ documents to include are given as :term:`document name`\ s, which in short means that you leave off the file name extension and use forward slashes (``/``) as directory separators. -|more| Read more about :ref:`the toctree directive <toctree-directive>`. +.. seealso:: + + Read more about :ref:`the toctree directive <toctree-directive>`. You can now create the files you listed in the ``toctree`` and add content, and their section titles will be inserted (up to the ``maxdepth`` level) at the @@ -118,8 +121,11 @@ for this document -- use the "Show Source" link in the sidebar. .. todo:: Update the below link when we add new guides on these. -|more| See :doc:`/usage/restructuredtext/index` for a more in-depth -introduction to reStructuredText, including markup added by Sphinx. +.. seealso:: + + :doc:`/usage/restructuredtext/index` + for a more in-depth introduction to reStructuredText, + including markup added by Sphinx. Running the build @@ -137,8 +143,10 @@ directory in which you want to place the built documentation. The :option:`-M <sphinx-build -M>` option selects a builder; in this example Sphinx will build HTML files. -|more| Refer to the :doc:`sphinx-build man page </man/sphinx-build>` for all -options that :program:`sphinx-build` supports. +.. seealso:: + + Refer to the :doc:`sphinx-build man page </man/sphinx-build>` + for all options that :program:`sphinx-build` supports. However, :program:`sphinx-quickstart` script creates a :file:`Makefile` and a :file:`make.bat` which make life even easier for you. These can be executed by @@ -220,8 +228,10 @@ Each domain will have special rules for how the signatures can look like, and make the formatted output look pretty, or add specific features like links to parameter types, e.g. in the C/C++ domains. -|more| See :doc:`/usage/domains/index` for all the available domains -and their directives/roles. +.. seealso:: + + :doc:`/usage/domains/index` + for all the available domains and their directives/roles. Basic configuration @@ -245,8 +255,10 @@ Keep in mind that the file uses Python syntax for strings, numbers, lists and so on. The file is saved in UTF-8 by default, as indicated by the encoding declaration in the first line. -|more| See :doc:`/usage/configuration` for documentation of all available -config values. +.. seealso:: + + :doc:`/usage/configuration` + for documentation of all available config values. .. todo:: Move this entire doc to a different section @@ -259,42 +271,10 @@ source files, in documentation strings. Sphinx supports the inclusion of docstrings from your modules with an :dfn:`extension` (an extension is a Python module that provides additional features for Sphinx projects) called *autodoc*. -In order to use *autodoc*, you need to activate it in :file:`conf.py` by -putting the string ``'sphinx.ext.autodoc'`` into the list assigned to the -:confval:`extensions` config value:: - - extensions = ['sphinx.ext.autodoc'] - -Then, you have a few additional directives at your disposal. For example, to -document the function ``io.open()``, reading its signature and -docstring from the source file, you'd write this:: - - .. autofunction:: io.open - -You can also document whole classes or even modules automatically, using member -options for the auto directives, like :: +.. seealso:: - .. automodule:: io - :members: - -*autodoc* needs to import your modules in order to extract the docstrings. -Therefore, you must add the appropriate path to :py:data:`sys.path` in your -:file:`conf.py`. - -.. warning:: - - :mod:`~sphinx.ext.autodoc` **imports** the modules to be documented. If any - modules have side effects on import, these will be executed by ``autodoc`` - when ``sphinx-build`` is run. - - If you document scripts (as opposed to library modules), make sure their - main routine is protected by a ``if __name__ == '__main__'`` condition. - -|more| See :mod:`sphinx.ext.autodoc` for the complete description of the -features of autodoc. - - -.. todo:: Move this doc to another section + :mod:`sphinx.ext.autodoc` + for the complete description of the features of autodoc. Intersphinx ----------- @@ -322,8 +302,10 @@ download the list of valid targets). Intersphinx also works for some other :term:`domain`\'s roles including ``:ref:``, however it doesn't work for ``:doc:`` as that is non-domain role. -|more| See :mod:`sphinx.ext.intersphinx` for the complete description of the -features of intersphinx. +.. seealso:: + + :mod:`sphinx.ext.intersphinx` + for the complete description of the features of intersphinx. More topics to be covered @@ -342,7 +324,3 @@ More topics to be covered .. [#] This is the usual layout. However, :file:`conf.py` can also live in another directory, the :term:`configuration directory`. Refer to the :doc:`sphinx-build man page </man/sphinx-build>` for more information. - -.. |more| image:: /_static/more.png - :align: middle - :alt: more info diff --git a/doc/usage/referencing.rst b/doc/usage/referencing.rst index c2ad715..5761166 100644 --- a/doc/usage/referencing.rst +++ b/doc/usage/referencing.rst @@ -12,9 +12,10 @@ text will be the same as *target*. There are some additional facilities, however, that make cross-referencing roles more versatile: -* You may supply an explicit title and reference target, like in reST direct - hyperlinks: ``:role:`title <target>``` will refer to *target*, but the link - text will be *title*. +* You may supply an explicit title and reference target, + like in reStructuredText direct hyperlinks: + ``:role:`title <target>``` will refer to *target*, + but the link text will be *title*. * If you prefix the content with ``!``, no reference/hyperlink will be created. @@ -75,11 +76,11 @@ Cross-referencing objects These roles are described with their respective domains: -* :ref:`Python <python-roles>` -* :ref:`C <c-roles>` -* :ref:`C++ <cpp-roles>` -* :ref:`JavaScript <js-roles>` -* :ref:`ReST <rst-roles>` +* :ref:`Python <python-xref-roles>` +* :ref:`C <c-xref-roles>` +* :ref:`C++ <cpp-xref-roles>` +* :ref:`JavaScript <js-xref-roles>` +* :ref:`reStructuredText <rst-xref-roles>` .. _ref-role: @@ -89,10 +90,11 @@ Cross-referencing arbitrary locations .. rst:role:: ref - To support cross-referencing to arbitrary locations in any document, the - standard reST labels are used. For this to work label names must be unique - throughout the entire documentation. There are two ways in which you can - refer to labels: + To support cross-referencing to arbitrary locations in any document, + the standard reStructuredText labels are used. + For this to work label names must be unique + throughout the entire documentation. + There are two ways in which you can refer to labels: * If you place a label directly before a section title, you can reference to it with ``:ref:`label-name```. For example:: @@ -165,8 +167,9 @@ Referencing downloadable files .. rst:role:: download - This role lets you link to files within your source tree that are not reST - documents that can be viewed, but files that can be downloaded. + This role lets you link to files within your source tree + that are not reStructuredText documents that can be viewed, + but files that can be downloaded. When you use this role, the referenced file is automatically marked for inclusion in the output when building (obviously, for HTML output only). @@ -202,8 +205,9 @@ Cross-referencing figures by figure number .. rst:role:: numref - Link to the specified figures, tables, code-blocks and sections; the standard - reST labels are used. When you use this role, it will insert a reference to + Link to the specified figures, tables, code-blocks and sections; + the standard reStructuredText labels are used. + When you use this role, it will insert a reference to the figure with link text by its figure number like "Fig. 1.1". If an explicit link text is given (as usual: ``:numref:`Image of Sphinx (Fig. @@ -222,6 +226,13 @@ Cross-referencing other items of interest The following roles do possibly create a cross-reference, but do not refer to objects: +.. rst:role:: confval + + A configuration value or setting. + Index entries are generated. + Also generates a link to the matching :rst:dir:`confval` directive, + if it exists. + .. rst:role:: envvar An environment variable. Index entries are generated. Also generates a link diff --git a/doc/usage/restructuredtext/basics.rst b/doc/usage/restructuredtext/basics.rst index 7aab544..5354748 100644 --- a/doc/usage/restructuredtext/basics.rst +++ b/doc/usage/restructuredtext/basics.rst @@ -9,24 +9,26 @@ reStructuredText Primer reStructuredText is the default plaintext markup language used by Sphinx. This section is a brief introduction to reStructuredText (reST) concepts and syntax, intended to provide authors with enough information to author documents -productively. Since reST was designed to be a simple, unobtrusive markup +productively. Since reStructuredText was designed to be a simple, unobtrusive markup language, this will not take too long. .. seealso:: The authoritative `reStructuredText User Documentation - <https://docutils.sourceforge.io/rst.html>`_. The "ref" links in this - document link to the description of the individual constructs in the reST - reference. + <https://docutils.sourceforge.io/rst.html>`_. + The "ref" links in this document link to the description of + the individual constructs in the reStructuredText reference. Paragraphs ---------- -The paragraph (:duref:`ref <paragraphs>`) is the most basic block in a reST -document. Paragraphs are simply chunks of text separated by one or more blank -lines. As in Python, indentation is significant in reST, so all lines of the -same paragraph must be left-aligned to the same level of indentation. +The paragraph (:duref:`ref <paragraphs>`) is the most basic block +in a reStructuredText document. +Paragraphs are simply chunks of text separated by one or more blank lines. +As in Python, indentation is significant in reStructuredText, +so all lines of the same paragraph must be left-aligned +to the same level of indentation. .. _rst-inline-markup: @@ -34,7 +36,7 @@ same paragraph must be left-aligned to the same level of indentation. Inline markup ------------- -The standard reST inline markup is quite simple: use +The standard reStructuredText inline markup is quite simple: use * one asterisk: ``*text*`` for emphasis (italics), * two asterisks: ``**text**`` for strong emphasis (boldface), and @@ -53,7 +55,7 @@ Be aware of some restrictions of this markup: These restrictions may be lifted in future versions of the docutils. It is also possible to replace or expand upon some of this inline markup with -roles. Refer to :ref:`rst-roles-alt` for more information. +roles. Refer to :ref:`rst-roles` for more information. Lists and Quote-like blocks @@ -220,8 +222,8 @@ You can also separate the link and the target definition (:duref:`ref Internal links ~~~~~~~~~~~~~~ -Internal linking is done via a special reST role provided by Sphinx, see the -section on specific markup, :ref:`ref-role`. +Internal linking is done via a special reStructuredText role provided by Sphinx, +see the section on specific markup, :ref:`ref-role`. .. _rst-sections: @@ -250,7 +252,7 @@ follow: * ``^`` for subsubsections * ``"`` for paragraphs -Of course, you are free to use your own marker characters (see the reST +Of course, you are free to use your own marker characters (see the reStructuredText documentation), and use a deeper nesting level, but keep in mind that most target formats (HTML, LaTeX) have a limited supported nesting depth. @@ -281,10 +283,7 @@ at the beginning of documents. Refer to :doc:`field-lists` for more information. -.. TODO This ref should be 'rst-roles', but that already exists. Rename the -.. other ones - -.. _rst-roles-alt: +.. _rst-roles: Roles ----- @@ -311,8 +310,8 @@ Refer to :doc:`roles` for roles added by Sphinx. Explicit Markup --------------- -"Explicit markup" (:duref:`ref <explicit-markup-blocks>`) is used in reST for -most constructs that need special handling, such as footnotes, +"Explicit markup" (:duref:`ref <explicit-markup-blocks>`) is used in +reStructuredText for most constructs that need special handling, such as footnotes, specially-highlighted paragraphs, comments, and generic directives. An explicit markup block begins with a line starting with ``..`` followed by @@ -328,8 +327,8 @@ Directives ---------- A directive (:duref:`ref <directives>`) is a generic block of explicit markup. -Along with roles, it is one of the extension mechanisms of reST, and Sphinx -makes heavy use of it. +Along with roles, it is one of the extension mechanisms of reStructuredText, +and Sphinx makes heavy use of it. Docutils supports the following directives: @@ -380,6 +379,12 @@ Docutils supports the following directives: When the default domain contains a ``class`` directive, this directive will be shadowed. Therefore, Sphinx re-exports it as ``rst-class``. + .. tip:: + + If you want to add a class to a directive, + you may consider the ``:class:`` :dudir:`option <common-options>` instead, + which is supported by most directives and allows for a more compact notation. + * HTML specifics: - :dudir:`meta` @@ -444,7 +449,7 @@ it does not start with a space. Images ------ -reST supports an image directive (:dudir:`ref <image>`), used like so:: +reStructuredText supports an image directive (:dudir:`ref <image>`), used like so:: .. image:: gnu.png (options) @@ -510,9 +515,9 @@ footnotes without names (``[#]_``). Citations --------- -Standard reST citations (:duref:`ref <citations>`) are supported, with the -additional feature that they are "global", i.e. all citations can be referenced -from all files. Use them like so:: +Standard reStructuredText citations (:duref:`ref <citations>`) are supported, +with the additional feature that they are "global", +i.e. all citations can be referenced from all files. Use them like so:: Lorem ipsum [Ref]_ dolor sit amet. @@ -525,9 +530,9 @@ numeric or begins with ``#``. Substitutions ------------- -reST supports "substitutions" (:duref:`ref <substitution-definitions>`), which -are pieces of text and/or markup referred to in the text by ``|name|``. They -are defined like footnotes with explicit markup blocks, like this:: +reStructuredText supports "substitutions" (:duref:`ref <substitution-definitions>`), +which are pieces of text and/or markup referred to in the text by ``|name|``. +They are defined like footnotes with explicit markup blocks, like this:: .. |name| replace:: replacement *text* @@ -536,8 +541,8 @@ or this:: .. |caution| image:: warning.png :alt: Warning! -See the :duref:`reST reference for substitutions <substitution-definitions>` -for details. +See the :duref:`reStructuredText reference for substitutions +<substitution-definitions>` for details. .. index:: ! pair: global; substitutions @@ -584,7 +589,7 @@ directive:: will generate the following HTML output: -.. code:: html +.. code-block:: html <meta name="description" content="The Sphinx documentation builder"> <meta name="keywords" content="Sphinx, documentation, builder"> @@ -612,7 +617,7 @@ Source encoding --------------- Since the easiest way to include special characters like em dashes or copyright -signs in reST is to directly write them as Unicode characters, one has to +signs in reStructuredText is to directly write them as Unicode characters, one has to specify an encoding. Sphinx assumes source files to be encoded in UTF-8 by default; you can change this with the :confval:`source_encoding` config value. @@ -620,7 +625,8 @@ default; you can change this with the :confval:`source_encoding` config value. Gotchas ------- -There are some problems one commonly runs into while authoring reST documents: +There are some problems one commonly runs into +while authoring reStructuredText documents: * **Separation of inline markup:** As said above, inline markup spans must be separated from the surrounding text by non-word characters, you have to use a diff --git a/doc/usage/restructuredtext/directives.rst b/doc/usage/restructuredtext/directives.rst index ff42524..19079d2 100644 --- a/doc/usage/restructuredtext/directives.rst +++ b/doc/usage/restructuredtext/directives.rst @@ -24,10 +24,11 @@ Table of contents .. index:: pair: table of; contents -Since reST does not have facilities to interconnect several documents, or split -documents into multiple output files, Sphinx uses a custom directive to add -relations between the single files the documentation is made of, as well as -tables of contents. The ``toctree`` directive is the central element. +Since reStructuredText does not have facilities to interconnect several documents, +or split documents into multiple output files, +Sphinx uses a custom directive to add relations between +the single files the documentation is made of, as well as tables of contents. +The ``toctree`` directive is the central element. .. note:: @@ -37,7 +38,7 @@ tables of contents. The ``toctree`` directive is the central element. .. note:: To create table of contents for current document (.rst file), use the - standard reST :dudir:`contents directive <table-of-contents>`. + standard reStructuredText :dudir:`contents directive <table-of-contents>`. .. rst:directive:: toctree @@ -49,8 +50,8 @@ tables of contents. The ``toctree`` directive is the central element. indicate the depth of the tree; by default, all levels are included. [#]_ The representation of "TOC tree" is changed in each output format. The - builders that output multiple files (ex. HTML) treat it as a collection of - hyperlinks. On the other hand, the builders that output a single file (ex. + builders that output multiple files (e.g. HTML) treat it as a collection of + hyperlinks. On the other hand, the builders that output a single file (e.g. LaTeX, man page, etc.) replace it with the content of the documents on the TOC tree. @@ -79,7 +80,7 @@ tables of contents. The ``toctree`` directive is the central element. Document titles in the :rst:dir:`toctree` will be automatically read from the title of the referenced document. If that isn't what you want, you can - specify an explicit title and target using a similar syntax to reST + specify an explicit title and target using a similar syntax to reStructuredText hyperlinks (and Sphinx's :ref:`cross-referencing syntax <xref-syntax>`). This looks like:: @@ -124,6 +125,14 @@ tables of contents. The ``toctree`` directive is the central element. foo + As with :dudir:`most directives <common-options>`, + you can use the ``class`` option to assign `class attributes`_:: + + .. toctree:: + :class: custom-toc + + .. _class attributes: https://docutils.sourceforge.io/docs/ref/doctree.html#classes + If you want only the titles of documents in the tree to show up, not other headings of the same level, you can use the ``titlesonly`` option:: @@ -223,150 +232,327 @@ tables of contents. The ``toctree`` directive is the central element. Special names ^^^^^^^^^^^^^ +.. index:: pair: genindex; toctree + pair: modindex; toctree + pair: search; toctree + Sphinx reserves some document names for its own use; you should not try to create documents with these names -- it will cause problems. The special document names (and pages generated for them) are: -* ``genindex``, ``modindex``, ``search`` +* ``genindex`` - These are used for the general index, the Python module index, and the search - page, respectively. + This is used for the general index, + which is populated with entries from :rst:dir:`index` directives + and all index-generating :ref:`object descriptions <basic-domain-markup>`. + For example, see Sphinx's :ref:`genindex`. - The general index is populated with entries from modules, all - index-generating :ref:`object descriptions <basic-domain-markup>`, and from - :rst:dir:`index` directives. +* ``modindex`` - The Python module index contains one entry per :rst:dir:`py:module` - directive. + This is used for the Python module index, + which contains one entry per :rst:dir:`py:module` directive. + For example, see Sphinx's :ref:`py-modindex`. - The search page contains a form that uses the generated JSON search index and - JavaScript to full-text search the generated documents for search words; it - should work on every major browser that supports modern JavaScript. +* ``search`` -* every name beginning with ``_`` + This is used for the search page, + which contains a form that uses the generated JSON search index and JavaScript + to full-text search the generated documents for search words; + it works on every major browser. + For example, see Sphinx's :ref:`search`. - Though few such names are currently used by Sphinx, you should not - create documents or document-containing directories with such names. (Using - ``_`` as a prefix for a custom template directory is fine.) +* Every name beginning with ``_`` -.. warning:: + Though few such names are currently used by Sphinx, + you should not create documents or document-containing directories with such names. + (Using ``_`` as a prefix for a custom template directory is fine.) - Be careful with unusual characters in filenames. Some formats may interpret - these characters in unexpected ways: +.. warning:: - * Do not use the colon ``:`` for HTML based formats. Links to other parts - may not work. + Be careful with unusual characters in filenames. + Some formats may interpret these characters in unexpected ways: - * Do not use the plus ``+`` for the ePub format. Some resources may not be - found. + * Do not use the colon ``:`` for HTML based formats. + Links to other parts may not work. + * Do not use the plus ``+`` for the ePub format. + Some resources may not be found. Paragraph-level markup ---------------------- -.. index:: note, warning - pair: changes; in version - These directives create short paragraphs and can be used inside information units as well as normal text. + +Admonitions, messages, and warnings +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +.. index:: admonition, admonitions + pair: attention; admonition + pair: caution; admonition + pair: danger; admonition + pair: error; admonition + pair: hint; admonition + pair: important; admonition + pair: note; admonition + pair: tip; admonition + pair: warning; admonition + +The admonition directives create 'admonition' elements, +a standardised system of communicating different types of information, +from a helpful :rst:dir:`tip` to matters of paramount :rst:dir:`danger`. +These directives can be used anywhere an ordinary body element can, +and can contain arbitrary body elements. +There are nine specific named admonitions +and the generic :rst:dir:`admonition` directive. + +.. rst:directive:: .. attention:: + + Information that requires the reader's attention. + The content of the directive should be written in complete sentences + and include all appropriate punctuation. + + Example: + + .. attention:: + + Please may I have your attention. + +.. rst:directive:: .. caution:: + + Information with regard to which the reader should exercise care. + The content of the directive should be written in complete sentences + and include all appropriate punctuation. + + Example: + + .. caution:: + + Exercise due caution. + +.. rst:directive:: .. danger:: + + Information which may lead to near and present danger if not heeded. + The content of the directive should be written in complete sentences + and include all appropriate punctuation. + + Example: + + .. danger:: + + Let none think to fly the danger for soon or late love is his own avenger. + +.. rst:directive:: .. error:: + + Information relating to failure modes of some description. + The content of the directive should be written in complete sentences + and include all appropriate punctuation. + + Example: + + .. error:: + + ERROR 418: I'm a teapot. + +.. rst:directive:: .. hint:: + + Information that is helpful to the reader. + The content of the directive should be written in complete sentences + and include all appropriate punctuation. + + Example: + + .. hint:: + + Look under the flowerpot. + +.. rst:directive:: .. important:: + + Information that is of paramount importance + and which the reader must not ignore. + The content of the directive should be written in complete sentences + and include all appropriate punctuation. + + Example: + + .. important:: + + This is a statement of paramount importance. + .. rst:directive:: .. note:: - An especially important bit of information about an API that a user should be - aware of when using whatever bit of API the note pertains to. The content of - the directive should be written in complete sentences and include all - appropriate punctuation. + An especially important bit of information that the reader should know. + The content of the directive should be written in complete sentences + and include all appropriate punctuation. - Example:: + Example: + + .. note:: + + This function is not suitable for sending tins of spam. + +.. rst:directive:: .. tip:: - .. note:: + Some useful tidbit of information for the reader. + The content of the directive should be written in complete sentences + and include all appropriate punctuation. - This function is not suitable for sending spam e-mails. + Example: + + .. tip:: + + Remember your sun cream! .. rst:directive:: .. warning:: - An important bit of information about an API that a user should be very aware - of when using whatever bit of API the warning pertains to. The content of - the directive should be written in complete sentences and include all - appropriate punctuation. This differs from :rst:dir:`note` in that it is - recommended over :rst:dir:`note` for information regarding security. + An important bit of information that the reader should be very aware of. + The content of the directive should be written in complete sentences + and include all appropriate punctuation. + + Example: -.. rst:directive:: .. versionadded:: version + .. warning:: + + Beware of the dog. + +.. rst:directive:: .. admonition:: title + + A generic admonition, with an optional title. + The content of the directive should be written in complete sentences + and include all appropriate punctuation. + + Example: + + .. admonition:: This is a title + + This is the content of the admonition. + + +.. rst:directive:: seealso + + Many sections include a list of references to module documentation or + external documents. + These lists are created using the :rst:dir:`seealso` directive. + + The :rst:dir:`!seealso` directive is typically placed in a section + just before any subsections. + The content of the :rst:dir:`seealso` directive should be + either a single line or a reStructuredText `definition list`_. - This directive documents the version of the project which added the described - feature to the library or C API. When this applies to an entire module, it - should be placed at the top of the module section before any prose. + .. _definition list: https://docutils.sourceforge.io/docs/ref/rst/restructuredtext.html#definition-lists + + Example:: + + .. seealso:: + + Python's :py:mod:`zipfile` module + Documentation of Python's standard :py:mod:`zipfile` module. + + `GNU tar manual, Basic Tar Format <https://example.org>`_ + Documentation for tar archive files, including GNU tar extensions. + + .. seealso:: + + Module :py:mod:`zipfile` + Documentation of the :py:mod:`zipfile` standard module. + + `GNU tar manual, Basic Tar Format <https://example.org>`_ + Documentation for tar archive files, including GNU tar extensions. + + +Describing changes between versions +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +.. index:: pair: added; in version + pair: changes; in version + pair: removed; in version + +.. rst:directive:: .. versionadded:: version [brief explanation] + + This directive documents the version of the project + which added the described feature. + When this applies to an entire module or component, + it should be placed at the top of the relevant section before any prose. The first argument must be given and is the version in question; you can add a second argument consisting of a *brief* explanation of the change. + .. attention:: + There must be no blank line between the directive head and the explanation; + this is to make these blocks visually continuous in the markup. + Example:: .. versionadded:: 2.5 The *spam* parameter. - Note that there must be no blank line between the directive head and the - explanation; this is to make these blocks visually continuous in the markup. + .. versionadded:: 2.5 + The *spam* parameter. -.. rst:directive:: .. versionchanged:: version +.. rst:directive:: .. versionchanged:: version [brief explanation] Similar to :rst:dir:`versionadded`, but describes when and what changed in the named feature in some way (new parameters, changed side effects, etc.). -.. rst:directive:: .. deprecated:: version + Example:: - Similar to :rst:dir:`versionchanged`, but describes when the feature was - deprecated. An explanation can also be given, for example to inform the - reader what should be used instead. Example:: + .. versionchanged:: 2.8 + The *spam* parameter is now of type *boson*. - .. deprecated:: 3.1 - Use :func:`spam` instead. + .. versionchanged:: 2.8 + The *spam* parameter is now of type *boson*. -.. rst:directive:: .. versionremoved:: version +.. rst:directive:: .. deprecated:: version [brief explanation] + + Similar to :rst:dir:`versionadded`, but describes when the feature was + deprecated. + A *brief* explanation can also be given, + for example to tell the reader what to use instead. - Similar to :rst:dir:`versionadded`, but describes when the feature was removed. - An explanation may be provided to inform the reader what to use instead, - or why the feature was removed. Example:: - .. versionremoved:: 4.0 - The :func:`spam` function is more flexible, and should be used instead. + .. deprecated:: 3.1 + Use :py:func:`spam` instead. - .. versionadded:: 7.3 + .. deprecated:: 3.1 + Use :py:func:`!spam` instead. -.. rst:directive:: seealso +.. rst:directive:: .. versionremoved:: version [brief explanation] - Many sections include a list of references to module documentation or - external documents. These lists are created using the :rst:dir:`seealso` - directive. + Similar to :rst:dir:`versionadded`, but describes when the feature was removed. + An explanation may be provided to tell the reader what to use instead, + or why the feature was removed. - The :rst:dir:`seealso` directive is typically placed in a section just before - any subsections. For the HTML output, it is shown boxed off from the main - flow of the text. + .. versionadded:: 7.3 - The content of the :rst:dir:`seealso` directive should be a reST definition - list. Example:: + Example:: - .. seealso:: + .. versionremoved:: 4.0 + The :py:func:`spam` function is more flexible, and should be used instead. - Module :py:mod:`zipfile` - Documentation of the :py:mod:`zipfile` standard module. + .. versionremoved:: 4.0 + The :py:func:`!spam` function is more flexible, and should be used instead. - `GNU tar manual, Basic Tar Format <https://link>`_ - Documentation for tar archive files, including GNU tar extensions. - There's also a "short form" allowed that looks like this:: +Presentational +^^^^^^^^^^^^^^ + +.. rst:directive:: .. rubric:: title - .. seealso:: modules :py:mod:`zipfile`, :py:mod:`tarfile` + A rubric is like an informal heading that doesn't correspond to the document's structure, + i.e. it does not create a table of contents node. - .. versionadded:: 0.5 - The short form. + .. rst:directive:option:: heading-level: n + :type: number from 1 to 6 -.. rst:directive:: .. rubric:: title + .. versionadded:: 7.4.1 - This directive creates a paragraph heading that is not used to create a - table of contents node. + Use this option to specify the heading level of the rubric. + In this case the rubric will be rendered as ``<h1>`` to ``<h6>`` for HTML output, + or as the corresponding non-numbered sectioning command for LaTeX + (see :confval:`latex_toplevel_sectioning`). .. note:: @@ -377,10 +563,7 @@ units as well as normal text. .. rst:directive:: centered - This directive creates a centered boldfaced line of text. Use it as - follows:: - - .. centered:: LICENSE AGREEMENT + This directive creates a centered boldfaced line of text. .. deprecated:: 1.1 This presentation-only directive is a legacy from older versions. @@ -419,8 +602,8 @@ Showing code examples There are multiple ways to show syntax-highlighted literal code blocks in Sphinx: -* using :ref:`reST doctest blocks <rst-doctest-blocks>`; -* using :ref:`reST literal blocks <rst-literal-blocks>`, optionally in +* using :ref:`reStructuredText doctest blocks <rst-doctest-blocks>`; +* using :ref:`reStructuredText literal blocks <rst-literal-blocks>`, optionally in combination with the :rst:dir:`highlight` directive; * using the :rst:dir:`code-block` directive; * and using the :rst:dir:`literalinclude` directive. @@ -503,6 +686,7 @@ __ https://pygments.org/docs/lexers .. rst:directive:: .. code-block:: [language] .. sourcecode:: [language] + .. code:: [language] Example:: @@ -802,8 +986,8 @@ Glossary .. rst:directive:: .. glossary:: - This directive must contain a reST definition-list-like markup with terms and - definitions. The definitions will then be referenceable with the + This directive must contain a reStructuredText definition-list-like markup + with terms and definitions. The definitions will then be referenceable with the :rst:role:`term` role. Example:: .. glossary:: @@ -934,7 +1118,7 @@ mainly contained in information units, such as the language reference. (this notation is also used below to describe what entries are created). Examples: - .. code:: reStructuredText + .. code-block:: rst .. index:: single: execution single: execution; context @@ -947,7 +1131,7 @@ mainly contained in information units, such as the language reference. The pair of values must be separated by a semicolon. Example: - .. code:: reStructuredText + .. code-block:: rst .. index:: pair: loop; statement @@ -957,7 +1141,7 @@ mainly contained in information units, such as the language reference. All three values must be separated by a semicolon. Example: - .. code:: reStructuredText + .. code-block:: rst .. index:: triple: module; search; path @@ -967,7 +1151,7 @@ mainly contained in information units, such as the language reference. A shortcut to create an index entry that refers to another entry. Example: - .. code:: reStructuredText + .. code-block:: rst .. index:: see: entry; other @@ -1034,7 +1218,7 @@ mainly contained in information units, such as the language reference. case, the "target" part can be a full entry as described for the directive above. For example:: - This is a normal reST :index:`paragraph` that contains several + This is a normal reStructuredText :index:`paragraph` that contains several :index:`index entries <pair: index; entry>`. .. versionadded:: 1.1 @@ -1052,10 +1236,11 @@ Including content based on tags .. only:: html and draft - Undefined tags are false, defined tags (via the ``-t`` command-line option or - within :file:`conf.py`, see :ref:`here <conf-tags>`) are true. Boolean - expressions, also using parentheses (like ``(latex or html) and draft``) are - supported. + Undefined tags are false, defined tags are true + (tags can be defined via the :option:`--tag <sphinx-build --tag>` + command-line option or within :file:`conf.py`, see :ref:`here <conf-tags>`). + Boolean expressions (like ``(latex or html) and draft``) are supported + and may use parentheses. The *format* and the *name* of the current builder (``html``, ``latex`` or ``text``) are always set as a tag [#]_. To make the distinction between @@ -1287,8 +1472,8 @@ the definition of the symbol. There is this directive: an explicit title can be given (e.g., "``myTitle <myGroup:sum>``"), or the target can be prefixed with a tilde (e.g., "``~myGroup:sum``"). - Note that no further reST parsing is done in the production, so that you - don't have to escape ``*`` or ``|`` characters. + Note that no further reStructuredText parsing is done in the production, + so that you don't have to escape ``*`` or ``|`` characters. The following is an example taken from the Python Reference Manual:: diff --git a/doc/usage/restructuredtext/field-lists.rst b/doc/usage/restructuredtext/field-lists.rst index 62dad5c..d352633 100644 --- a/doc/usage/restructuredtext/field-lists.rst +++ b/doc/usage/restructuredtext/field-lists.rst @@ -48,9 +48,9 @@ At the moment, these metadata fields are recognized: .. note:: - This metadata effects to the depth of local toctree. But it does not - effect to the depth of *global* toctree. So this would not be change - the sidebar of some themes which uses global one. + This metadata affects the depth of the local toctree. But it does not + affect the depth of the *global* toctree. So this does not change + the sidebar of themes that use the global toctree. .. versionadded:: 0.4 diff --git a/doc/usage/restructuredtext/index.rst b/doc/usage/restructuredtext/index.rst index 0fe311e..ada40c5 100644 --- a/doc/usage/restructuredtext/index.rst +++ b/doc/usage/restructuredtext/index.rst @@ -8,9 +8,8 @@ reStructuredText (reST) is the default plaintext markup language used by both Docutils and Sphinx. Docutils provides the basic reStructuredText syntax, while Sphinx extends this to support additional functionality. -The below guides go through the most important aspects of reST. For the -authoritative reStructuredText reference, refer to the `docutils -documentation`__. +The below guides go through the most important aspects of reStructuredText. +For the authoritative reference, refer to the `docutils documentation`__. __ https://docutils.sourceforge.io/rst.html diff --git a/doc/usage/restructuredtext/roles.rst b/doc/usage/restructuredtext/roles.rst index b21a2b7..ea5d99c 100644 --- a/doc/usage/restructuredtext/roles.rst +++ b/doc/usage/restructuredtext/roles.rst @@ -268,7 +268,7 @@ The following roles generate external links: For example: :rfc:`2324` Note that there are no special roles for including hyperlinks as you can use -the standard reST markup for that purpose. +the standard reStructuredText markup for that purpose. .. _default-substitutions: diff --git a/doc/usage/theming.rst b/doc/usage/theming.rst index be46cab..135c2f5 100644 --- a/doc/usage/theming.rst +++ b/doc/usage/theming.rst @@ -22,7 +22,7 @@ Themes This section provides information about using pre-existing HTML themes. If you wish to create your own theme, refer to - :doc:`/development/theming`. + :ref:`extension-html-theme`. Sphinx supports changing the appearance of its HTML output via *themes*. A theme is a collection of HTML templates, stylesheet(s) and other static files. @@ -81,7 +81,7 @@ zipfile-based theme:: html_theme = "dotted" For more information on the design of themes, including information about -writing your own themes, refer to :doc:`/development/theming`. +writing your own themes, refer to :ref:`extension-html-theme`. .. _builtin-themes: diff --git a/pyproject.toml b/pyproject.toml index 8aa49aa..3d8cce1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -62,18 +62,18 @@ dependencies = [ "sphinxcontrib-htmlhelp>=2.0.0", "sphinxcontrib-serializinghtml>=1.1.9", "sphinxcontrib-qthelp", - "Jinja2>=3.0", - "Pygments>=2.14", - "docutils>=0.18.1,<0.22", - "snowballstemmer>=2.0", - "babel>=2.9", + "Jinja2>=3.1", + "Pygments>=2.17", + "docutils>=0.20,<0.22", + "snowballstemmer>=2.2", + "babel>=2.13", "alabaster~=0.7.14", "imagesize>=1.3", - "requests>=2.25.0", - "packaging>=21.0", - "importlib-metadata>=4.8; python_version < '3.10'", + "requests>=2.30.0", + "packaging>=23.0", + "importlib-metadata>=6.0; python_version < '3.10'", "tomli>=2; python_version < '3.11'", - "colorama>=0.4.5; sys_platform == 'win32'", + "colorama>=0.4.6; sys_platform == 'win32'", ] dynamic = ["version"] @@ -82,21 +82,22 @@ docs = [ "sphinxcontrib-websupport", ] lint = [ - "flake8>=3.5.0", - "ruff==0.3.7", - "mypy==1.9.0", - "sphinx-lint", - "types-docutils", - "types-requests", - "importlib_metadata", # for mypy (Python<=3.9) - "tomli", # for mypy (Python<=3.10) + "flake8>=6.0", + "ruff==0.5.2", + "mypy==1.10.1", + "sphinx-lint>=0.9", + "types-docutils==0.21.0.20240711", + "types-requests>=2.30.0", # align with requests + "importlib-metadata>=6.0", # for mypy (Python<=3.9) + "tomli>=2", # for mypy (Python<=3.10) "pytest>=6.0", ] test = [ - "pytest>=6.0", + "pytest>=8.0", "defusedxml>=0.7.1", # for secure XML/HTML parsing "cython>=3.0", - "setuptools>=67.0", # for Cython compilation + "setuptools>=70.0", # for Cython compilation + "typing_extensions>=4.9", # for typing_extensions.Unpack ] [[project.authors]] @@ -150,7 +151,6 @@ exclude = [ "^tests/test_builders/test_build_gettext\\.py$", "^tests/test_builders/test_build_html\\.py$", "^tests/test_builders/test_build_latex\\.py$", - "^tests/test_builders/test_build_linkcheck\\.py$", "^tests/test_builders/test_build_texinfo\\.py$", # tests/test_config "^tests/test_config/test_config\\.py$", @@ -244,38 +244,26 @@ strict_optional = false [[tool.mypy.overrides]] module = [ "sphinx.application", - "sphinx.builders._epub_base", - "sphinx.builders.html", - "sphinx.builders.linkcheck", "sphinx.cmd.quickstart", "sphinx.config", "sphinx.domains", "sphinx.domains.c", "sphinx.domains.cpp", - "sphinx.environment", - "sphinx.environment.adapters.indexentries", - "sphinx.environment.collectors.toctree", "sphinx.events", "sphinx.ext.autodoc", "sphinx.ext.autodoc.directive", "sphinx.ext.autodoc.importer", - "sphinx.ext.autodoc.mock", - "sphinx.ext.autodoc.mock", "sphinx.ext.autosummary.generate", "sphinx.ext.doctest", "sphinx.ext.graphviz", "sphinx.ext.inheritance_diagram", - "sphinx.ext.intersphinx", + "sphinx.ext.intersphinx._load", "sphinx.ext.napoleon.docstring", "sphinx.highlighting", "sphinx.jinja2glue", "sphinx.registry", "sphinx.search", - "sphinx.testing.fixtures", - "sphinx.testing.path", - "sphinx.testing.util", "sphinx.util", - "sphinx.util.display", "sphinx.util.docfields", "sphinx.util.docutils", "sphinx.util.i18n", diff --git a/sphinx/__init__.py b/sphinx/__init__.py index 1ce46d6..e01fcfc 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -1,6 +1,6 @@ """The Sphinx documentation toolchain.""" -__version__ = '7.3.7' +__version__ = '7.4.7' __display_version__ = __version__ # used for command line version # Keep this file executable as-is in Python 3! @@ -8,13 +8,12 @@ __display_version__ = __version__ # used for command line version import os import warnings -from os import path - -from .deprecation import RemovedInNextVersionWarning # by default, all DeprecationWarning under sphinx package will be emit. # Users can avoid this by using environment variable: PYTHONWARNINGS= if 'PYTHONWARNINGS' not in os.environ: + from sphinx.deprecation import RemovedInNextVersionWarning + warnings.filterwarnings('default', category=RemovedInNextVersionWarning) warnings.filterwarnings( 'ignore', 'The frontend.Option class .*', DeprecationWarning, module='docutils.frontend' @@ -28,9 +27,9 @@ warnings.filterwarnings( #: #: .. versionadded:: 1.2 #: Before version 1.2, check the string ``sphinx.__version__``. -version_info = (7, 3, 7, 'final', 0) +version_info = (7, 4, 7, 'final', 0) -package_dir = path.abspath(path.dirname(__file__)) +package_dir = os.path.abspath(os.path.dirname(__file__)) _in_development = False if _in_development: diff --git a/sphinx/_cli/__init__.py b/sphinx/_cli/__init__.py new file mode 100644 index 0000000..3168b38 --- /dev/null +++ b/sphinx/_cli/__init__.py @@ -0,0 +1,296 @@ +"""Base 'sphinx' command. + +Subcommands are loaded lazily from the ``_COMMANDS`` table for performance. + +All subcommand modules must define three attributes: + +- ``parser_description``, a description of the subcommand. The first paragraph + is taken as the short description for the command. +- ``set_up_parser``, a callable taking and returning an ``ArgumentParser``. This + function is responsible for adding options and arguments to the subcommand's + parser. +- ``run``, a callable taking parsed arguments and returning an exit code. This + function is responsible for running the main body of the subcommand and + returning the exit status. + +The entire ``sphinx._cli`` namespace is private, only the command line interface +has backwards-compatibility guarantees. +""" + +from __future__ import annotations + +import argparse +import importlib +import locale +import sys +from typing import TYPE_CHECKING + +from sphinx._cli.util.colour import ( + bold, + disable_colour, + enable_colour, + terminal_supports_colour, + underline, +) +from sphinx.locale import __, init_console + +if TYPE_CHECKING: + from collections.abc import Callable, Iterable, Iterator, Sequence + from typing import NoReturn + + _PARSER_SETUP = Callable[[argparse.ArgumentParser], argparse.ArgumentParser] + _RUNNER = Callable[[argparse.Namespace], int] + + from typing import Protocol + + class _SubcommandModule(Protocol): + parser_description: str + set_up_parser: _PARSER_SETUP # takes and returns argument parser + run: _RUNNER # takes parsed args, returns exit code + + +# Map of command name to import path. +_COMMANDS: dict[str, str] = { +} + + +def _load_subcommand_descriptions() -> Iterator[tuple[str, str]]: + for command, module_name in _COMMANDS.items(): + module: _SubcommandModule = importlib.import_module(module_name) + try: + description = module.parser_description + except AttributeError: + # log an error here, but don't fail the full enumeration + print(f"Failed to load the description for {command}", file=sys.stderr) + else: + yield command, description.split('\n\n', 1)[0] + + +class _RootArgumentParser(argparse.ArgumentParser): + def format_help(self) -> str: + help_fragments: list[str] = [ + bold(underline(__('Usage:'))), + ' ', + __('{0} [OPTIONS] <COMMAND> [<ARGS>]').format(bold(self.prog)), + '\n', + '\n', + __(' The Sphinx documentation generator.'), + '\n', + ] + + if commands := list(_load_subcommand_descriptions()): + command_max_length = min(max(map(len, next(zip(*commands), ()))), 22) + help_fragments += [ + '\n', + bold(underline(__('Commands:'))), + '\n', + ] + help_fragments += [ + f' {command_name: <{command_max_length}} {command_desc}' + for command_name, command_desc in commands + ] + help_fragments.append('\n') + + # self._action_groups[1] is self._optionals + # Uppercase the title of the Optionals group + self._optionals.title = __('Options') + for argument_group in self._action_groups[1:]: + if arguments := [action for action in argument_group._group_actions + if action.help != argparse.SUPPRESS]: + help_fragments += self._format_optional_arguments( + arguments, + argument_group.title or '', + ) + + help_fragments += [ + '\n', + __('For more information, visit https://www.sphinx-doc.org/en/master/man/.'), + '\n', + ] + return ''.join(help_fragments) + + def _format_optional_arguments( + self, + actions: Iterable[argparse.Action], + title: str, + ) -> Iterator[str]: + yield '\n' + yield bold(underline(title + ':')) + yield '\n' + + for action in actions: + prefix = ' ' * all(o[1] == '-' for o in action.option_strings) + opt = prefix + ' ' + ', '.join(map(bold, action.option_strings)) + if action.nargs != 0: + opt += ' ' + self._format_metavar( + action.nargs, action.metavar, action.choices, action.dest, + ) + yield opt + yield '\n' + if action_help := (action.help or '').strip(): + yield from (f' {line}\n' for line in action_help.splitlines()) + + @staticmethod + def _format_metavar( + nargs: int | str | None, + metavar: str | tuple[str, ...] | None, + choices: Iterable[str] | None, + dest: str, + ) -> str: + if metavar is None: + if choices is not None: + metavar = '{' + ', '.join(sorted(choices)) + '}' + else: + metavar = dest.upper() + if nargs is None: + return f'{metavar}' + elif nargs == argparse.OPTIONAL: + return f'[{metavar}]' + elif nargs == argparse.ZERO_OR_MORE: + if len(metavar) == 2: + return f'[{metavar[0]} [{metavar[1]} ...]]' + else: + return f'[{metavar} ...]' + elif nargs == argparse.ONE_OR_MORE: + return f'{metavar} [{metavar} ...]' + elif nargs == argparse.REMAINDER: + return '...' + elif nargs == argparse.PARSER: + return f'{metavar} ...' + msg = 'invalid nargs value' + raise ValueError(msg) + + def error(self, message: str) -> NoReturn: + sys.stderr.write(__( + '{0}: error: {1}\n' + "Run '{0} --help' for information" # NoQA: COM812 + ).format(self.prog, message)) + raise SystemExit(2) + + +def _create_parser() -> _RootArgumentParser: + parser = _RootArgumentParser( + prog='sphinx', + description=__(' Manage documentation with Sphinx.'), + epilog=__('For more information, visit https://www.sphinx-doc.org/en/master/man/.'), + add_help=False, + allow_abbrev=False, + ) + parser.add_argument( + '-V', '--version', + action='store_true', + default=argparse.SUPPRESS, + help=__('Show the version and exit.'), + ) + parser.add_argument( + '-h', '-?', '--help', + action='store_true', + default=argparse.SUPPRESS, + help=__('Show this message and exit.'), + ) + + # logging control + log_control = parser.add_argument_group(__('Logging')) + log_control.add_argument( + '-v', '--verbose', + action='count', + dest='verbosity', + default=0, + help=__('Increase verbosity (can be repeated)'), + ) + log_control.add_argument( + '-q', '--quiet', + action='store_const', + dest='verbosity', + const=-1, + help=__('Only print errors and warnings.'), + ) + log_control.add_argument( + '--silent', + action='store_const', + dest='verbosity', + const=-2, + help=__('No output at all'), + ) + + parser.add_argument( + 'COMMAND', + nargs=argparse.REMAINDER, + metavar=__('<command>'), + ) + return parser + + +def _parse_command(argv: Sequence[str] = ()) -> tuple[str, Sequence[str]]: + parser = _create_parser() + args = parser.parse_args(argv) + command_name, *command_argv = args.COMMAND or ('help',) + command_name = command_name.lower() + + if terminal_supports_colour(): + enable_colour() + else: + disable_colour() + + # Handle '--version' or '-V' passed to the main command or any subcommand + if 'version' in args or {'-V', '--version'}.intersection(command_argv): + from sphinx import __display_version__ + sys.stderr.write(f'sphinx {__display_version__}\n') + raise SystemExit(0) + + # Handle '--help' or '-h' passed to the main command (subcommands may have + # their own help text) + if 'help' in args or command_name == 'help': + sys.stderr.write(parser.format_help()) + raise SystemExit(0) + + if command_name not in _COMMANDS: + sys.stderr.write(__(f'sphinx: {command_name!r} is not a sphinx command. ' + "See 'sphinx --help'.\n")) + raise SystemExit(2) + + return command_name, command_argv + + +def _load_subcommand(command_name: str) -> tuple[str, _PARSER_SETUP, _RUNNER]: + try: + module: _SubcommandModule = importlib.import_module(_COMMANDS[command_name]) + except KeyError: + msg = f'invalid command name {command_name!r}.' + raise ValueError(msg) from None + return module.parser_description, module.set_up_parser, module.run + + +def _create_sub_parser( + command_name: str, + description: str, + parser_setup: _PARSER_SETUP, +) -> argparse.ArgumentParser: + parser = argparse.ArgumentParser( + prog=f'sphinx {command_name}', + description=description, + formatter_class=argparse.RawDescriptionHelpFormatter, + allow_abbrev=False, + ) + return parser_setup(parser) + + +def run(argv: Sequence[str] = (), /) -> int: + locale.setlocale(locale.LC_ALL, '') + init_console() + + argv = argv or sys.argv[1:] + try: + cmd_name, cmd_argv = _parse_command(argv) + cmd_description, set_up_parser, runner = _load_subcommand(cmd_name) + cmd_parser = _create_sub_parser(cmd_name, cmd_description, set_up_parser) + cmd_args = cmd_parser.parse_args(cmd_argv) + return runner(cmd_args) + except SystemExit as exc: + return exc.code # type: ignore[return-value] + except (Exception, KeyboardInterrupt): + return 2 + + +if __name__ == '__main__': + raise SystemExit(run()) diff --git a/sphinx/_cli/util/__init__.py b/sphinx/_cli/util/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/sphinx/_cli/util/colour.py b/sphinx/_cli/util/colour.py new file mode 100644 index 0000000..a89d04e --- /dev/null +++ b/sphinx/_cli/util/colour.py @@ -0,0 +1,103 @@ +"""Format coloured console output.""" + +from __future__ import annotations + +import os +import sys +from collections.abc import Callable # NoQA: TCH003 + +if sys.platform == 'win32': + import colorama + + +_COLOURING_DISABLED = True + + +def terminal_supports_colour() -> bool: + """Return True if coloured terminal output is supported.""" + if 'NO_COLOUR' in os.environ or 'NO_COLOR' in os.environ: + return False + if 'FORCE_COLOUR' in os.environ or 'FORCE_COLOR' in os.environ: + return True + + try: + if not sys.stdout.isatty(): + return False + except (AttributeError, ValueError): + # Handle cases where .isatty() is not defined, or where e.g. + # "ValueError: I/O operation on closed file" is raised + return False + + # Do not colour output if on a dumb terminal + return os.environ.get('TERM', 'unknown').lower() not in {'dumb', 'unknown'} + + +def disable_colour() -> None: + global _COLOURING_DISABLED + _COLOURING_DISABLED = True + if sys.platform == 'win32': + colorama.deinit() + + +def enable_colour() -> None: + global _COLOURING_DISABLED + _COLOURING_DISABLED = False + if sys.platform == 'win32': + colorama.init() + + +def colourise(colour_name: str, text: str, /) -> str: + if _COLOURING_DISABLED: + return text + return globals()[colour_name](text) + + +def _create_colour_func(escape_code: str, /) -> Callable[[str], str]: + def inner(text: str) -> str: + if _COLOURING_DISABLED: + return text + return f'\x1b[{escape_code}m{text}\x1b[39;49;00m' + return inner + + +# Wrap escape sequence with ``\1`` and ``\2`` to let readline know +# that the colour escape codes are non-printable characters +# [ https://tiswww.case.edu/php/chet/readline/readline.html ] +# +# Note: This does not work well in Windows +# (see https://github.com/sphinx-doc/sphinx/pull/5059) +if sys.platform == 'win32': + _create_input_mode_colour_func = _create_colour_func +else: + def _create_input_mode_colour_func(escape_code: str, /) -> Callable[[str], str]: + def inner(text: str) -> str: + if _COLOURING_DISABLED: + return text + return f'\x01\x1b[{escape_code}m\x02{text}\x01\x1b[39;49;00m\x02' + return inner + + +reset = _create_colour_func('39;49;00') +bold = _create_colour_func('01') +faint = _create_colour_func('02') +standout = _create_colour_func('03') +underline = _create_colour_func('04') +blink = _create_colour_func('05') + +black = _create_colour_func('30') +darkred = _create_colour_func('31') +darkgreen = _create_colour_func('32') +brown = _create_colour_func('33') +darkblue = _create_colour_func('34') +purple = _create_colour_func('35') +turquoise = _create_colour_func('36') +lightgray = _create_colour_func('37') + +darkgray = _create_colour_func('90') +red = _create_colour_func('91') +green = _create_colour_func('92') +yellow = _create_colour_func('93') +blue = _create_colour_func('94') +fuchsia = _create_colour_func('95') +teal = _create_colour_func('96') +white = _create_colour_func('97') diff --git a/sphinx/_cli/util/errors.py b/sphinx/_cli/util/errors.py new file mode 100644 index 0000000..dac0fb8 --- /dev/null +++ b/sphinx/_cli/util/errors.py @@ -0,0 +1,165 @@ +from __future__ import annotations + +import re +import sys +import tempfile +from typing import TYPE_CHECKING, TextIO + +from sphinx.errors import SphinxParallelError + +if TYPE_CHECKING: + from sphinx.application import Sphinx + +_ANSI_COLOUR_CODES: re.Pattern[str] = re.compile('\x1b.*?m') + + +def terminal_safe(s: str, /) -> str: + """Safely encode a string for printing to the terminal.""" + return s.encode('ascii', 'backslashreplace').decode('ascii') + + +def strip_colors(s: str, /) -> str: + return _ANSI_COLOUR_CODES.sub('', s).strip() + + +def error_info(messages: str, extensions: str, traceback: str) -> str: + import platform + + import docutils + import jinja2 + import pygments + + import sphinx + + return f"""\ +Versions +======== + +* Platform: {sys.platform}; ({platform.platform()}) +* Python version: {platform.python_version()} ({platform.python_implementation()}) +* Sphinx version: {sphinx.__display_version__} +* Docutils version: {docutils.__version__} +* Jinja2 version: {jinja2.__version__} +* Pygments version: {pygments.__version__} + +Last Messages +============= + +{messages} + +Loaded Extensions +================= + +{extensions} + +Traceback +========= + +{traceback} +""" + + +def save_traceback(app: Sphinx | None, exc: BaseException) -> str: + """Save the given exception's traceback in a temporary file.""" + if isinstance(exc, SphinxParallelError): + exc_format = '(Error in parallel process)\n' + exc.traceback + else: + import traceback + + exc_format = traceback.format_exc() + + last_msgs = exts_list = '' + if app is not None: + extensions = app.extensions.values() + last_msgs = '\n'.join(f'* {strip_colors(s)}' for s in app.messagelog) + exts_list = '\n'.join(f'* {ext.name} ({ext.version})' for ext in extensions + if ext.version != 'builtin') + + with tempfile.NamedTemporaryFile(suffix='.log', prefix='sphinx-err-', delete=False) as f: + f.write(error_info(last_msgs, exts_list, exc_format).encode('utf-8')) + + return f.name + + +def handle_exception( + exception: BaseException, + /, + *, + stderr: TextIO = sys.stderr, + use_pdb: bool = False, + print_traceback: bool = False, + app: Sphinx | None = None, +) -> None: + from bdb import BdbQuit + from traceback import TracebackException, print_exc + + from docutils.utils import SystemMessage + + from sphinx._cli.util.colour import red + from sphinx.errors import SphinxError + from sphinx.locale import __ + + if isinstance(exception, BdbQuit): + return + + def print_err(*values: str) -> None: + print(*values, file=stderr) + + def print_red(*values: str) -> None: + print_err(*map(red, values)) + + print_err() + if print_traceback or use_pdb: + print_exc(file=stderr) + print_err() + + if use_pdb: + from pdb import post_mortem + + print_red(__('Exception occurred, starting debugger:')) + post_mortem() + return + + if isinstance(exception, KeyboardInterrupt): + print_err(__('Interrupted!')) + return + + if isinstance(exception, SystemMessage): + print_red(__('reStructuredText markup error:')) + print_err(str(exception)) + return + + if isinstance(exception, SphinxError): + print_red(f'{exception.category}:') + print_err(str(exception)) + return + + if isinstance(exception, UnicodeError): + print_red(__('Encoding error:')) + print_err(str(exception)) + return + + if isinstance(exception, RecursionError): + print_red(__('Recursion error:')) + print_err(str(exception)) + print_err() + print_err(__('This can happen with very large or deeply nested source ' + 'files. You can carefully increase the default Python ' + 'recursion limit of 1000 in conf.py with e.g.:')) + print_err('\n import sys\n sys.setrecursionlimit(1_500)\n') + return + + # format an exception with traceback, but only the last frame. + te = TracebackException.from_exception(exception, limit=-1) + formatted_tb = te.stack.format()[-1] + ''.join(te.format_exception_only()).rstrip() + + print_red(__('Exception occurred:')) + print_err(formatted_tb) + traceback_info_path = save_traceback(app, exception) + print_err(__('The full traceback has been saved in:')) + print_err(traceback_info_path) + print_err() + print_err(__('To report this error to the developers, please open an issue ' + 'at <https://github.com/sphinx-doc/sphinx/issues/>. Thanks!')) + print_err(__('Please also report this if it was a user error, so ' + 'that a better error message can be provided next time.')) diff --git a/sphinx/application.py b/sphinx/application.py index 7d16d9a..3935e70 100644 --- a/sphinx/application.py +++ b/sphinx/application.py @@ -42,14 +42,16 @@ from sphinx.util.tags import Tags if TYPE_CHECKING: from docutils import nodes - from docutils.nodes import Element + from docutils.nodes import Element, Node from docutils.parsers import Parser from sphinx.builders import Builder from sphinx.domains import Domain, Index from sphinx.environment.collectors import EnvironmentCollector + from sphinx.ext.autodoc import Documenter from sphinx.extension import Extension from sphinx.roles import XRefRole + from sphinx.search import SearchLanguage from sphinx.theming import Theme from sphinx.util.typing import RoleFunction, TitleGetter @@ -138,13 +140,35 @@ class Sphinx: def __init__(self, srcdir: str | os.PathLike[str], confdir: str | os.PathLike[str] | None, outdir: str | os.PathLike[str], doctreedir: str | os.PathLike[str], buildername: str, confoverrides: dict | None = None, - status: IO | None = sys.stdout, warning: IO | None = sys.stderr, + status: IO[str] | None = sys.stdout, warning: IO[str] | None = sys.stderr, freshenv: bool = False, warningiserror: bool = False, - tags: list[str] | None = None, + tags: Sequence[str] = (), verbosity: int = 0, parallel: int = 0, keep_going: bool = False, pdb: bool = False) -> None: + """Initialize the Sphinx application. + + :param srcdir: The path to the source directory. + :param confdir: The path to the configuration directory. + If not given, it is assumed to be the same as ``srcdir``. + :param outdir: Directory for storing build documents. + :param doctreedir: Directory for caching pickled doctrees. + :param buildername: The name of the builder to use. + :param confoverrides: A dictionary of configuration settings that override the + settings in the configuration file. + :param status: A file-like object to write status messages to. + :param warning: A file-like object to write warnings to. + :param freshenv: If true, clear the cached environment. + :param warningiserror: If true, warnings become errors. + :param tags: A list of tags to apply. + :param verbosity: The verbosity level. + :param parallel: The maximum number of parallel jobs to use + when reading/writing documents. + :param keep_going: If true, continue processing when an error occurs. + :param pdb: If true, enable the Python debugger on an exception. + """ self.phase = BuildPhase.INITIALIZATION self.verbosity = verbosity + self._fresh_env_used: bool | None = None self.extensions: dict[str, Extension] = {} self.registry = SphinxComponentRegistry() @@ -168,14 +192,14 @@ class Sphinx: self.parallel = parallel if status is None: - self._status: IO = StringIO() + self._status: IO[str] = StringIO() self.quiet: bool = True else: self._status = status self.quiet = False if warning is None: - self._warning: IO = StringIO() + self._warning: IO[str] = StringIO() else: self._warning = warning self._warncount = 0 @@ -194,7 +218,7 @@ class Sphinx: self.messagelog: deque = deque(maxlen=10) # say hello to the world - logger.info(bold(__('Running Sphinx v%s') % sphinx.__display_version__)) + logger.info(bold(__('Running Sphinx v%s')), sphinx.__display_version__) # status code for command-line application self.statuscode = 0 @@ -267,33 +291,37 @@ class Sphinx: # set up the builder self._init_builder() + @property + def fresh_env_used(self) -> bool | None: + """True/False as to whether a new environment was created for this build, + or None if the environment has not been initialised yet. + """ + return self._fresh_env_used + def _init_i18n(self) -> None: """Load translated strings from the configured localedirs if enabled in the configuration. """ - if self.config.language == 'en': - self.translator, _ = locale.init([], None) + logger.info(bold(__('loading translations [%s]... ')), self.config.language, + nonl=True) + + # compile mo files if sphinx.po file in user locale directories are updated + repo = CatalogRepository(self.srcdir, self.config.locale_dirs, + self.config.language, self.config.source_encoding) + for catalog in repo.catalogs: + if catalog.domain == 'sphinx' and catalog.is_outdated(): + catalog.write_mo(self.config.language, + self.config.gettext_allow_fuzzy_translations) + + locale_dirs: list[str | None] = list(repo.locale_dirs) + locale_dirs += [None] + locale_dirs += [path.join(package_dir, 'locale')] + + self.translator, has_translation = locale.init(locale_dirs, self.config.language) + if has_translation or self.config.language == 'en': + logger.info(__('done')) else: - logger.info(bold(__('loading translations [%s]... ') % self.config.language), - nonl=True) - - # compile mo files if sphinx.po file in user locale directories are updated - repo = CatalogRepository(self.srcdir, self.config.locale_dirs, - self.config.language, self.config.source_encoding) - for catalog in repo.catalogs: - if catalog.domain == 'sphinx' and catalog.is_outdated(): - catalog.write_mo(self.config.language, - self.config.gettext_allow_fuzzy_translations) - - locale_dirs: list[str | None] = list(repo.locale_dirs) - locale_dirs += [None] - locale_dirs += [path.join(package_dir, 'locale')] - - self.translator, has_translation = locale.init(locale_dirs, self.config.language) - if has_translation: - logger.info(__('done')) - else: - logger.info(__('not available for built-in messages')) + logger.info(__('not available for built-in messages')) def _init_env(self, freshenv: bool) -> BuildEnvironment: filename = path.join(self.doctreedir, ENV_PICKLE_FILENAME) @@ -322,7 +350,6 @@ class Sphinx: def _post_init_env(self) -> None: if self._fresh_env_used: self.env.find_files(self.config, self.builder) - del self._fresh_env_used def preload_builder(self, name: str) -> None: self.registry.preload_builder(self, name) @@ -376,13 +403,13 @@ class Sphinx: else: msg = __('build %s, %s warnings.') - logger.info(bold(msg % (status, self._warncount))) + logger.info(bold(msg), status, self._warncount) else: - logger.info(bold(__('build %s.') % status)) + logger.info(bold(__('build %s.')), status) if self.statuscode == 0 and self.builder.epilog: logger.info('') - logger.info(self.builder.epilog % { + logger.info(self.builder.epilog, { 'outdir': relpath(self.outdir), 'project': self.config.project, }) @@ -502,9 +529,11 @@ class Sphinx: """ self.registry.add_builder(builder, override=override) - # TODO(stephenfin): Describe 'types' parameter - def add_config_value(self, name: str, default: Any, rebuild: _ConfigRebuild, - types: type | Collection[type] | ENUM = ()) -> None: + def add_config_value( + self, name: str, default: Any, rebuild: _ConfigRebuild, + types: type | Collection[type] | ENUM = (), + description: str = '', + ) -> None: """Register a configuration value. This is necessary for Sphinx to recognize new values and set default @@ -525,6 +554,7 @@ class Sphinx: :param types: The type of configuration value. A list of types can be specified. For example, ``[str]`` is used to describe a configuration that takes string value. + :param description: A short description of the configuration value. .. versionchanged:: 0.4 If the *default* value is a callable, it will be called with the @@ -536,9 +566,12 @@ class Sphinx: Changed *rebuild* from a simple boolean (equivalent to ``''`` or ``'env'``) to a string. However, booleans are still accepted and converted internally. + + .. versionadded:: 7.4 + The *description* parameter. """ logger.debug('[app] adding config value: %r', (name, default, rebuild, types)) - self.config.add(name, default, rebuild, types) + self.config.add(name, default, rebuild, types, description) def add_event(self, name: str) -> None: """Register an event called *name*. @@ -712,7 +745,10 @@ class Sphinx: name, type='app', subtype='add_role') docutils.register_role(name, role) - def add_generic_role(self, name: str, nodeclass: Any, override: bool = False) -> None: + def add_generic_role( + self, name: str, nodeclass: type[Node], override: bool = False + + ) -> None: """Register a generic Docutils role. Register a Docutils role that does nothing but wrap its contents in the @@ -733,7 +769,7 @@ class Sphinx: logger.warning(__('role %r is already registered, it will be overridden'), name, type='app', subtype='add_generic_role') role = roles.GenericRole(name, nodeclass) - docutils.register_role(name, role) # type: ignore[arg-type] + docutils.register_role(name, role) def add_domain(self, domain: type[Domain], override: bool = False) -> None: """Register a domain. @@ -789,7 +825,7 @@ class Sphinx: """ self.registry.add_role_to_domain(domain, name, role, override=override) - def add_index_to_domain(self, domain: str, index: type[Index], override: bool = False, + def add_index_to_domain(self, domain: str, index: type[Index], _override: bool = False, ) -> None: """Register a custom index for a domain. @@ -1134,7 +1170,7 @@ class Sphinx: logger.debug('[app] adding lexer: %r', (alias, lexer)) lexer_classes[alias] = lexer - def add_autodocumenter(self, cls: Any, override: bool = False) -> None: + def add_autodocumenter(self, cls: type[Documenter], override: bool = False) -> None: """Register a new documenter class for the autodoc extension. Add *cls* as a new documenter class for the :mod:`sphinx.ext.autodoc` @@ -1172,7 +1208,7 @@ class Sphinx: logger.debug('[app] adding autodoc attrgetter: %r', (typ, getter)) self.registry.add_autodoc_attrgetter(typ, getter) - def add_search_language(self, cls: Any) -> None: + def add_search_language(self, cls: type[SearchLanguage]) -> None: """Register a new language for the HTML search index. Add *cls*, which must be a subclass of @@ -1184,8 +1220,7 @@ class Sphinx: .. versionadded:: 1.1 """ logger.debug('[app] adding search language: %r', cls) - from sphinx.search import SearchLanguage, languages - assert issubclass(cls, SearchLanguage) + from sphinx.search import languages languages[cls.lang] = cls def add_source_suffix(self, suffix: str, filetype: str, override: bool = False) -> None: diff --git a/sphinx/builders/__init__.py b/sphinx/builders/__init__.py index ae23556..076af8a 100644 --- a/sphinx/builders/__init__.py +++ b/sphinx/builders/__init__.py @@ -4,9 +4,10 @@ from __future__ import annotations import codecs import pickle +import re import time from os import path -from typing import TYPE_CHECKING, Any +from typing import TYPE_CHECKING, Any, Literal, final from docutils import nodes from docutils.utils import DependencyList @@ -21,7 +22,7 @@ from sphinx.util.console import bold from sphinx.util.display import progress_message, status_iterator from sphinx.util.docutils import sphinx_domains from sphinx.util.i18n import CatalogInfo, CatalogRepository, docname_to_domain -from sphinx.util.osutil import SEP, ensuredir, relative_uri, relpath +from sphinx.util.osutil import SEP, canon_path, ensuredir, relative_uri, relpath from sphinx.util.parallel import ParallelTasks, SerialTasks, make_chunks, parallel_available # side effect: registers roles and directives @@ -71,9 +72,9 @@ class Builder: #: The list of MIME types of image formats supported by the builder. #: Image files are searched in the order in which they appear here. supported_image_types: list[str] = [] - #: The builder supports remote images or not. + #: The builder can produce output documents that may fetch external images when opened. supported_remote_images = False - #: The builder supports data URIs or not. + #: The file format produced by the builder allows images to be embedded using data-URIs. supported_data_uri_images = False def __init__(self, app: Sphinx, env: BuildEnvironment) -> None: @@ -92,8 +93,8 @@ class Builder: self.tags: Tags = app.tags self.tags.add(self.format) self.tags.add(self.name) - self.tags.add("format_%s" % self.format) - self.tags.add("builder_%s" % self.name) + self.tags.add(f'format_{self.format}') + self.tags.add(f'builder_{self.name}') # images that need to be copied over (source -> dest) self.images: dict[str, str] = {} @@ -245,12 +246,14 @@ class Builder: # build methods + @final def build_all(self) -> None: """Build all source files.""" self.compile_all_catalogs() self.build(None, summary=__('all source files'), method='all') + @final def build_specific(self, filenames: list[str]) -> None: """Only rebuild as much as needed for changes in the *filenames*.""" docnames: list[str] = [] @@ -281,6 +284,7 @@ class Builder: self.build(docnames, method='specific', summary=__('%d source files given on command line') % len(docnames)) + @final def build_update(self) -> None: """Only rebuild what was changed or added since last build.""" self.compile_update_catalogs() @@ -294,19 +298,20 @@ class Builder: summary=__('targets for %d source files that are out of date') % len(to_build)) + @final def build( self, docnames: Iterable[str] | None, summary: str | None = None, - method: str = 'update', + method: Literal['all', 'specific', 'update'] = 'update', ) -> None: - """Main build method. + """Main build method, usually called by a specific ``build_*`` method. First updates the environment, and then calls :meth:`!write`. """ if summary: - logger.info(bold(__('building [%s]: ') % self.name) + summary) + logger.info(bold(__('building [%s]: ')) + summary, self.name) # while reading, collect all warnings from docutils with logging.pending_warnings(): @@ -367,6 +372,7 @@ class Builder: # wait for all tasks self.finish_tasks.join() + @final def read(self) -> list[str]: """(Re-)read all files new or changed since last update. @@ -418,9 +424,40 @@ class Builder: else: self._read_serial(docnames) - if self.config.root_doc not in self.env.all_docs: - raise SphinxError('root file %s not found' % - self.env.doc2path(self.config.root_doc)) + if self.config.master_doc not in self.env.all_docs: + from sphinx.project import EXCLUDE_PATHS + from sphinx.util.matching import _translate_pattern + + master_doc_path = self.env.doc2path(self.config.master_doc) + master_doc_canon = canon_path(master_doc_path) + for pat in EXCLUDE_PATHS: + if not re.match(_translate_pattern(pat), master_doc_canon): + continue + msg = __('Sphinx is unable to load the master document (%s) ' + 'because it matches a built-in exclude pattern %r. ' + 'Please move your master document to a different location.') + raise SphinxError(msg % (master_doc_path, pat)) + for pat in self.config.exclude_patterns: + if not re.match(_translate_pattern(pat), master_doc_canon): + continue + msg = __('Sphinx is unable to load the master document (%s) ' + 'because it matches an exclude pattern specified ' + 'in conf.py, %r. ' + 'Please remove this pattern from conf.py.') + raise SphinxError(msg % (master_doc_path, pat)) + if set(self.config.include_patterns) != {'**'} and not any( + re.match(_translate_pattern(pat), master_doc_canon) + for pat in self.config.include_patterns + ): + msg = __('Sphinx is unable to load the master document (%s) ' + 'because it is not included in the custom include_patterns = %r. ' + 'Ensure that a pattern in include_patterns matches the ' + 'master document.') + raise SphinxError(msg % (master_doc_path, self.config.include_patterns)) + msg = __('Sphinx is unable to load the master document (%s). ' + 'The master document must be within the source directory ' + 'or a subdirectory of it.') + raise SphinxError(msg % master_doc_path) for retval in self.events.emit('env-updated', self.env): if retval is not None: @@ -473,6 +510,7 @@ class Builder: tasks.join() logger.info('') + @final def read_doc(self, docname: str, *, _cache: bool = True) -> None: """Parse a file and add/update inventory entries for the doctree.""" self.env.prepare_settings(docname) @@ -485,6 +523,7 @@ class Builder: filename = self.env.doc2path(docname) filetype = get_filetype(self.app.config.source_suffix, filename) publisher = self.app.registry.get_publisher(self.app, filetype) + self.env.temp_data['_parser'] = publisher.parser # record_dependencies is mutable even though it is in settings, # explicitly re-initialise for each document publisher.settings.record_dependencies = DependencyList() @@ -506,10 +545,11 @@ class Builder: self.write_doctree(docname, doctree, _cache=_cache) + @final def write_doctree( self, docname: str, doctree: nodes.document, *, _cache: bool = True, ) -> None: - """Write the doctree to a file.""" + """Write the doctree to a file, to be used as a cache by re-builds.""" # make it picklable doctree.reporter = None # type: ignore[assignment] doctree.transformer = None # type: ignore[assignment] @@ -536,8 +576,12 @@ class Builder: self, build_docnames: Iterable[str] | None, updated_docnames: Sequence[str], - method: str = 'update', + method: Literal['all', 'specific', 'update'] = 'update', ) -> None: + """Write builder specific output files.""" + # Allow any extensions to perform setup for writing + self.events.emit('write-started', self) + if build_docnames is None or build_docnames == ['__all__']: # build_all build_docnames = self.env.found_docs @@ -558,7 +602,7 @@ class Builder: with progress_message(__('preparing documents')): self.prepare_writing(docnames) - with progress_message(__('copying assets')): + with progress_message(__('copying assets'), nonl=False): self.copy_assets() if self.parallel_ok: diff --git a/sphinx/builders/_epub_base.py b/sphinx/builders/_epub_base.py index 31862e4..b8341c2 100644 --- a/sphinx/builders/_epub_base.py +++ b/sphinx/builders/_epub_base.py @@ -170,7 +170,7 @@ class EpubBuilder(StandaloneHTMLBuilder): def create_build_info(self) -> BuildInfo: return BuildInfo(self.config, self.tags, frozenset({'html', 'epub'})) - def get_theme_config(self) -> tuple[str, dict]: + def get_theme_config(self) -> tuple[str, dict[str, str | int | bool]]: return self.config.epub_theme, self.config.epub_theme_options # generic support functions @@ -451,8 +451,14 @@ class EpubBuilder(StandaloneHTMLBuilder): def copy_download_files(self) -> None: pass - def handle_page(self, pagename: str, addctx: dict, templatename: str = 'page.html', - outfilename: str | None = None, event_arg: Any = None) -> None: + def handle_page( + self, + pagename: str, + addctx: dict[str, Any], + templatename: str = 'page.html', + outfilename: str | None = None, + event_arg: Any = None, + ) -> None: """Create a rendered page. This method is overwritten for genindex pages in order to fix href link @@ -615,7 +621,7 @@ class EpubBuilder(StandaloneHTMLBuilder): html.escape(self.refnodes[0]['refuri']))) # write the project file - copy_asset_file(path.join(self.template_dir, 'content.opf_t'), self.outdir, metadata) + copy_asset_file(path.join(self.template_dir, 'content.opf.jinja'), self.outdir, metadata) # NoQA: E501 def new_navpoint(self, node: dict[str, Any], level: int, incr: bool = True) -> NavPoint: """Create a new entry in the toc from the node at given level.""" @@ -698,7 +704,7 @@ class EpubBuilder(StandaloneHTMLBuilder): navpoints = self.build_navpoints(refnodes) level = max(item['level'] for item in self.refnodes) level = min(level, self.config.epub_tocdepth) - copy_asset_file(path.join(self.template_dir, 'toc.ncx_t'), self.outdir, + copy_asset_file(path.join(self.template_dir, 'toc.ncx.jinja'), self.outdir, self.toc_metadata(level, navpoints)) def build_epub(self) -> None: diff --git a/sphinx/builders/changes.py b/sphinx/builders/changes.py index b233e85..48a0ed8 100644 --- a/sphinx/builders/changes.py +++ b/sphinx/builders/changes.py @@ -56,7 +56,7 @@ class ChangesBuilder(Builder): changesets = domain.get_changesets_for(version) if not changesets: - logger.info(bold(__('no changes in version %s.') % version)) + logger.info(bold(__('no changes in version %s.')), version) return logger.info(bold(__('writing summary file...'))) for changeset in changesets: @@ -140,7 +140,7 @@ class ChangesBuilder(Builder): f.write(self.templates.render('changes/rstsource.html', ctx)) themectx = {'theme_' + key: val for (key, val) in self.theme.get_options({}).items()} - copy_asset_file(path.join(package_dir, 'themes', 'default', 'static', 'default.css_t'), + copy_asset_file(path.join(package_dir, 'themes', 'default', 'static', 'default.css.jinja'), # NoQA: E501 self.outdir, context=themectx, renderer=self.templates) copy_asset_file(path.join(package_dir, 'themes', 'basic', 'static', 'basic.css'), self.outdir) diff --git a/sphinx/builders/epub3.py b/sphinx/builders/epub3.py index 91c76e4..775a827 100644 --- a/sphinx/builders/epub3.py +++ b/sphinx/builders/epub3.py @@ -194,7 +194,7 @@ class Epub3Builder(_epub_base.EpubBuilder): # 'includehidden' refnodes = self.refnodes navlist = self.build_navlist(refnodes) - copy_asset_file(path.join(self.template_dir, 'nav.xhtml_t'), self.outdir, + copy_asset_file(path.join(self.template_dir, 'nav.xhtml.jinja'), self.outdir, self.navigation_doc_metadata(navlist)) # Add nav.xhtml to epub file @@ -255,7 +255,7 @@ def convert_epub_css_files(app: Sphinx, config: Config) -> None: logger.warning(__('invalid css_file: %r, ignored'), entry) continue - config.epub_css_files = epub_css_files # type: ignore[attr-defined] + config.epub_css_files = epub_css_files def setup(app: Sphinx) -> ExtensionMetadata: diff --git a/sphinx/builders/gettext.py b/sphinx/builders/gettext.py index 26d0a6d..f1f7d7f 100644 --- a/sphinx/builders/gettext.py +++ b/sphinx/builders/gettext.py @@ -7,7 +7,7 @@ import time from codecs import open from collections import defaultdict from os import getenv, path, walk -from typing import TYPE_CHECKING, Any +from typing import TYPE_CHECKING, Any, Literal from uuid import uuid4 from docutils import nodes @@ -119,8 +119,8 @@ class GettextRenderer(SphinxRenderer): class I18nTags(Tags): """Dummy tags module for I18nBuilder. - To translate all text inside of only nodes, this class - always returns True value even if no tags are defined. + To ensure that all text inside ``only`` nodes is translated, + this class always returns ``True`` regardless the defined tags. """ def eval_condition(self, condition: Any) -> bool: @@ -240,7 +240,7 @@ class MessageCatalogBuilder(I18nBuilder): def _extract_from_template(self) -> None: files = list(self._collect_templates()) files.sort() - logger.info(bold(__('building [%s]: ') % self.name), nonl=True) + logger.info(bold(__('building [%s]: ')), self.name, nonl=True) logger.info(__('targets for %d template files'), len(files)) extract_translations = self.templates.environment.extract_translations @@ -257,11 +257,11 @@ class MessageCatalogBuilder(I18nBuilder): msg = f'{template}: {exc!r}' raise ThemeError(msg) from exc - def build( + def build( # type: ignore[misc] self, docnames: Iterable[str] | None, summary: str | None = None, - method: str = 'update', + method: Literal['all', 'specific', 'update'] = 'update', ) -> None: self._extract_from_template() super().build(docnames, summary, method) @@ -287,7 +287,7 @@ class MessageCatalogBuilder(I18nBuilder): ensuredir(path.join(self.outdir, path.dirname(textdomain))) context['messages'] = list(catalog) - content = GettextRenderer(outdir=self.outdir).render('message.pot_t', context) + content = GettextRenderer(outdir=self.outdir).render('message.pot.jinja', context) pofn = path.join(self.outdir, textdomain + '.pot') if should_write(pofn, content): @@ -299,9 +299,9 @@ def _gettext_compact_validator(app: Sphinx, config: Config) -> None: gettext_compact = config.gettext_compact # Convert 0/1 from the command line to ``bool`` types if gettext_compact == '0': - config.gettext_compact = False # type: ignore[attr-defined] + config.gettext_compact = False elif gettext_compact == '1': - config.gettext_compact = True # type: ignore[attr-defined] + config.gettext_compact = True def setup(app: Sphinx) -> ExtensionMetadata: @@ -311,7 +311,7 @@ def setup(app: Sphinx) -> ExtensionMetadata: app.add_config_value('gettext_location', True, 'gettext') app.add_config_value('gettext_uuid', False, 'gettext') app.add_config_value('gettext_auto_build', True, 'env') - app.add_config_value('gettext_additional_targets', [], 'env') + app.add_config_value('gettext_additional_targets', [], 'env', types={set, list}) app.add_config_value('gettext_last_translator', 'FULL NAME <EMAIL@ADDRESS>', 'gettext') app.add_config_value('gettext_language_team', 'LANGUAGE <LL@li.org>', 'gettext') app.connect('config-inited', _gettext_compact_validator, priority=800) diff --git a/sphinx/builders/html/__init__.py b/sphinx/builders/html/__init__.py index 75b0a39..1e5162b 100644 --- a/sphinx/builders/html/__init__.py +++ b/sphinx/builders/html/__init__.py @@ -115,7 +115,7 @@ class BuildInfo: """ @classmethod - def load(cls: type[BuildInfo], f: IO) -> BuildInfo: + def load(cls: type[BuildInfo], f: IO[str]) -> BuildInfo: try: lines = f.readlines() assert lines[0].rstrip() == '# Sphinx build info version 1' @@ -149,7 +149,7 @@ class BuildInfo: return (self.config_hash == other.config_hash and self.tags_hash == other.tags_hash) - def dump(self, f: IO) -> None: + def dump(self, f: IO[str]) -> None: f.write('# Sphinx build info version 1\n' '# This file hashes the configuration used when building these files.' ' When it is not found, a full rebuild will be done.\n' @@ -201,7 +201,9 @@ class StandaloneHTMLBuilder(Builder): self._js_files: list[_JavaScript] = [] # Cached Publisher for writing doctrees to HTML - reader: Reader = docutils.readers.doctree.Reader(parser_name='restructuredtext') + reader: Reader[DocTreeInput] = docutils.readers.doctree.Reader( + parser_name='restructuredtext' + ) pub = Publisher( reader=reader, parser=reader.parser, @@ -209,11 +211,7 @@ class StandaloneHTMLBuilder(Builder): source_class=DocTreeInput, destination=StringOutput(encoding='unicode'), ) - if docutils.__version_info__[:2] >= (0, 19): - pub.get_settings(output_encoding='unicode', traceback=True) - else: - op = pub.setup_option_parser(output_encoding='unicode', traceback=True) - pub.settings = op.get_default_values() + pub.get_settings(output_encoding='unicode', traceback=True) self._publisher = pub def init(self) -> None: @@ -269,7 +267,7 @@ class StandaloneHTMLBuilder(Builder): else: yield 'default.css' - def get_theme_config(self) -> tuple[str, dict]: + def get_theme_config(self) -> tuple[str, dict[str, str | int | bool]]: return self.config.html_theme, self.config.html_theme_options def init_templates(self) -> None: @@ -465,29 +463,31 @@ class StandaloneHTMLBuilder(Builder): # determine the additional indices to include self.domain_indices = [] # html_domain_indices can be False/True or a list of index names - indices_config = self.config.html_domain_indices - if indices_config: + if indices_config := self.config.html_domain_indices: + if not isinstance(indices_config, bool): + check_names = True + indices_config = frozenset(indices_config) + else: + check_names = False for domain_name in sorted(self.env.domains): domain: Domain = self.env.domains[domain_name] - for indexcls in domain.indices: - indexname = f'{domain.name}-{indexcls.name}' - if isinstance(indices_config, list): - if indexname not in indices_config: - continue - content, collapse = indexcls(domain).generate() + for index_cls in domain.indices: + index_name = f'{domain.name}-{index_cls.name}' + if check_names and index_name not in indices_config: + continue + content, collapse = index_cls(domain).generate() if content: self.domain_indices.append( - (indexname, indexcls, content, collapse)) + (index_name, index_cls, content, collapse)) # format the "last updated on" string, only once is enough since it # typically doesn't include the time of day - self.last_updated: str | None - lufmt = self.config.html_last_updated_fmt - if lufmt is not None: - self.last_updated = format_date(lufmt or _('%b %d, %Y'), - language=self.config.language) + last_updated: str | None + if (lu_fmt := self.config.html_last_updated_fmt) is not None: + lu_fmt = lu_fmt or _('%b %d, %Y') + last_updated = format_date(lu_fmt, language=self.config.language) else: - self.last_updated = None + last_updated = None # If the logo or favicon are urls, keep them as-is, otherwise # strip the relative path as the files will be copied into _static. @@ -526,7 +526,7 @@ class StandaloneHTMLBuilder(Builder): 'project': self.config.project, 'release': return_codes_re.sub('', self.config.release), 'version': self.config.version, - 'last_updated': self.last_updated, + 'last_updated': last_updated, 'copyright': self.config.copyright, 'master_doc': self.config.root_doc, 'root_doc': self.config.root_doc, @@ -552,6 +552,7 @@ class StandaloneHTMLBuilder(Builder): 'builder': self.name, 'parents': [], 'logo_url': logo, + 'logo_alt': _('Logo of %s') % self.config.project, 'favicon_url': favicon, 'html5_doctype': True, } @@ -814,8 +815,8 @@ class StandaloneHTMLBuilder(Builder): def copy_theme_static_files(self, context: dict[str, Any]) -> None: def onerror(filename: str, error: Exception) -> None: - logger.warning(__('Failed to copy a file in html_static_file: %s: %r'), - filename, error) + msg = __("Failed to copy a file in the theme's 'static' directory: %s: %r") + logger.warning(msg, filename, error) if self.theme: for entry in reversed(self.theme.get_theme_dirs()): @@ -824,7 +825,7 @@ class StandaloneHTMLBuilder(Builder): excluded=DOTFILES, context=context, renderer=self.templates, onerror=onerror) - def copy_html_static_files(self, context: dict) -> None: + def copy_html_static_files(self, context: dict[str, Any]) -> None: def onerror(filename: str, error: Exception) -> None: logger.warning(__('Failed to copy a file in html_static_file: %s: %r'), filename, error) @@ -890,7 +891,7 @@ class StandaloneHTMLBuilder(Builder): def post_process_images(self, doctree: Node) -> None: """Pick the best candidate for an image and link down-scaled images to - their high res version. + their high resolution version. """ super().post_process_images(doctree) @@ -957,47 +958,47 @@ class StandaloneHTMLBuilder(Builder): def get_outfilename(self, pagename: str) -> str: return path.join(self.outdir, os_path(pagename) + self.out_suffix) - def add_sidebars(self, pagename: str, ctx: dict) -> None: + def add_sidebars(self, pagename: str, ctx: dict[str, Any]) -> None: def has_wildcard(pattern: str) -> bool: return any(char in pattern for char in '*?[') matched = None - customsidebar = None # default sidebars settings for selected theme sidebars = list(self.theme.sidebar_templates) # user sidebar settings html_sidebars = self.get_builder_config('sidebars', 'html') - for pattern, patsidebars in html_sidebars.items(): + msg = __('page %s matches two patterns in html_sidebars: %r and %r') + for pattern, pat_sidebars in html_sidebars.items(): if patmatch(pagename, pattern): - if matched: - if has_wildcard(pattern): - # warn if both patterns contain wildcards - if has_wildcard(matched): - logger.warning(__('page %s matches two patterns in ' - 'html_sidebars: %r and %r'), - pagename, matched, pattern) - # else the already matched pattern is more specific - # than the present one, because it contains no wildcard - continue + if matched and has_wildcard(pattern): + # warn if both patterns contain wildcards + if has_wildcard(matched): + logger.warning(msg, pagename, matched) + # else the already matched pattern is more specific + # than the present one, because it contains no wildcard + continue matched = pattern - sidebars = patsidebars - - if len(sidebars) == 0: - # keep defaults - pass + sidebars = pat_sidebars + # See error_on_html_sidebars_string_values. + # Replace with simple list coercion in Sphinx 8.0 + # xref: RemovedInSphinx80Warning ctx['sidebars'] = sidebars - ctx['customsidebar'] = customsidebar # --------- these are overwritten by the serialization builder def get_target_uri(self, docname: str, typ: str | None = None) -> str: return quote(docname) + self.link_suffix - def handle_page(self, pagename: str, addctx: dict, templatename: str = 'page.html', - outfilename: str | None = None, event_arg: Any = None) -> None: + def handle_page( + self, pagename: str, + addctx: dict[str, Any], + templatename: str = 'page.html', + outfilename: str | None = None, + event_arg: Any = None, + ) -> None: ctx = self.globalcontext.copy() # current_page_name is backwards compatibility ctx['pagename'] = ctx['current_page_name'] = pagename @@ -1141,10 +1142,11 @@ class StandaloneHTMLBuilder(Builder): source_name = path.join(self.outdir, '_sources', os_path(ctx['sourcename'])) ensuredir(path.dirname(source_name)) - copyfile(self.env.doc2path(pagename), source_name) + copyfile(self.env.doc2path(pagename), source_name, + __overwrite_warning__=False) def update_page_context(self, pagename: str, templatename: str, - ctx: dict, event_arg: Any) -> None: + ctx: dict[str, Any], event_arg: Any) -> None: pass def handle_finish(self) -> None: @@ -1175,7 +1177,7 @@ class StandaloneHTMLBuilder(Builder): def convert_html_css_files(app: Sphinx, config: Config) -> None: """Convert string styled html_css_files to tuple styled one.""" - html_css_files: list[tuple[str, dict]] = [] + html_css_files: list[tuple[str, dict[str, str]]] = [] for entry in config.html_css_files: if isinstance(entry, str): html_css_files.append((entry, {})) @@ -1187,7 +1189,7 @@ def convert_html_css_files(app: Sphinx, config: Config) -> None: logger.warning(__('invalid css_file: %r, ignored'), entry) continue - config.html_css_files = html_css_files # type: ignore[attr-defined] + config.html_css_files = html_css_files def _format_modified_time(timestamp: float) -> str: @@ -1198,7 +1200,7 @@ def _format_modified_time(timestamp: float) -> str: def convert_html_js_files(app: Sphinx, config: Config) -> None: """Convert string styled html_js_files to tuple styled one.""" - html_js_files: list[tuple[str, dict]] = [] + html_js_files: list[tuple[str, dict[str, str]]] = [] for entry in config.html_js_files: if isinstance(entry, str): html_js_files.append((entry, {})) @@ -1210,11 +1212,11 @@ def convert_html_js_files(app: Sphinx, config: Config) -> None: logger.warning(__('invalid js_file: %r, ignored'), entry) continue - config.html_js_files = html_js_files # type: ignore[attr-defined] + config.html_js_files = html_js_files def setup_resource_paths(app: Sphinx, pagename: str, templatename: str, - context: dict, doctree: Node) -> None: + context: dict[str, Any], doctree: Node) -> None: """Set up relative resource paths.""" pathto = context['pathto'] @@ -1273,7 +1275,7 @@ def validate_html_logo(app: Sphinx, config: Config) -> None: not path.isfile(path.join(app.confdir, config.html_logo)) and not isurl(config.html_logo)): logger.warning(__('logo file %r does not exist'), config.html_logo) - config.html_logo = None # type: ignore[attr-defined] + config.html_logo = None def validate_html_favicon(app: Sphinx, config: Config) -> None: @@ -1282,7 +1284,26 @@ def validate_html_favicon(app: Sphinx, config: Config) -> None: not path.isfile(path.join(app.confdir, config.html_favicon)) and not isurl(config.html_favicon)): logger.warning(__('favicon file %r does not exist'), config.html_favicon) - config.html_favicon = None # type: ignore[attr-defined] + config.html_favicon = None + + +def error_on_html_sidebars_string_values(app: Sphinx, config: Config) -> None: + """Support removed in Sphinx 2.""" + errors = {} + for pattern, pat_sidebars in config.html_sidebars.items(): + if isinstance(pat_sidebars, str): + errors[pattern] = [pat_sidebars] + if not errors: + return + msg = __("Values in 'html_sidebars' must be a list of strings. " + "At least one pattern has a string value: %s. " + "Change to `html_sidebars = %r`.") + bad_patterns = ', '.join(map(repr, errors)) + fixed = config.html_sidebars | errors + logger.error(msg, bad_patterns, fixed) + # Enable hard error in next major version. + # xref: RemovedInSphinx80Warning + # raise ConfigError(msg % (bad_patterns, fixed)) def error_on_html_4(_app: Sphinx, config: Config) -> None: @@ -1315,7 +1336,7 @@ def setup(app: Sphinx) -> ExtensionMetadata: app.add_config_value('html_last_updated_fmt', None, 'html', str) app.add_config_value('html_sidebars', {}, 'html') app.add_config_value('html_additional_pages', {}, 'html') - app.add_config_value('html_domain_indices', True, 'html', list) + app.add_config_value('html_domain_indices', True, 'html', types={set, list}) app.add_config_value('html_permalinks', True, 'html') app.add_config_value('html_permalinks_icon', '¶', 'html') app.add_config_value('html_use_index', True, 'html') @@ -1355,6 +1376,7 @@ def setup(app: Sphinx) -> ExtensionMetadata: app.connect('config-inited', validate_html_static_path, priority=800) app.connect('config-inited', validate_html_logo, priority=800) app.connect('config-inited', validate_html_favicon, priority=800) + app.connect('config-inited', error_on_html_sidebars_string_values, priority=800) app.connect('config-inited', error_on_html_4, priority=800) app.connect('builder-inited', validate_math_renderer) app.connect('html-page-context', setup_resource_paths) diff --git a/sphinx/builders/latex/__init__.py b/sphinx/builders/latex/__init__.py index 2b176f9..705a9cc 100644 --- a/sphinx/builders/latex/__init__.py +++ b/sphinx/builders/latex/__init__.py @@ -417,7 +417,7 @@ class LaTeXBuilder(Builder): # use pre-1.6.x Makefile for make latexpdf on Windows if os.name == 'nt': staticdirname = path.join(package_dir, 'texinputs_win') - copy_asset_file(path.join(staticdirname, 'Makefile_t'), + copy_asset_file(path.join(staticdirname, 'Makefile.jinja'), self.outdir, context=context) @progress_message(__('copying additional files')) @@ -456,7 +456,7 @@ class LaTeXBuilder(Builder): if self.context['babel'] or self.context['polyglossia']: context['addtocaptions'] = r'\addto\captions%s' % self.babel.get_language() - filename = path.join(package_dir, 'templates', 'latex', 'sphinxmessages.sty_t') + filename = path.join(package_dir, 'templates', 'latex', 'sphinxmessages.sty.jinja') copy_asset_file(filename, self.outdir, context=context, renderer=LaTeXRenderer()) @@ -464,7 +464,7 @@ def validate_config_values(app: Sphinx, config: Config) -> None: for key in list(config.latex_elements): if key not in DEFAULT_SETTINGS: msg = __("Unknown configure key: latex_elements[%r], ignored.") - logger.warning(msg % (key,)) + logger.warning(msg, key) config.latex_elements.pop(key) @@ -472,7 +472,7 @@ def validate_latex_theme_options(app: Sphinx, config: Config) -> None: for key in list(config.latex_theme_options): if key not in Theme.UPDATABLE_KEYS: msg = __("Unknown theme option: latex_theme_options[%r], ignored.") - logger.warning(msg % (key,)) + logger.warning(msg, key) config.latex_theme_options.pop(key) @@ -539,7 +539,7 @@ def setup(app: Sphinx) -> ExtensionMetadata: app.add_config_value('latex_use_xindy', default_latex_use_xindy, '', bool) app.add_config_value('latex_toplevel_sectioning', None, '', ENUM(None, 'part', 'chapter', 'section')) - app.add_config_value('latex_domain_indices', True, '', list) + app.add_config_value('latex_domain_indices', True, '', types={set, list}) app.add_config_value('latex_show_urls', 'no', '') app.add_config_value('latex_show_pagerefs', False, '') app.add_config_value('latex_elements', {}, '') diff --git a/sphinx/builders/latex/constants.py b/sphinx/builders/latex/constants.py index ce646d0..9da66e8 100644 --- a/sphinx/builders/latex/constants.py +++ b/sphinx/builders/latex/constants.py @@ -183,6 +183,11 @@ ADDITIONAL_SETTINGS: dict[Any, dict[str, Any]] = { }, # special settings for latex_engine + language_code + ('lualatex', 'fr'): { + # use babel instead of polyglossia by default + 'polyglossia': '', + 'babel': '\\usepackage{babel}', + }, ('xelatex', 'fr'): { # use babel instead of polyglossia by default 'polyglossia': '', diff --git a/sphinx/builders/linkcheck.py b/sphinx/builders/linkcheck.py index 9178458..247f014 100644 --- a/sphinx/builders/linkcheck.py +++ b/sphinx/builders/linkcheck.py @@ -13,7 +13,7 @@ from os import path from queue import PriorityQueue, Queue from threading import Thread from typing import TYPE_CHECKING, NamedTuple, cast -from urllib.parse import unquote, urlparse, urlsplit, urlunparse +from urllib.parse import quote, unquote, urlparse, urlsplit, urlunparse from docutils import nodes from requests.exceptions import ConnectionError, HTTPError, SSLError, TooManyRedirects @@ -102,9 +102,11 @@ class CheckExternalLinksBuilder(DummyBuilder): def process_result(self, result: CheckResult) -> None: filename = self.env.doc2path(result.docname, False) - linkstat = {'filename': filename, 'lineno': result.lineno, - 'status': result.status, 'code': result.code, 'uri': result.uri, - 'info': result.message} + linkstat: dict[str, str | int] = { + 'filename': filename, 'lineno': result.lineno, + 'status': result.status, 'code': result.code, + 'uri': result.uri, 'info': result.message, + } self.write_linkstat(linkstat) if result.status == 'unchecked': @@ -164,7 +166,7 @@ class CheckExternalLinksBuilder(DummyBuilder): else: raise ValueError('Unknown status %s.' % result.status) - def write_linkstat(self, data: dict) -> None: + def write_linkstat(self, data: dict[str, str | int]) -> None: self.json_outfile.write(json.dumps(data)) self.json_outfile.write('\n') @@ -178,41 +180,67 @@ class HyperlinkCollector(SphinxPostTransform): default_priority = 800 def run(self, **kwargs: Any) -> None: - builder = cast(CheckExternalLinksBuilder, self.app.builder) - hyperlinks = builder.hyperlinks - docname = self.env.docname + for node in self.document.findall(): + if uri := self.find_uri(node): + self._add_uri(uri, node) + + def find_uri(self, node: nodes.Element) -> str | None: + """Find a URI for a given node. + This call can be used to retrieve a URI from a provided node. If no + URI exists for a provided node, this call will return ``None``. + + This method can be useful for extension developers who wish to + easily inject hyperlinks into a builder by only needing to override + this method. + + :param node: A node class + :returns: URI of the node + """ # reference nodes - for refnode in self.document.findall(nodes.reference): - if 'refuri' in refnode: - uri = refnode['refuri'] - _add_uri(self.app, uri, refnode, hyperlinks, docname) + if isinstance(node, nodes.reference): + if 'refuri' in node: + return node['refuri'] # image nodes - for imgnode in self.document.findall(nodes.image): - uri = imgnode['candidates'].get('?') + if isinstance(node, nodes.image): + uri = node['candidates'].get('?') if uri and '://' in uri: - _add_uri(self.app, uri, imgnode, hyperlinks, docname) + return uri # raw nodes - for rawnode in self.document.findall(nodes.raw): - uri = rawnode.get('source') + if isinstance(node, nodes.raw): + uri = node.get('source') if uri and '://' in uri: - _add_uri(self.app, uri, rawnode, hyperlinks, docname) + return uri + + return None + def _add_uri(self, uri: str, node: nodes.Element) -> None: + """Registers a node's URI into a builder's collection of hyperlinks. -def _add_uri(app: Sphinx, uri: str, node: nodes.Element, - hyperlinks: dict[str, Hyperlink], docname: str) -> None: - if newuri := app.emit_firstresult('linkcheck-process-uri', uri): - uri = newuri + Provides the ability to register a URI value determined from a node + into the linkcheck's builder. URI's processed through this call can + be manipulated through a ``linkcheck-process-uri`` event before the + builder attempts to validate. - try: - lineno = get_node_line(node) - except ValueError: - lineno = -1 + :param uri: URI to add + :param node: A node class where the URI was found + """ + builder = cast(CheckExternalLinksBuilder, self.app.builder) + hyperlinks = builder.hyperlinks + docname = self.env.docname + + if newuri := self.app.emit_firstresult('linkcheck-process-uri', uri): + uri = newuri + + try: + lineno = get_node_line(node) + except ValueError: + lineno = -1 - if uri not in hyperlinks: - hyperlinks[uri] = Hyperlink(uri, docname, app.env.doc2path(docname), lineno) + if uri not in hyperlinks: + hyperlinks[uri] = Hyperlink(uri, docname, self.env.doc2path(docname), lineno) class Hyperlink(NamedTuple): @@ -390,9 +418,11 @@ class HyperlinkAvailabilityCheckWorker(Thread): return status, info, code - def _retrieval_methods(self, - check_anchors: bool, - anchor: str) -> Iterator[tuple[Callable, dict]]: + def _retrieval_methods( + self, + check_anchors: bool, + anchor: str, + ) -> Iterator[tuple[Callable[..., Response], dict[str, bool]]]: if not check_anchors or not anchor: yield self._session.head, {'allow_redirects': True} yield self._session.get, {'stream': True} @@ -409,6 +439,7 @@ class HyperlinkAvailabilityCheckWorker(Thread): if rex.match(req_url): anchor = '' break + anchor = unquote(anchor) # handle non-ASCII URIs try: @@ -444,14 +475,18 @@ class HyperlinkAvailabilityCheckWorker(Thread): _user_agent=self.user_agent, _tls_info=(self.tls_verify, self.tls_cacerts), ) as response: - if (self.check_anchors and response.ok and anchor - and not contains_anchor(response, anchor)): - raise Exception(__(f'Anchor {anchor!r} not found')) + if anchor and self.check_anchors and response.ok: + try: + found = contains_anchor(response, anchor) + except UnicodeDecodeError: + return 'ignored', 'unable to decode response content', 0 + if not found: + return 'broken', __("Anchor '%s' not found") % quote(anchor), 0 # Copy data we need from the (closed) response status_code = response.status_code redirect_status_code = response.history[-1].status_code if response.history else None # NoQA: E501 - retry_after = response.headers.get('Retry-After') + retry_after = response.headers.get('Retry-After', '') response_url = f'{response.url}' response.raise_for_status() del response @@ -536,7 +571,7 @@ class HyperlinkAvailabilityCheckWorker(Thread): else: return 'redirected', response_url, 0 - def limit_rate(self, response_url: str, retry_after: str) -> float | None: + def limit_rate(self, response_url: str, retry_after: str | None) -> float | None: delay = DEFAULT_DELAY next_check = None if retry_after: @@ -592,7 +627,7 @@ def _get_request_headers( def contains_anchor(response: Response, anchor: str) -> bool: """Determine if an anchor is contained within an HTTP response.""" - parser = AnchorCheckParser(unquote(anchor)) + parser = AnchorCheckParser(anchor) # Read file in chunks. If we find a matching anchor, we break # the loop early in hopes not to have to download the whole thing. for chunk in response.iter_content(chunk_size=4096, decode_unicode=True): @@ -681,7 +716,7 @@ def setup(app: Sphinx) -> ExtensionMetadata: # commonly used for dynamic pages app.add_config_value('linkcheck_anchors_ignore', ['^!'], '') app.add_config_value('linkcheck_anchors_ignore_for_url', (), '', (tuple, list)) - app.add_config_value('linkcheck_rate_limit_timeout', 300.0, '') + app.add_config_value('linkcheck_rate_limit_timeout', 300.0, '', (int, float)) app.add_config_value('linkcheck_allow_unauthorized', True, '') app.add_config_value('linkcheck_report_timeouts_as_broken', True, '', bool) diff --git a/sphinx/builders/texinfo.py b/sphinx/builders/texinfo.py index 8d5a1aa..ece5684 100644 --- a/sphinx/builders/texinfo.py +++ b/sphinx/builders/texinfo.py @@ -221,7 +221,7 @@ def setup(app: Sphinx) -> ExtensionMetadata: app.add_config_value('texinfo_documents', default_texinfo_documents, '') app.add_config_value('texinfo_appendices', [], '') app.add_config_value('texinfo_elements', {}, '') - app.add_config_value('texinfo_domain_indices', True, '', list) + app.add_config_value('texinfo_domain_indices', True, '', types={set, list}) app.add_config_value('texinfo_show_urls', 'footnote', '') app.add_config_value('texinfo_no_detailmenu', False, '') app.add_config_value('texinfo_cross_references', True, '') diff --git a/sphinx/cmd/build.py b/sphinx/cmd/build.py index be23e0b..02fd99a 100644 --- a/sphinx/cmd/build.py +++ b/sphinx/cmd/build.py @@ -179,7 +179,7 @@ files can be built by specifying individual filenames. dest='tags', default=[], help=__('define tag: include "only" blocks with TAG')) group.add_argument('--nitpicky', '-n', action='store_true', dest='nitpicky', - help=__('nit-picky mode: warn about all missing references')) + help=__('nitpicky mode: warn about all missing references')) group = parser.add_argument_group(__('console output options')) group.add_argument('--verbose', '-v', action='count', dest='verbosity', diff --git a/sphinx/cmd/quickstart.py b/sphinx/cmd/quickstart.py index 8fb7eeb..b75e0fa 100644 --- a/sphinx/cmd/quickstart.py +++ b/sphinx/cmd/quickstart.py @@ -372,32 +372,32 @@ def generate( if 'quiet' not in d: print(__('File %s already exists, skipping.') % fpath) - conf_path = os.path.join(templatedir, 'conf.py_t') if templatedir else None + conf_path = os.path.join(templatedir, 'conf.py.jinja') if templatedir else None if not conf_path or not path.isfile(conf_path): - conf_path = os.path.join(package_dir, 'templates', 'quickstart', 'conf.py_t') + conf_path = os.path.join(package_dir, 'templates', 'quickstart', 'conf.py.jinja') with open(conf_path, encoding="utf-8") as f: conf_text = f.read() write_file(path.join(srcdir, 'conf.py'), template.render_string(conf_text, d)) masterfile = path.join(srcdir, d['master'] + d['suffix']) - if template._has_custom_template('quickstart/master_doc.rst_t'): - msg = ('A custom template `master_doc.rst_t` found. It has been renamed to ' - '`root_doc.rst_t`. Please rename it on your project too.') + if template._has_custom_template('quickstart/master_doc.rst.jinja'): + msg = ('A custom template `master_doc.rst.jinja` found. It has been renamed to ' + '`root_doc.rst.jinja`. Please rename it on your project too.') print(colorize('red', msg)) - write_file(masterfile, template.render('quickstart/master_doc.rst_t', d)) + write_file(masterfile, template.render('quickstart/master_doc.rst.jinja', d)) else: - write_file(masterfile, template.render('quickstart/root_doc.rst_t', d)) + write_file(masterfile, template.render('quickstart/root_doc.rst.jinja', d)) if d.get('make_mode'): - makefile_template = 'quickstart/Makefile.new_t' - batchfile_template = 'quickstart/make.bat.new_t' + makefile_template = 'quickstart/Makefile.new.jinja' + batchfile_template = 'quickstart/make.bat.new.jinja' else: # xref RemovedInSphinx80Warning msg = "Support for '--no-use-make-mode' will be removed in Sphinx 8." print(colorize('red', msg)) - makefile_template = 'quickstart/Makefile_t' - batchfile_template = 'quickstart/make.bat_t' + makefile_template = 'quickstart/Makefile.jinja' + batchfile_template = 'quickstart/make.bat.jinja' if d['makefile'] is True: d['rsrcdir'] = 'source' if d['sep'] else '.' diff --git a/sphinx/config.py b/sphinx/config.py index 1f4b470..6710729 100644 --- a/sphinx/config.py +++ b/sphinx/config.py @@ -97,17 +97,19 @@ _OptValidTypes = Union[tuple[()], tuple[type, ...], frozenset[type], ENUM] class _Opt: - __slots__ = 'default', 'rebuild', 'valid_types' + __slots__ = 'default', 'rebuild', 'valid_types', 'description' default: Any rebuild: _ConfigRebuild valid_types: _OptValidTypes + description: str def __init__( self, default: Any, rebuild: _ConfigRebuild, valid_types: _OptValidTypes, + description: str = '', ) -> None: """Configuration option type for Sphinx. @@ -120,52 +122,56 @@ class _Opt: super().__setattr__('default', default) super().__setattr__('rebuild', rebuild) super().__setattr__('valid_types', valid_types) + super().__setattr__('description', description) def __repr__(self) -> str: return ( f'{self.__class__.__qualname__}(' f'default={self.default!r}, ' f'rebuild={self.rebuild!r}, ' - f'valid_types={self.valid_types!r})' + f'valid_types={self.rebuild!r}, ' + f'description={self.description!r})' ) def __eq__(self, other: object) -> bool: if isinstance(other, _Opt): - self_tpl = (self.default, self.rebuild, self.valid_types) - other_tpl = (other.default, other.rebuild, other.valid_types) + self_tpl = (self.default, self.rebuild, self.valid_types, self.description) + other_tpl = (other.default, other.rebuild, other.valid_types, self.description) return self_tpl == other_tpl return NotImplemented def __lt__(self, other: _Opt) -> bool: if self.__class__ is other.__class__: - self_tpl = (self.default, self.rebuild, self.valid_types) - other_tpl = (other.default, other.rebuild, other.valid_types) + self_tpl = (self.default, self.rebuild, self.valid_types, self.description) + other_tpl = (other.default, other.rebuild, other.valid_types, self.description) return self_tpl > other_tpl return NotImplemented def __hash__(self) -> int: - return hash((self.default, self.rebuild, self.valid_types)) + return hash((self.default, self.rebuild, self.valid_types, self.description)) def __setattr__(self, key: str, value: Any) -> None: - if key in {'default', 'rebuild', 'valid_types'}: + if key in {'default', 'rebuild', 'valid_types', 'description'}: msg = f'{self.__class__.__name__!r} object does not support assignment to {key!r}' raise TypeError(msg) super().__setattr__(key, value) def __delattr__(self, key: str) -> None: - if key in {'default', 'rebuild', 'valid_types'}: + if key in {'default', 'rebuild', 'valid_types', 'description'}: msg = f'{self.__class__.__name__!r} object does not support deletion of {key!r}' raise TypeError(msg) super().__delattr__(key) - def __getstate__(self) -> tuple[Any, _ConfigRebuild, _OptValidTypes]: - return self.default, self.rebuild, self.valid_types + def __getstate__(self) -> tuple[Any, _ConfigRebuild, _OptValidTypes, str]: + return self.default, self.rebuild, self.valid_types, self.description - def __setstate__(self, state: tuple[Any, _ConfigRebuild, _OptValidTypes]) -> None: - default, rebuild, valid_types = state + def __setstate__( + self, state: tuple[Any, _ConfigRebuild, _OptValidTypes, str]) -> None: + default, rebuild, valid_types, description = state super().__setattr__('default', default) super().__setattr__('rebuild', rebuild) super().__setattr__('valid_types', valid_types) + super().__setattr__('description', description) def __getitem__(self, item: int | slice) -> Any: warnings.warn( @@ -196,11 +202,11 @@ class Config: config_values: dict[str, _Opt] = { # general options - 'project': _Opt('Python', 'env', ()), - 'author': _Opt('unknown', 'env', ()), + 'project': _Opt('Project name not set', 'env', ()), + 'author': _Opt('Author name not set', 'env', ()), 'project_copyright': _Opt('', 'html', frozenset((str, tuple, list))), 'copyright': _Opt( - lambda c: c.project_copyright, 'html', frozenset((str, tuple, list))), + lambda config: config.project_copyright, 'html', frozenset((str, tuple, list))), 'version': _Opt('', 'env', ()), 'release': _Opt('', 'env', ()), 'today': _Opt('', 'env', ()), @@ -258,6 +264,7 @@ class Config: 'math_number_all': _Opt(False, 'env', ()), 'math_eqref_format': _Opt(None, 'env', frozenset((str,))), 'math_numfig': _Opt(True, 'env', ()), + 'math_numsep': _Opt('.', 'env', frozenset((str,))), 'tls_verify': _Opt(True, 'env', ()), 'tls_cacerts': _Opt(None, 'env', ()), 'user_agent': _Opt(None, 'env', frozenset((str,))), @@ -326,34 +333,33 @@ class Config: valid_types = opt.valid_types if valid_types == Any: return value - elif (type(default) is bool - or (not isinstance(valid_types, ENUM) - and len(valid_types) == 1 and bool in valid_types)): + if (type(default) is bool + or (not isinstance(valid_types, ENUM) + and len(valid_types) == 1 and bool in valid_types)): if isinstance(valid_types, ENUM) or len(valid_types) > 1: # if valid_types are given, and non-bool valid types exist, # return the value without coercing to a Boolean. return value # given falsy string from a command line option return value not in {'0', ''} - elif isinstance(default, dict): + if isinstance(default, dict): raise ValueError(__('cannot override dictionary config setting %r, ' 'ignoring (use %r to set individual elements)') % (name, f'{name}.key=value')) - elif isinstance(default, list): + if isinstance(default, list): return value.split(',') - elif isinstance(default, int): + if isinstance(default, int): try: return int(value) except ValueError as exc: raise ValueError(__('invalid number %r for config value %r, ignoring') % (value, name)) from exc - elif callable(default): + if callable(default): return value - elif default is not None and not isinstance(default, str): - raise ValueError(__('cannot override config setting %r with unsupported ' - 'type, ignoring') % name) - else: + if isinstance(default, str) or default is None: return value + raise ValueError(__('cannot override config setting %r with unsupported ' + 'type, ignoring') % name) @staticmethod def pre_init_values() -> None: @@ -385,6 +391,18 @@ class Config: values.append(f"{opt_name}={opt_value!r}") return self.__class__.__qualname__ + '(' + ', '.join(values) + ')' + def __setattr__(self, key: str, value: object) -> None: + # Ensure aliases update their counterpart. + if key == 'master_doc': + super().__setattr__('root_doc', value) + elif key == 'root_doc': + super().__setattr__('master_doc', value) + elif key == 'copyright': + super().__setattr__('project_copyright', value) + elif key == 'project_copyright': + super().__setattr__('copyright', value) + super().__setattr__(key, value) + def __getattr__(self, name: str) -> Any: if name in self._options: # first check command-line overrides @@ -398,11 +416,12 @@ class Config: except ValueError as exc: logger.warning("%s", exc) else: - self.__dict__[name] = value + self.__setattr__(name, value) return value # then check values from 'conf.py' if name in self._raw_config: - self.__dict__[name] = value = self._raw_config[name] + value = self._raw_config[name] + self.__setattr__(name, value) return value # finally, fall back to the default value default = self._options[name].default @@ -433,7 +452,8 @@ class Config: yield ConfigValue(name, getattr(self, name), opt.rebuild) def add(self, name: str, default: Any, rebuild: _ConfigRebuild, - types: type | Collection[type] | ENUM) -> None: + types: type | Collection[type] | ENUM, + description: str = '') -> None: if name in self._options: raise ExtensionError(__('Config value %r already present') % name) @@ -443,7 +463,7 @@ class Config: # standardise valid_types valid_types = _validate_valid_types(types) - self._options[name] = _Opt(default, rebuild, valid_types) + self._options[name] = _Opt(default, rebuild, valid_types, description) def filter(self, rebuild: Set[_ConfigRebuild]) -> Iterator[ConfigValue]: if isinstance(rebuild, str): @@ -561,14 +581,18 @@ def convert_source_suffix(app: Sphinx, config: Config) -> None: # # The default filetype is determined on later step. # By default, it is considered as restructuredtext. - config.source_suffix = {source_suffix: None} # type: ignore[attr-defined] + config.source_suffix = {source_suffix: 'restructuredtext'} + logger.info(__("Converting `source_suffix = %r` to `source_suffix = %r`."), + source_suffix, config.source_suffix) elif isinstance(source_suffix, (list, tuple)): # if list, considers as all of them are default filetype - config.source_suffix = dict.fromkeys(source_suffix, None) # type: ignore[attr-defined] + config.source_suffix = dict.fromkeys(source_suffix, 'restructuredtext') + logger.info(__("Converting `source_suffix = %r` to `source_suffix = %r`."), + source_suffix, config.source_suffix) elif not isinstance(source_suffix, dict): - logger.warning(__("The config value `source_suffix' expects " - "a string, list of strings, or dictionary. " - "But `%r' is given." % source_suffix)) + msg = __("The config value `source_suffix' expects a dictionary," + "a string, or a list of strings. Got `%r' instead (type %s).") + raise ConfigError(msg % (source_suffix, type(source_suffix))) def convert_highlight_options(app: Sphinx, config: Config) -> None: @@ -580,8 +604,7 @@ def convert_highlight_options(app: Sphinx, config: Config) -> None: options = config.highlight_options if options and not all(isinstance(v, dict) for v in options.values()): # old styled option detected because all values are not dictionary. - config.highlight_options = {config.highlight_language: # type: ignore[attr-defined] - options} + config.highlight_options = {config.highlight_language: options} def init_numfig_format(app: Sphinx, config: Config) -> None: @@ -593,7 +616,7 @@ def init_numfig_format(app: Sphinx, config: Config) -> None: # override default labels by configuration numfig_format.update(config.numfig_format) - config.numfig_format = numfig_format # type: ignore[attr-defined] + config.numfig_format = numfig_format def correct_copyright_year(_app: Sphinx, config: Config) -> None: @@ -713,7 +736,7 @@ def check_primary_domain(app: Sphinx, config: Config) -> None: primary_domain = config.primary_domain if primary_domain and not app.registry.has_domain(primary_domain): logger.warning(__('primary_domain %r not found, ignored.'), primary_domain) - config.primary_domain = None # type: ignore[attr-defined] + config.primary_domain = None def check_root_doc(app: Sphinx, env: BuildEnvironment, added: set[str], @@ -726,7 +749,7 @@ def check_root_doc(app: Sphinx, env: BuildEnvironment, added: set[str], 'contents' in app.project.docnames): logger.warning(__('Since v2.0, Sphinx uses "index" as root_doc by default. ' 'Please add "root_doc = \'contents\'" to your conf.py.')) - app.config.root_doc = "contents" # type: ignore[attr-defined] + app.config.root_doc = "contents" return changed diff --git a/sphinx/directives/__init__.py b/sphinx/directives/__init__.py index 9e06a7a..0c0c0cc 100644 --- a/sphinx/directives/__init__.py +++ b/sphinx/directives/__init__.py @@ -13,7 +13,6 @@ from sphinx.addnodes import desc_signature # NoQA: TCH001 from sphinx.util import docutils from sphinx.util.docfields import DocFieldTransformer, Field, TypedField from sphinx.util.docutils import SphinxDirective -from sphinx.util.nodes import nested_parse_with_titles from sphinx.util.typing import ExtensionMetadata, OptionSpec # NoQA: TCH001 if TYPE_CHECKING: @@ -127,7 +126,7 @@ class ObjectDescription(SphinxDirective, Generic[ObjDescT]): """ pass - def transform_content(self, contentnode: addnodes.desc_content) -> None: + def transform_content(self, content_node: addnodes.desc_content) -> None: """ Called after creating the content through nested parsing, but before the ``object-description-transform`` event is emitted, @@ -221,21 +220,26 @@ class ObjectDescription(SphinxDirective, Generic[ObjDescT]): node['domain'] = self.domain # 'desctype' is a backwards compatible attribute node['objtype'] = node['desctype'] = self.objtype + + # Copy old option names to new ones + # xref RemovedInSphinx90Warning + # deprecate noindex, noindexentry, and nocontentsentry in Sphinx 9.0 + if 'no-index' not in self.options and 'noindex' in self.options: + self.options['no-index'] = self.options['noindex'] + if 'no-index-entry' not in self.options and 'noindexentry' in self.options: + self.options['no-index-entry'] = self.options['noindexentry'] + if 'no-contents-entry' not in self.options and 'nocontentsentry' in self.options: + self.options['no-contents-entry'] = self.options['nocontentsentry'] + node['no-index'] = node['noindex'] = no_index = ( 'no-index' in self.options - # xref RemovedInSphinx90Warning - # deprecate noindex in Sphinx 9.0 - or 'noindex' in self.options) + ) node['no-index-entry'] = node['noindexentry'] = ( 'no-index-entry' in self.options - # xref RemovedInSphinx90Warning - # deprecate noindexentry in Sphinx 9.0 - or 'noindexentry' in self.options) + ) node['no-contents-entry'] = node['nocontentsentry'] = ( 'no-contents-entry' in self.options - # xref RemovedInSphinx90Warning - # deprecate nocontentsentry in Sphinx 9.0 - or 'nocontentsentry' in self.options) + ) node['no-typesetting'] = ('no-typesetting' in self.options) if self.domain: node['classes'].append(self.domain) @@ -275,18 +279,17 @@ class ObjectDescription(SphinxDirective, Generic[ObjDescT]): # description of the object with this name in this desc block self.add_target_and_index(name, sig, signode) - contentnode = addnodes.desc_content() - node.append(contentnode) - if self.names: # needed for association of version{added,changed} directives self.env.temp_data['object'] = self.names[0] self.before_content() - nested_parse_with_titles(self.state, self.content, contentnode, self.content_offset) - self.transform_content(contentnode) + content_children = self.parse_content_to_nodes(allow_section_headings=True) + content_node = addnodes.desc_content('', *content_children) + node.append(content_node) + self.transform_content(content_node) self.env.app.emit('object-description-transform', - self.domain, self.objtype, contentnode) - DocFieldTransformer(self).transform_all(contentnode) + self.domain, self.objtype, content_node) + DocFieldTransformer(self).transform_all(content_node) self.env.temp_data['object'] = None self.after_content() diff --git a/sphinx/directives/code.py b/sphinx/directives/code.py index da6c3c9..5dc42e5 100644 --- a/sphinx/directives/code.py +++ b/sphinx/directives/code.py @@ -7,7 +7,6 @@ from typing import TYPE_CHECKING, Any, ClassVar from docutils import nodes from docutils.parsers.rst import directives -from docutils.statemachine import StringList from sphinx import addnodes from sphinx.directives import optional_int @@ -75,15 +74,13 @@ def container_wrapper( ) -> nodes.container: container_node = nodes.container('', literal_block=True, classes=['literal-block-wrapper']) - parsed = nodes.Element() - directive.state.nested_parse(StringList([caption], source=''), - directive.content_offset, parsed) - if isinstance(parsed[0], nodes.system_message): - msg = __('Invalid caption: %s' % parsed[0].astext()) + parsed = directive.parse_text_to_nodes(caption, offset=directive.content_offset) + node = parsed[0] + if isinstance(node, nodes.system_message): + msg = __('Invalid caption: %s') % node.astext() raise ValueError(msg) - if isinstance(parsed[0], nodes.Element): - caption_node = nodes.caption(parsed[0].rawsource, '', - *parsed[0].children) + if isinstance(node, nodes.Element): + caption_node = nodes.caption(node.rawsource, '', *node.children) caption_node.source = literal_node.source caption_node.line = literal_node.line container_node += caption_node @@ -124,8 +121,8 @@ class CodeBlock(SphinxDirective): nlines = len(self.content) hl_lines = parselinenos(linespec, nlines) if any(i >= nlines for i in hl_lines): - logger.warning(__('line number spec is out of range(1-%d): %r') % - (nlines, self.options['emphasize-lines']), + logger.warning(__('line number spec is out of range(1-%d): %r'), + nlines, self.options['emphasize-lines'], location=location) hl_lines = [x + 1 for x in hl_lines if x < nlines] @@ -274,8 +271,8 @@ class LiteralIncludeReader: if linespec: linelist = parselinenos(linespec, len(lines)) if any(i >= len(lines) for i in linelist): - logger.warning(__('line number spec is out of range(1-%d): %r') % - (len(lines), linespec), location=location) + logger.warning(__('line number spec is out of range(1-%d): %r'), + len(lines), linespec, location=location) if 'lineno-match' in self.options: # make sure the line list is not "disjoint". @@ -450,8 +447,8 @@ class LiteralInclude(SphinxDirective): if 'emphasize-lines' in self.options: hl_lines = parselinenos(self.options['emphasize-lines'], lines) if any(i >= lines for i in hl_lines): - logger.warning(__('line number spec is out of range(1-%d): %r') % - (lines, self.options['emphasize-lines']), + logger.warning(__('line number spec is out of range(1-%d): %r'), + lines, self.options['emphasize-lines'], location=location) extra_args['hl_lines'] = [x + 1 for x in hl_lines if x < lines] extra_args['linenostart'] = reader.lineno_start diff --git a/sphinx/directives/other.py b/sphinx/directives/other.py index 286db29..d7184d7 100644 --- a/sphinx/directives/other.py +++ b/sphinx/directives/other.py @@ -53,6 +53,7 @@ class TocTree(SphinxDirective): option_spec = { 'maxdepth': int, 'name': directives.unchanged, + 'class': directives.class_option, 'caption': directives.unchanged_required, 'glob': directives.flag, 'hidden': directives.flag, @@ -78,7 +79,9 @@ class TocTree(SphinxDirective): subnode['numbered'] = self.options.get('numbered', 0) subnode['titlesonly'] = 'titlesonly' in self.options self.set_source_info(subnode) - wrappernode = nodes.compound(classes=['toctree-wrapper']) + wrappernode = nodes.compound( + classes=['toctree-wrapper', *self.options.get('class', ())], + ) wrappernode.append(subnode) self.add_name(wrappernode) @@ -198,7 +201,7 @@ class Author(SphinxDirective): else: text = _('Author: ') emph += nodes.Text(text) - inodes, messages = self.state.inline_text(self.arguments[0], self.lineno) + inodes, messages = self.parse_inline(self.arguments[0]) emph.extend(inodes) ret: list[Node] = [para] @@ -247,7 +250,7 @@ class Centered(SphinxDirective): if not self.arguments: return [] subnode: Element = addnodes.centered() - inodes, messages = self.state.inline_text(self.arguments[0], self.lineno) + inodes, messages = self.parse_inline(self.arguments[0]) subnode.extend(inodes) ret: list[Node] = [subnode] @@ -267,15 +270,12 @@ class Acks(SphinxDirective): option_spec: ClassVar[OptionSpec] = {} def run(self) -> list[Node]: - node = addnodes.acks() - node.document = self.state.document - self.state.nested_parse(self.content, self.content_offset, node) - if len(node.children) != 1 or not isinstance(node.children[0], - nodes.bullet_list): + children = self.parse_content_to_nodes() + if len(children) != 1 or not isinstance(children[0], nodes.bullet_list): logger.warning(__('.. acks content is not a list'), location=(self.env.docname, self.lineno)) return [] - return [node] + return [addnodes.acks('', *children)] class HList(SphinxDirective): @@ -293,15 +293,12 @@ class HList(SphinxDirective): def run(self) -> list[Node]: ncolumns = self.options.get('columns', 2) - node = nodes.paragraph() - node.document = self.state.document - self.state.nested_parse(self.content, self.content_offset, node) - if len(node.children) != 1 or not isinstance(node.children[0], - nodes.bullet_list): + children = self.parse_content_to_nodes() + if len(children) != 1 or not isinstance(children[0], nodes.bullet_list): logger.warning(__('.. hlist content is not a list'), location=(self.env.docname, self.lineno)) return [] - fulllist = node.children[0] + fulllist = children[0] # create a hlist node where the items are distributed npercol, nmore = divmod(len(fulllist), ncolumns) index = 0 diff --git a/sphinx/directives/patches.py b/sphinx/directives/patches.py index 145f1f5..3dff211 100644 --- a/sphinx/directives/patches.py +++ b/sphinx/directives/patches.py @@ -176,12 +176,38 @@ class MathDirective(SphinxDirective): ret.insert(0, target) +class Rubric(SphinxDirective): + """A patch of the docutils' :rst:dir:`rubric` directive, + which adds a level option to specify the heading level of the rubric. + """ + + required_arguments = 1 + optional_arguments = 0 + final_argument_whitespace = True + option_spec = { + 'class': directives.class_option, + 'name': directives.unchanged, + 'heading-level': lambda c: directives.choice(c, ('1', '2', '3', '4', '5', '6')), + } + + def run(self) -> list[nodes.rubric | nodes.system_message]: + set_classes(self.options) + rubric_text = self.arguments[0] + textnodes, messages = self.parse_inline(rubric_text, lineno=self.lineno) + if 'heading-level' in self.options: + self.options['heading-level'] = int(self.options['heading-level']) + rubric = nodes.rubric(rubric_text, '', *textnodes, **self.options) + self.add_name(rubric) + return [rubric, *messages] + + def setup(app: Sphinx) -> ExtensionMetadata: directives.register_directive('figure', Figure) directives.register_directive('meta', Meta) directives.register_directive('csv-table', CSVTable) directives.register_directive('code', Code) directives.register_directive('math', MathDirective) + directives.register_directive('rubric', Rubric) return { 'version': 'builtin', diff --git a/sphinx/domains/__init__.py b/sphinx/domains/__init__.py index 6c2dc7b..5435942 100644 --- a/sphinx/domains/__init__.py +++ b/sphinx/domains/__init__.py @@ -198,7 +198,7 @@ class Domain: #: data value for a fresh environment initial_data: dict = {} #: data value - data: dict + data: dict[str, Any] #: data version, bump this when the format of `self.data` changes data_version = 0 diff --git a/sphinx/domains/c/__init__.py b/sphinx/domains/c/__init__.py index 903fa4c..f369824 100644 --- a/sphinx/domains/c/__init__.py +++ b/sphinx/domains/c/__init__.py @@ -543,7 +543,7 @@ class AliasTransform(SphinxTransform): signode.clear() signode += addnodes.desc_name(sig, sig) - logger.warning("Could not find C declaration for alias '%s'." % name, + logger.warning("Could not find C declaration for alias '%s'.", name, location=node) node.replace_self(signode) continue @@ -557,7 +557,7 @@ class AliasTransform(SphinxTransform): signode += addnodes.desc_name(sig, sig) logger.warning( - "Can not render C declaration for alias '%s'. No such declaration." % name, + "Can not render C declaration for alias '%s'. No such declaration.", name, location=node) node.replace_self(signode) continue @@ -835,9 +835,9 @@ class CDomain(Domain): def setup(app: Sphinx) -> ExtensionMetadata: app.add_domain(CDomain) - app.add_config_value("c_id_attributes", [], 'env') - app.add_config_value("c_paren_attributes", [], 'env') - app.add_config_value("c_extra_keywords", _macroKeywords, 'env') + app.add_config_value("c_id_attributes", [], 'env', types={list, tuple}) + app.add_config_value("c_paren_attributes", [], 'env', types={list, tuple}) + app.add_config_value("c_extra_keywords", _macroKeywords, 'env', types={set, list}) app.add_config_value("c_maximum_signature_line_length", None, 'env', types={int, None}) app.add_post_transform(AliasTransform) diff --git a/sphinx/domains/c/_ast.py b/sphinx/domains/c/_ast.py index 3a8e2a2..6082a56 100644 --- a/sphinx/domains/c/_ast.py +++ b/sphinx/domains/c/_ast.py @@ -1,5 +1,7 @@ from __future__ import annotations +import sys +import warnings from typing import TYPE_CHECKING, Any, Union, cast from docutils import nodes @@ -38,39 +40,40 @@ class ASTBase(ASTBaseBase): ################################################################################ class ASTIdentifier(ASTBaseBase): - def __init__(self, identifier: str) -> None: - assert identifier is not None - assert len(identifier) != 0 - self.identifier = identifier + def __init__(self, name: str) -> None: + if not isinstance(name, str) or len(name) == 0: + raise AssertionError + self.name = sys.intern(name) + self.is_anonymous = name[0] == '@' # ASTBaseBase already implements this method, # but specialising it here improves performance def __eq__(self, other: object) -> bool: - if type(other) is not ASTIdentifier: + if not isinstance(other, ASTIdentifier): return NotImplemented - return self.identifier == other.identifier + return self.name == other.name def is_anon(self) -> bool: - return self.identifier[0] == '@' + return self.is_anonymous # and this is where we finally make a difference between __str__ and the display string def __str__(self) -> str: - return self.identifier + return self.name def get_display_string(self) -> str: - return "[anonymous]" if self.is_anon() else self.identifier + return "[anonymous]" if self.is_anonymous else self.name def describe_signature(self, signode: TextElement, mode: str, env: BuildEnvironment, prefix: str, symbol: Symbol) -> None: # note: slightly different signature of describe_signature due to the prefix verify_description_mode(mode) - if self.is_anon(): + if self.is_anonymous: node = addnodes.desc_sig_name(text="[anonymous]") else: - node = addnodes.desc_sig_name(self.identifier, self.identifier) + node = addnodes.desc_sig_name(self.name, self.name) if mode == 'markType': - targetText = prefix + self.identifier + targetText = prefix + self.name pnode = addnodes.pending_xref('', refdomain='c', reftype='identifier', reftarget=targetText, modname=None, @@ -87,6 +90,14 @@ class ASTIdentifier(ASTBaseBase): else: raise Exception('Unknown description mode: %s' % mode) + @property + def identifier(self) -> str: + warnings.warn( + '`ASTIdentifier.identifier` is deprecated, use `ASTIdentifier.name` instead', + DeprecationWarning, stacklevel=2, + ) + return self.name + class ASTNestedName(ASTBase): def __init__(self, names: list[ASTIdentifier], rooted: bool) -> None: @@ -94,6 +105,14 @@ class ASTNestedName(ASTBase): self.names = names self.rooted = rooted + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTNestedName): + return NotImplemented + return self.names == other.names and self.rooted == other.rooted + + def __hash__(self) -> int: + return hash((self.names, self.rooted)) + @property def name(self) -> ASTNestedName: return self @@ -186,6 +205,14 @@ class ASTBooleanLiteral(ASTLiteral): def __init__(self, value: bool) -> None: self.value = value + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTBooleanLiteral): + return NotImplemented + return self.value == other.value + + def __hash__(self) -> int: + return hash(self.value) + def _stringify(self, transform: StringifyTransform) -> str: if self.value: return 'true' @@ -202,6 +229,14 @@ class ASTNumberLiteral(ASTLiteral): def __init__(self, data: str) -> None: self.data = data + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTNumberLiteral): + return NotImplemented + return self.data == other.data + + def __hash__(self) -> int: + return hash(self.data) + def _stringify(self, transform: StringifyTransform) -> str: return self.data @@ -221,6 +256,17 @@ class ASTCharLiteral(ASTLiteral): else: raise UnsupportedMultiCharacterCharLiteral(decoded) + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTCharLiteral): + return NotImplemented + return ( + self.prefix == other.prefix + and self.value == other.value + ) + + def __hash__(self) -> int: + return hash((self.prefix, self.value)) + def _stringify(self, transform: StringifyTransform) -> str: if self.prefix is None: return "'" + self.data + "'" @@ -237,6 +283,14 @@ class ASTStringLiteral(ASTLiteral): def __init__(self, data: str) -> None: self.data = data + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTStringLiteral): + return NotImplemented + return self.data == other.data + + def __hash__(self) -> int: + return hash(self.data) + def _stringify(self, transform: StringifyTransform) -> str: return self.data @@ -251,6 +305,14 @@ class ASTIdExpression(ASTExpression): # note: this class is basically to cast a nested name as an expression self.name = name + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTIdExpression): + return NotImplemented + return self.name == other.name + + def __hash__(self) -> int: + return hash(self.name) + def _stringify(self, transform: StringifyTransform) -> str: return transform(self.name) @@ -266,6 +328,14 @@ class ASTParenExpr(ASTExpression): def __init__(self, expr: ASTExpression) -> None: self.expr = expr + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTParenExpr): + return NotImplemented + return self.expr == other.expr + + def __hash__(self) -> int: + return hash(self.expr) + def _stringify(self, transform: StringifyTransform) -> str: return '(' + transform(self.expr) + ')' @@ -290,6 +360,14 @@ class ASTPostfixCallExpr(ASTPostfixOp): def __init__(self, lst: ASTParenExprList | ASTBracedInitList) -> None: self.lst = lst + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTPostfixCallExpr): + return NotImplemented + return self.lst == other.lst + + def __hash__(self) -> int: + return hash(self.lst) + def _stringify(self, transform: StringifyTransform) -> str: return transform(self.lst) @@ -302,6 +380,14 @@ class ASTPostfixArray(ASTPostfixOp): def __init__(self, expr: ASTExpression) -> None: self.expr = expr + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTPostfixArray): + return NotImplemented + return self.expr == other.expr + + def __hash__(self) -> int: + return hash(self.expr) + def _stringify(self, transform: StringifyTransform) -> str: return '[' + transform(self.expr) + ']' @@ -334,6 +420,14 @@ class ASTPostfixMemberOfPointer(ASTPostfixOp): def __init__(self, name: ASTNestedName) -> None: self.name = name + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTPostfixMemberOfPointer): + return NotImplemented + return self.name == other.name + + def __hash__(self) -> int: + return hash(self.name) + def _stringify(self, transform: StringifyTransform) -> str: return '->' + transform(self.name) @@ -348,6 +442,14 @@ class ASTPostfixExpr(ASTExpression): self.prefix = prefix self.postFixes = postFixes + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTPostfixExpr): + return NotImplemented + return self.prefix == other.prefix and self.postFixes == other.postFixes + + def __hash__(self) -> int: + return hash((self.prefix, self.postFixes)) + def _stringify(self, transform: StringifyTransform) -> str: return ''.join([transform(self.prefix), *(transform(p) for p in self.postFixes)]) @@ -366,6 +468,14 @@ class ASTUnaryOpExpr(ASTExpression): self.op = op self.expr = expr + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTUnaryOpExpr): + return NotImplemented + return self.op == other.op and self.expr == other.expr + + def __hash__(self) -> int: + return hash((self.op, self.expr)) + def _stringify(self, transform: StringifyTransform) -> str: if self.op[0] in 'cn': return self.op + " " + transform(self.expr) @@ -386,6 +496,14 @@ class ASTSizeofType(ASTExpression): def __init__(self, typ: ASTType) -> None: self.typ = typ + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTSizeofType): + return NotImplemented + return self.typ == other.typ + + def __hash__(self) -> int: + return hash(self.typ) + def _stringify(self, transform: StringifyTransform) -> str: return "sizeof(" + transform(self.typ) + ")" @@ -401,6 +519,14 @@ class ASTSizeofExpr(ASTExpression): def __init__(self, expr: ASTExpression) -> None: self.expr = expr + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTSizeofExpr): + return NotImplemented + return self.expr == other.expr + + def __hash__(self) -> int: + return hash(self.expr) + def _stringify(self, transform: StringifyTransform) -> str: return "sizeof " + transform(self.expr) @@ -415,6 +541,14 @@ class ASTAlignofExpr(ASTExpression): def __init__(self, typ: ASTType) -> None: self.typ = typ + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTAlignofExpr): + return NotImplemented + return self.typ == other.typ + + def __hash__(self) -> int: + return hash(self.typ) + def _stringify(self, transform: StringifyTransform) -> str: return "alignof(" + transform(self.typ) + ")" @@ -434,6 +568,17 @@ class ASTCastExpr(ASTExpression): self.typ = typ self.expr = expr + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTCastExpr): + return NotImplemented + return ( + self.typ == other.typ + and self.expr == other.expr + ) + + def __hash__(self) -> int: + return hash((self.typ, self.expr)) + def _stringify(self, transform: StringifyTransform) -> str: res = ['('] res.append(transform(self.typ)) @@ -456,6 +601,17 @@ class ASTBinOpExpr(ASTBase): self.exprs = exprs self.ops = ops + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTBinOpExpr): + return NotImplemented + return ( + self.exprs == other.exprs + and self.ops == other.ops + ) + + def __hash__(self) -> int: + return hash((self.exprs, self.ops)) + def _stringify(self, transform: StringifyTransform) -> str: res = [] res.append(transform(self.exprs[0])) @@ -487,6 +643,17 @@ class ASTAssignmentExpr(ASTExpression): self.exprs = exprs self.ops = ops + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTAssignmentExpr): + return NotImplemented + return ( + self.exprs == other.exprs + and self.ops == other.ops + ) + + def __hash__(self) -> int: + return hash((self.exprs, self.ops)) + def _stringify(self, transform: StringifyTransform) -> str: res = [] res.append(transform(self.exprs[0])) @@ -515,6 +682,14 @@ class ASTFallbackExpr(ASTExpression): def __init__(self, expr: str) -> None: self.expr = expr + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTFallbackExpr): + return NotImplemented + return self.expr == other.expr + + def __hash__(self) -> int: + return hash(self.expr) + def _stringify(self, transform: StringifyTransform) -> str: return self.expr @@ -539,6 +714,14 @@ class ASTTrailingTypeSpecFundamental(ASTTrailingTypeSpec): assert len(names) != 0 self.names = names + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTTrailingTypeSpecFundamental): + return NotImplemented + return self.names == other.names + + def __hash__(self) -> int: + return hash(self.names) + def _stringify(self, transform: StringifyTransform) -> str: return ' '.join(self.names) @@ -558,6 +741,17 @@ class ASTTrailingTypeSpecName(ASTTrailingTypeSpec): self.prefix = prefix self.nestedName = nestedName + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTTrailingTypeSpecName): + return NotImplemented + return ( + self.prefix == other.prefix + and self.nestedName == other.nestedName + ) + + def __hash__(self) -> int: + return hash((self.prefix, self.nestedName)) + @property def name(self) -> ASTNestedName: return self.nestedName @@ -583,6 +777,14 @@ class ASTFunctionParameter(ASTBase): self.arg = arg self.ellipsis = ellipsis + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTFunctionParameter): + return NotImplemented + return self.arg == other.arg and self.ellipsis == other.ellipsis + + def __hash__(self) -> int: + return hash((self.arg, self.ellipsis)) + def get_id(self, version: int, objectType: str, symbol: Symbol) -> str: # the anchor will be our parent return symbol.parent.declaration.get_id(version, prefixed=False) @@ -607,6 +809,14 @@ class ASTParameters(ASTBase): self.args = args self.attrs = attrs + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTParameters): + return NotImplemented + return self.args == other.args and self.attrs == other.attrs + + def __hash__(self) -> int: + return hash((self.args, self.attrs)) + @property def function_params(self) -> list[ASTFunctionParameter]: return self.args @@ -674,6 +884,30 @@ class ASTDeclSpecsSimple(ASTBaseBase): self.const = const self.attrs = attrs + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTDeclSpecsSimple): + return NotImplemented + return ( + self.storage == other.storage + and self.threadLocal == other.threadLocal + and self.inline == other.inline + and self.restrict == other.restrict + and self.volatile == other.volatile + and self.const == other.const + and self.attrs == other.attrs + ) + + def __hash__(self) -> int: + return hash(( + self.storage, + self.threadLocal, + self.inline, + self.restrict, + self.volatile, + self.const, + self.attrs, + )) + def mergeWith(self, other: ASTDeclSpecsSimple) -> ASTDeclSpecsSimple: if not other: return self @@ -741,6 +975,24 @@ class ASTDeclSpecs(ASTBase): self.allSpecs = self.leftSpecs.mergeWith(self.rightSpecs) self.trailingTypeSpec = trailing + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTDeclSpecs): + return NotImplemented + return ( + self.outer == other.outer + and self.leftSpecs == other.leftSpecs + and self.rightSpecs == other.rightSpecs + and self.trailingTypeSpec == other.trailingTypeSpec + ) + + def __hash__(self) -> int: + return hash(( + self.outer, + self.leftSpecs, + self.rightSpecs, + self.trailingTypeSpec, + )) + def _stringify(self, transform: StringifyTransform) -> str: res: list[str] = [] l = transform(self.leftSpecs) @@ -796,6 +1048,28 @@ class ASTArray(ASTBase): if size is not None: assert not vla + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTArray): + return NotImplemented + return ( + self.static == other.static + and self.const == other.const + and self.volatile == other.volatile + and self.restrict == other.restrict + and self.vla == other.vla + and self.size == other.size + ) + + def __hash__(self) -> int: + return hash(( + self.static, + self.const, + self.volatile, + self.restrict, + self.vla, + self.size, + )) + def _stringify(self, transform: StringifyTransform) -> str: el = [] if self.static: @@ -861,6 +1135,18 @@ class ASTDeclaratorNameParam(ASTDeclarator): self.arrayOps = arrayOps self.param = param + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTDeclaratorNameParam): + return NotImplemented + return ( + self.declId == other.declId + and self.arrayOps == other.arrayOps + and self.param == other.param + ) + + def __hash__(self) -> int: + return hash((self.declId, self.arrayOps, self.param)) + @property def name(self) -> ASTNestedName: return self.declId @@ -899,6 +1185,14 @@ class ASTDeclaratorNameBitField(ASTDeclarator): self.declId = declId self.size = size + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTDeclaratorNameBitField): + return NotImplemented + return self.declId == other.declId and self.size == other.size + + def __hash__(self) -> int: + return hash((self.declId, self.size)) + @property def name(self) -> ASTNestedName: return self.declId @@ -937,6 +1231,20 @@ class ASTDeclaratorPtr(ASTDeclarator): self.const = const self.attrs = attrs + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTDeclaratorPtr): + return NotImplemented + return ( + self.next == other.next + and self.restrict == other.restrict + and self.volatile == other.volatile + and self.const == other.const + and self.attrs == other.attrs + ) + + def __hash__(self) -> int: + return hash((self.next, self.restrict, self.volatile, self.const, self.attrs)) + @property def name(self) -> ASTNestedName: return self.next.name @@ -1006,6 +1314,14 @@ class ASTDeclaratorParen(ASTDeclarator): self.next = next # TODO: we assume the name and params are in inner + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTDeclaratorParen): + return NotImplemented + return self.inner == other.inner and self.next == other.next + + def __hash__(self) -> int: + return hash((self.inner, self.next)) + @property def name(self) -> ASTNestedName: return self.inner.name @@ -1040,6 +1356,14 @@ class ASTParenExprList(ASTBaseParenExprList): def __init__(self, exprs: list[ASTExpression]) -> None: self.exprs = exprs + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTParenExprList): + return NotImplemented + return self.exprs == other.exprs + + def __hash__(self) -> int: + return hash(self.exprs) + def _stringify(self, transform: StringifyTransform) -> str: exprs = [transform(e) for e in self.exprs] return '(%s)' % ', '.join(exprs) @@ -1064,6 +1388,14 @@ class ASTBracedInitList(ASTBase): self.exprs = exprs self.trailingComma = trailingComma + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTBracedInitList): + return NotImplemented + return self.exprs == other.exprs and self.trailingComma == other.trailingComma + + def __hash__(self) -> int: + return hash((self.exprs, self.trailingComma)) + def _stringify(self, transform: StringifyTransform) -> str: exprs = ', '.join(transform(e) for e in self.exprs) trailingComma = ',' if self.trailingComma else '' @@ -1092,6 +1424,14 @@ class ASTInitializer(ASTBase): self.value = value self.hasAssign = hasAssign + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTInitializer): + return NotImplemented + return self.value == other.value and self.hasAssign == other.hasAssign + + def __hash__(self) -> int: + return hash((self.value, self.hasAssign)) + def _stringify(self, transform: StringifyTransform) -> str: val = transform(self.value) if self.hasAssign: @@ -1116,6 +1456,14 @@ class ASTType(ASTBase): self.declSpecs = declSpecs self.decl = decl + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTType): + return NotImplemented + return self.declSpecs == other.declSpecs and self.decl == other.decl + + def __hash__(self) -> int: + return hash((self.declSpecs, self.decl)) + @property def name(self) -> ASTNestedName: return self.decl.name @@ -1161,6 +1509,14 @@ class ASTTypeWithInit(ASTBase): self.type = type self.init = init + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTTypeWithInit): + return NotImplemented + return self.type == other.type and self.init == other.init + + def __hash__(self) -> int: + return hash((self.type, self.init)) + @property def name(self) -> ASTNestedName: return self.type.name @@ -1190,6 +1546,18 @@ class ASTMacroParameter(ASTBase): self.ellipsis = ellipsis self.variadic = variadic + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTMacroParameter): + return NotImplemented + return ( + self.arg == other.arg + and self.ellipsis == other.ellipsis + and self.variadic == other.variadic + ) + + def __hash__(self) -> int: + return hash((self.arg, self.ellipsis, self.variadic)) + def _stringify(self, transform: StringifyTransform) -> str: if self.ellipsis: return '...' @@ -1215,6 +1583,14 @@ class ASTMacro(ASTBase): self.ident = ident self.args = args + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTMacro): + return NotImplemented + return self.ident == other.ident and self.args == other.args + + def __hash__(self) -> int: + return hash((self.ident, self.args)) + @property def name(self) -> ASTNestedName: return self.ident @@ -1254,6 +1630,14 @@ class ASTStruct(ASTBase): def __init__(self, name: ASTNestedName) -> None: self.name = name + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTStruct): + return NotImplemented + return self.name == other.name + + def __hash__(self) -> int: + return hash(self.name) + def get_id(self, version: int, objectType: str, symbol: Symbol) -> str: return symbol.get_full_nested_name().get_id(version) @@ -1270,6 +1654,14 @@ class ASTUnion(ASTBase): def __init__(self, name: ASTNestedName) -> None: self.name = name + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTUnion): + return NotImplemented + return self.name == other.name + + def __hash__(self) -> int: + return hash(self.name) + def get_id(self, version: int, objectType: str, symbol: Symbol) -> str: return symbol.get_full_nested_name().get_id(version) @@ -1286,6 +1678,14 @@ class ASTEnum(ASTBase): def __init__(self, name: ASTNestedName) -> None: self.name = name + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTEnum): + return NotImplemented + return self.name == other.name + + def __hash__(self) -> int: + return hash(self.name) + def get_id(self, version: int, objectType: str, symbol: Symbol) -> str: return symbol.get_full_nested_name().get_id(version) @@ -1305,6 +1705,18 @@ class ASTEnumerator(ASTBase): self.init = init self.attrs = attrs + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTEnumerator): + return NotImplemented + return ( + self.name == other.name + and self.init == other.init + and self.attrs == other.attrs + ) + + def __hash__(self) -> int: + return hash((self.name, self.init, self.attrs)) + def get_id(self, version: int, objectType: str, symbol: Symbol) -> str: return symbol.get_full_nested_name().get_id(version) @@ -1346,6 +1758,18 @@ class ASTDeclaration(ASTBaseBase): # further changes will be made to this object self._newest_id_cache: str | None = None + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTDeclaration): + return NotImplemented + return ( + self.objectType == other.objectType + and self.directiveType == other.directiveType + and self.declaration == other.declaration + and self.semicolon == other.semicolon + and self.symbol == other.symbol + and self.enumeratorScopedSymbol == other.enumeratorScopedSymbol + ) + def clone(self) -> ASTDeclaration: return ASTDeclaration(self.objectType, self.directiveType, self.declaration.clone(), self.semicolon) diff --git a/sphinx/domains/c/_symbol.py b/sphinx/domains/c/_symbol.py index 5205204..c70b513 100644 --- a/sphinx/domains/c/_symbol.py +++ b/sphinx/domains/c/_symbol.py @@ -1,6 +1,6 @@ from __future__ import annotations -from typing import TYPE_CHECKING, Any, Callable +from typing import TYPE_CHECKING, Any from sphinx.domains.c._ast import ( ASTDeclaration, @@ -11,7 +11,7 @@ from sphinx.locale import __ from sphinx.util import logging if TYPE_CHECKING: - from collections.abc import Iterator + from collections.abc import Callable, Iterable, Iterator, Sequence from typing_extensions import Self @@ -32,7 +32,7 @@ class _DuplicateSymbolError(Exception): class SymbolLookupResult: - def __init__(self, symbols: Iterator[Symbol], parentSymbol: Symbol, + def __init__(self, symbols: Sequence[Symbol], parentSymbol: Symbol, ident: ASTIdentifier) -> None: self.symbols = symbols self.parentSymbol = parentSymbol @@ -102,18 +102,44 @@ class Symbol: self.isRedeclaration = False self._assert_invariants() - # Remember to modify Symbol.remove if modifications to the parent change. - self._children: list[Symbol] = [] - self._anonChildren: list[Symbol] = [] - # note: _children includes _anonChildren + # These properties store the same children for different access patterns. + # ``_add_child()`` and ``_remove_child()`` should be used for modifying them. + self._children_by_name: dict[str, Symbol] = {} + self._children_by_docname: dict[str, dict[str, Symbol]] = {} + self._anon_children: set[Symbol] = set() + if self.parent: - self.parent._children.append(self) + self.parent._add_child(self) if self.declaration: self.declaration.symbol = self # Do symbol addition after self._children has been initialised. self._add_function_params() + def __repr__(self) -> str: + return f'<Symbol {self.to_string(indent=0)!r}>' + + @property + def _children(self) -> Iterable[Symbol]: + return self._children_by_name.values() + + def _add_child(self, child: Symbol) -> None: + name = child.ident.name + if name in self._children_by_name: + # Duplicate so don't add - will be reported in _add_symbols() + return + self._children_by_name[name] = child + self._children_by_docname.setdefault(child.docname, {})[name] = child + if child.ident.is_anonymous: + self._anon_children.add(child) + + def _remove_child(self, child: Symbol) -> None: + name = child.ident.name + self._children_by_name.pop(name, None) + self._children_by_docname.get(child.docname, {}).pop(name, None) + if child.ident.is_anonymous: + self._anon_children.discard(child) + def _fill_empty(self, declaration: ASTDeclaration, docname: str, line: int) -> None: self._assert_invariants() assert self.declaration is None @@ -154,25 +180,28 @@ class Symbol: Symbol.debug_indent -= 1 def remove(self) -> None: - if self.parent is None: - return - assert self in self.parent._children - self.parent._children.remove(self) - self.parent = None + if self.parent: + self.parent._remove_child(self) + self.parent = None def clear_doc(self, docname: str) -> None: - for sChild in self._children: - sChild.clear_doc(docname) - if sChild.declaration and sChild.docname == docname: - sChild.declaration = None - sChild.docname = None - sChild.line = None - if sChild.siblingAbove is not None: - sChild.siblingAbove.siblingBelow = sChild.siblingBelow - if sChild.siblingBelow is not None: - sChild.siblingBelow.siblingAbove = sChild.siblingAbove - sChild.siblingAbove = None - sChild.siblingBelow = None + if docname not in self._children_by_docname: + for child in self._children: + child.clear_doc(docname) + return + + children: dict[str, Symbol] = self._children_by_docname.pop(docname) + for child in children.values(): + child.declaration = None + child.docname = None + child.line = None + if child.siblingAbove is not None: + child.siblingAbove.siblingBelow = child.siblingBelow + if child.siblingBelow is not None: + child.siblingBelow.siblingAbove = child.siblingAbove + child.siblingAbove = None + child.siblingBelow = None + self._remove_child(child) def get_all_symbols(self) -> Iterator[Symbol]: yield self @@ -183,14 +212,6 @@ class Symbol: def children(self) -> Iterator[Symbol]: yield from self._children - @property - def children_recurse_anon(self) -> Iterator[Symbol]: - for c in self._children: - yield c - if not c.ident.is_anon(): - continue - yield from c.children_recurse_anon - def get_lookup_key(self) -> LookupKey: # The pickle files for the environment and for each document are distinct. # The environment has all the symbols, but the documents has xrefs that @@ -221,68 +242,6 @@ class Symbol: names = [s.ident for s in symbols] return ASTNestedName(names, rooted=False) - def _find_first_named_symbol(self, ident: ASTIdentifier, - matchSelf: bool, recurseInAnon: bool) -> Symbol | None: - # TODO: further simplification from C++ to C - if Symbol.debug_lookup: - Symbol.debug_print("_find_first_named_symbol ->") - res = self._find_named_symbols(ident, matchSelf, recurseInAnon, - searchInSiblings=False) - try: - return next(res) - except StopIteration: - return None - - def _find_named_symbols(self, ident: ASTIdentifier, - matchSelf: bool, recurseInAnon: bool, - searchInSiblings: bool) -> Iterator[Symbol]: - # TODO: further simplification from C++ to C - if Symbol.debug_lookup: - Symbol.debug_indent += 1 - Symbol.debug_print("_find_named_symbols:") - Symbol.debug_indent += 1 - Symbol.debug_print("self:") - logger.debug(self.to_string(Symbol.debug_indent + 1, addEndNewline=False)) - Symbol.debug_print("ident: ", ident) - Symbol.debug_print("matchSelf: ", matchSelf) - Symbol.debug_print("recurseInAnon: ", recurseInAnon) - Symbol.debug_print("searchInSiblings: ", searchInSiblings) - - def candidates() -> Iterator[Symbol]: - s = self - if Symbol.debug_lookup: - Symbol.debug_print("searching in self:") - logger.debug(s.to_string(Symbol.debug_indent + 1, addEndNewline=False)) - while True: - if matchSelf: - yield s - if recurseInAnon: - yield from s.children_recurse_anon - else: - yield from s._children - - if s.siblingAbove is None: - break - s = s.siblingAbove - if Symbol.debug_lookup: - Symbol.debug_print("searching in sibling:") - logger.debug(s.to_string(Symbol.debug_indent + 1, addEndNewline=False)) - - for s in candidates(): - if Symbol.debug_lookup: - Symbol.debug_print("candidate:") - logger.debug(s.to_string(Symbol.debug_indent + 1, addEndNewline=False)) - if s.ident == ident: - if Symbol.debug_lookup: - Symbol.debug_indent += 1 - Symbol.debug_print("matches") - Symbol.debug_indent -= 3 - yield s - if Symbol.debug_lookup: - Symbol.debug_indent += 2 - if Symbol.debug_lookup: - Symbol.debug_indent -= 2 - def _symbol_lookup( self, nestedName: ASTNestedName, @@ -311,16 +270,14 @@ class Symbol: # find the right starting point for lookup parentSymbol = self if nestedName.rooted: - while parentSymbol.parent: + while parentSymbol.parent is not None: parentSymbol = parentSymbol.parent + if ancestorLookupType is not None: # walk up until we find the first identifier firstName = names[0] while parentSymbol.parent: - if parentSymbol.find_identifier(firstName, - matchSelf=matchSelf, - recurseInAnon=recurseInAnon, - searchInSiblings=searchInSiblings): + if firstName.name in parentSymbol._children_by_name: break parentSymbol = parentSymbol.parent @@ -330,18 +287,15 @@ class Symbol: # and now the actual lookup for ident in names[:-1]: - symbol = parentSymbol._find_first_named_symbol( - ident, matchSelf=matchSelf, recurseInAnon=recurseInAnon) - if symbol is None: + name = ident.name + if name in parentSymbol._children_by_name: + symbol = parentSymbol._children_by_name[name] + else: symbol = onMissingQualifiedSymbol(parentSymbol, ident) if symbol is None: if Symbol.debug_lookup: Symbol.debug_indent -= 2 return None - # We have now matched part of a nested name, and need to match more - # so even if we should matchSelf before, we definitely shouldn't - # even more. (see also issue #2666) - matchSelf = False parentSymbol = symbol if Symbol.debug_lookup: @@ -350,15 +304,19 @@ class Symbol: # handle the last name ident = names[-1] + name = ident.name + symbol = parentSymbol._children_by_name.get(name) + if not symbol and recurseInAnon: + for child in parentSymbol._anon_children: + if name in child._children_by_name: + symbol = child._children_by_name[name] + break - symbols = parentSymbol._find_named_symbols( - ident, matchSelf=matchSelf, - recurseInAnon=recurseInAnon, - searchInSiblings=searchInSiblings) if Symbol.debug_lookup: - symbols = list(symbols) # type: ignore[assignment] Symbol.debug_indent -= 2 - return SymbolLookupResult(symbols, parentSymbol, ident) + + result = [symbol] if symbol else [] + return SymbolLookupResult(result, parentSymbol, ident) def _add_symbols( self, @@ -532,17 +490,17 @@ class Symbol: if Symbol.debug_lookup: Symbol.debug_indent += 1 Symbol.debug_print("merge_with:") + assert other is not None for otherChild in other._children: - ourChild = self._find_first_named_symbol( - ident=otherChild.ident, matchSelf=False, - recurseInAnon=False) - if ourChild is None: + otherName = otherChild.ident.name + if otherName not in self._children_by_name: # TODO: hmm, should we prune by docnames? - self._children.append(otherChild) otherChild.parent = self + self._add_child(otherChild) otherChild._assert_invariants() continue + ourChild = self._children_by_name[otherName] if otherChild.declaration and otherChild.docname in docnames: if not ourChild.declaration: ourChild._fill_empty(otherChild.declaration, @@ -560,6 +518,7 @@ class Symbol: # just ignore it, right? pass ourChild.merge_with(otherChild, docnames, env) + if Symbol.debug_lookup: Symbol.debug_indent -= 1 @@ -608,10 +567,13 @@ class Symbol: Symbol.debug_indent -= 2 if matchSelf and current.ident == ident: return current - children = current.children_recurse_anon if recurseInAnon else current._children - for s in children: - if s.ident == ident: - return s + name = ident.name + if name in current._children_by_name: + return current._children_by_name[name] + if recurseInAnon: + for child in current._anon_children: + if name in child._children_by_name: + return child._children_by_name[name] if not searchInSiblings: break current = current.siblingAbove @@ -623,24 +585,17 @@ class Symbol: Symbol.debug_print("direct_lookup:") Symbol.debug_indent += 1 s = self - for name, id_ in key.data: - res = None - for cand in s._children: - if cand.ident == name: - res = cand - break - s = res + for ident, id_ in key.data: + s = s._children_by_name.get(ident.name) if Symbol.debug_lookup: - Symbol.debug_print("name: ", name) + Symbol.debug_print("name: ", ident.name) Symbol.debug_print("id: ", id_) if s is not None: logger.debug(s.to_string(Symbol.debug_indent + 1, addEndNewline=False)) else: Symbol.debug_print("not found") if s is None: - if Symbol.debug_lookup: - Symbol.debug_indent -= 2 - return None + break if Symbol.debug_lookup: Symbol.debug_indent -= 2 return s @@ -680,7 +635,7 @@ class Symbol: res.append('::') else: if self.ident: - res.append(str(self.ident)) + res.append(self.ident.name) else: res.append(str(self.declaration)) if self.declaration: diff --git a/sphinx/domains/changeset.py b/sphinx/domains/changeset.py index 5ffabcf..cc1d4a3 100644 --- a/sphinx/domains/changeset.py +++ b/sphinx/domains/changeset.py @@ -62,15 +62,14 @@ class VersionChange(SphinxDirective): node['version'] = self.arguments[0] text = versionlabels[self.name] % self.arguments[0] if len(self.arguments) == 2: - inodes, messages = self.state.inline_text(self.arguments[1], - self.lineno + 1) + inodes, messages = self.parse_inline(self.arguments[1], lineno=self.lineno + 1) para = nodes.paragraph(self.arguments[1], '', *inodes, translatable=False) self.set_source_info(para) node.append(para) else: messages = [] if self.content: - self.state.nested_parse(self.content, self.content_offset, node) + node += self.parse_content_to_nodes() classes = ['versionmodified', versionlabel_classes[self.name]] if len(node) > 0 and isinstance(node[0], nodes.paragraph): # the contents start with a paragraph @@ -111,7 +110,7 @@ class ChangeSetDomain(Domain): name = 'changeset' label = 'changeset' - initial_data: dict[str, Any] = { + initial_data: dict[str, dict[str, list[ChangeSet]]] = { 'changes': {}, # version -> list of ChangeSet } diff --git a/sphinx/domains/cpp/__init__.py b/sphinx/domains/cpp/__init__.py index 9e1f075..e35300d 100644 --- a/sphinx/domains/cpp/__init__.py +++ b/sphinx/domains/cpp/__init__.py @@ -705,7 +705,7 @@ class AliasTransform(SphinxTransform): signode.clear() signode += addnodes.desc_name(sig, sig) - logger.warning("Can not find C++ declaration for alias '%s'." % ast, + logger.warning("Can not find C++ declaration for alias '%s'.", ast, location=node) node.replace_self(signode) else: @@ -763,10 +763,9 @@ class CPPAliasObject(ObjectDescription): for sig in signatures: node.append(AliasNode(sig, aliasOptions, env=self.env)) - contentnode = addnodes.desc_content() - node.append(contentnode) self.before_content() - self.state.nested_parse(self.content, self.content_offset, contentnode) + content_node = addnodes.desc_content('', *self.parse_content_to_nodes()) + node.append(content_node) self.env.temp_data['object'] = None self.after_content() return [node] @@ -1158,8 +1157,8 @@ class CPPDomain(Domain): def setup(app: Sphinx) -> ExtensionMetadata: app.add_domain(CPPDomain) app.add_config_value("cpp_index_common_prefix", [], 'env') - app.add_config_value("cpp_id_attributes", [], 'env') - app.add_config_value("cpp_paren_attributes", [], 'env') + app.add_config_value("cpp_id_attributes", [], 'env', types={list, tuple}) + app.add_config_value("cpp_paren_attributes", [], 'env', types={list, tuple}) app.add_config_value("cpp_maximum_signature_line_length", None, 'env', types={int, None}) app.add_post_transform(AliasTransform) diff --git a/sphinx/domains/cpp/_ast.py b/sphinx/domains/cpp/_ast.py index ad57695..141d511 100644 --- a/sphinx/domains/cpp/_ast.py +++ b/sphinx/domains/cpp/_ast.py @@ -1,6 +1,8 @@ from __future__ import annotations -from typing import TYPE_CHECKING, Any +import sys +import warnings +from typing import TYPE_CHECKING, Any, ClassVar, Literal from docutils import nodes @@ -44,60 +46,64 @@ class ASTBase(ASTBaseBase): ################################################################################ class ASTIdentifier(ASTBase): - def __init__(self, identifier: str) -> None: - assert identifier is not None - assert len(identifier) != 0 - self.identifier = identifier + def __init__(self, name: str) -> None: + if not isinstance(name, str) or len(name) == 0: + raise AssertionError + self.name = sys.intern(name) + self.is_anonymous = name[0] == '@' # ASTBaseBase already implements this method, # but specialising it here improves performance def __eq__(self, other: object) -> bool: - if type(other) is not ASTIdentifier: + if not isinstance(other, ASTIdentifier): return NotImplemented - return self.identifier == other.identifier + return self.name == other.name + + def __hash__(self) -> int: + return hash(self.name) def _stringify(self, transform: StringifyTransform) -> str: - return transform(self.identifier) + return transform(self.name) def is_anon(self) -> bool: - return self.identifier[0] == '@' + return self.is_anonymous def get_id(self, version: int) -> str: - if self.is_anon() and version < 3: + if self.is_anonymous and version < 3: raise NoOldIdError if version == 1: - if self.identifier == 'size_t': + if self.name == 'size_t': return 's' else: - return self.identifier - if self.identifier == "std": + return self.name + if self.name == "std": return 'St' - elif self.identifier[0] == "~": + elif self.name[0] == "~": # a destructor, just use an arbitrary version of dtors return 'D0' else: - if self.is_anon(): - return 'Ut%d_%s' % (len(self.identifier) - 1, self.identifier[1:]) + if self.is_anonymous: + return 'Ut%d_%s' % (len(self.name) - 1, self.name[1:]) else: - return str(len(self.identifier)) + self.identifier + return str(len(self.name)) + self.name # and this is where we finally make a difference between __str__ and the display string def __str__(self) -> str: - return self.identifier + return self.name def get_display_string(self) -> str: - return "[anonymous]" if self.is_anon() else self.identifier + return "[anonymous]" if self.is_anonymous else self.name def describe_signature(self, signode: TextElement, mode: str, env: BuildEnvironment, prefix: str, templateArgs: str, symbol: Symbol) -> None: verify_description_mode(mode) - if self.is_anon(): + if self.is_anonymous: node = addnodes.desc_sig_name(text="[anonymous]") else: - node = addnodes.desc_sig_name(self.identifier, self.identifier) + node = addnodes.desc_sig_name(self.name, self.name) if mode == 'markType': - targetText = prefix + self.identifier + templateArgs + targetText = prefix + self.name + templateArgs pnode = addnodes.pending_xref('', refdomain='cpp', reftype='identifier', reftarget=targetText, modname=None, @@ -118,8 +124,8 @@ class ASTIdentifier(ASTBase): # the target is 'operator""id' instead of just 'id' assert len(prefix) == 0 assert len(templateArgs) == 0 - assert not self.is_anon() - targetText = 'operator""' + self.identifier + assert not self.is_anonymous + targetText = 'operator""' + self.name pnode = addnodes.pending_xref('', refdomain='cpp', reftype='identifier', reftarget=targetText, modname=None, @@ -130,6 +136,14 @@ class ASTIdentifier(ASTBase): else: raise Exception('Unknown description mode: %s' % mode) + @property + def identifier(self) -> str: + warnings.warn( + '`ASTIdentifier.identifier` is deprecated, use `ASTIdentifier.name` instead', + DeprecationWarning, stacklevel=2, + ) + return self.name + class ASTNestedNameElement(ASTBase): def __init__(self, identOrOp: ASTIdentifier | ASTOperator, @@ -137,6 +151,14 @@ class ASTNestedNameElement(ASTBase): self.identOrOp = identOrOp self.templateArgs = templateArgs + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTNestedNameElement): + return NotImplemented + return self.identOrOp == other.identOrOp and self.templateArgs == other.templateArgs + + def __hash__(self) -> int: + return hash((self.identOrOp, self.templateArgs)) + def is_operator(self) -> bool: return False @@ -169,6 +191,18 @@ class ASTNestedName(ASTBase): assert len(self.names) == len(self.templates) self.rooted = rooted + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTNestedName): + return NotImplemented + return ( + self.names == other.names + and self.templates == other.templates + and self.rooted == other.rooted + ) + + def __hash__(self) -> int: + return hash((self.names, self.templates, self.rooted)) + @property def name(self) -> ASTNestedName: return self @@ -316,6 +350,12 @@ class ASTLiteral(ASTExpression): class ASTPointerLiteral(ASTLiteral): + def __eq__(self, other: object) -> bool: + return isinstance(other, ASTPointerLiteral) + + def __hash__(self) -> int: + return hash('nullptr') + def _stringify(self, transform: StringifyTransform) -> str: return 'nullptr' @@ -331,6 +371,14 @@ class ASTBooleanLiteral(ASTLiteral): def __init__(self, value: bool) -> None: self.value = value + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTBooleanLiteral): + return NotImplemented + return self.value == other.value + + def __hash__(self) -> int: + return hash(self.value) + def _stringify(self, transform: StringifyTransform) -> str: if self.value: return 'true' @@ -352,6 +400,14 @@ class ASTNumberLiteral(ASTLiteral): def __init__(self, data: str) -> None: self.data = data + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTNumberLiteral): + return NotImplemented + return self.data == other.data + + def __hash__(self) -> int: + return hash(self.data) + def _stringify(self, transform: StringifyTransform) -> str: return self.data @@ -368,6 +424,14 @@ class ASTStringLiteral(ASTLiteral): def __init__(self, data: str) -> None: self.data = data + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTStringLiteral): + return NotImplemented + return self.data == other.data + + def __hash__(self) -> int: + return hash(self.data) + def _stringify(self, transform: StringifyTransform) -> str: return self.data @@ -392,6 +456,17 @@ class ASTCharLiteral(ASTLiteral): else: raise UnsupportedMultiCharacterCharLiteral(decoded) + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTCharLiteral): + return NotImplemented + return ( + self.prefix == other.prefix + and self.value == other.value + ) + + def __hash__(self) -> int: + return hash((self.prefix, self.value)) + def _stringify(self, transform: StringifyTransform) -> str: if self.prefix is None: return "'" + self.data + "'" @@ -415,6 +490,14 @@ class ASTUserDefinedLiteral(ASTLiteral): self.literal = literal self.ident = ident + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTUserDefinedLiteral): + return NotImplemented + return self.literal == other.literal and self.ident == other.ident + + def __hash__(self) -> int: + return hash((self.literal, self.ident)) + def _stringify(self, transform: StringifyTransform) -> str: return transform(self.literal) + transform(self.ident) @@ -431,6 +514,12 @@ class ASTUserDefinedLiteral(ASTLiteral): ################################################################################ class ASTThisLiteral(ASTExpression): + def __eq__(self, other: object) -> bool: + return isinstance(other, ASTThisLiteral) + + def __hash__(self) -> int: + return hash("this") + def _stringify(self, transform: StringifyTransform) -> str: return "this" @@ -450,6 +539,18 @@ class ASTFoldExpr(ASTExpression): self.op = op self.rightExpr = rightExpr + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTFoldExpr): + return NotImplemented + return ( + self.leftExpr == other.leftExpr + and self.op == other.op + and self.rightExpr == other.rightExpr + ) + + def __hash__(self) -> int: + return hash((self.leftExpr, self.op, self.rightExpr)) + def _stringify(self, transform: StringifyTransform) -> str: res = ['('] if self.leftExpr: @@ -508,6 +609,14 @@ class ASTParenExpr(ASTExpression): def __init__(self, expr: ASTExpression) -> None: self.expr = expr + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTParenExpr): + return NotImplemented + return self.expr == other.expr + + def __hash__(self) -> int: + return hash(self.expr) + def _stringify(self, transform: StringifyTransform) -> str: return '(' + transform(self.expr) + ')' @@ -526,6 +635,14 @@ class ASTIdExpression(ASTExpression): # note: this class is basically to cast a nested name as an expression self.name = name + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTIdExpression): + return NotImplemented + return self.name == other.name + + def __hash__(self) -> int: + return hash(self.name) + def _stringify(self, transform: StringifyTransform) -> str: return transform(self.name) @@ -553,6 +670,14 @@ class ASTPostfixArray(ASTPostfixOp): def __init__(self, expr: ASTExpression) -> None: self.expr = expr + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTPostfixArray): + return NotImplemented + return self.expr == other.expr + + def __hash__(self) -> int: + return hash(self.expr) + def _stringify(self, transform: StringifyTransform) -> str: return '[' + transform(self.expr) + ']' @@ -570,6 +695,14 @@ class ASTPostfixMember(ASTPostfixOp): def __init__(self, name: ASTNestedName) -> None: self.name = name + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTPostfixMember): + return NotImplemented + return self.name == other.name + + def __hash__(self) -> int: + return hash(self.name) + def _stringify(self, transform: StringifyTransform) -> str: return '.' + transform(self.name) @@ -586,6 +719,14 @@ class ASTPostfixMemberOfPointer(ASTPostfixOp): def __init__(self, name: ASTNestedName) -> None: self.name = name + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTPostfixMemberOfPointer): + return NotImplemented + return self.name == other.name + + def __hash__(self) -> int: + return hash(self.name) + def _stringify(self, transform: StringifyTransform) -> str: return '->' + transform(self.name) @@ -599,6 +740,12 @@ class ASTPostfixMemberOfPointer(ASTPostfixOp): class ASTPostfixInc(ASTPostfixOp): + def __eq__(self, other: object) -> bool: + return isinstance(other, ASTPostfixInc) + + def __hash__(self) -> int: + return hash('++') + def _stringify(self, transform: StringifyTransform) -> str: return '++' @@ -611,6 +758,12 @@ class ASTPostfixInc(ASTPostfixOp): class ASTPostfixDec(ASTPostfixOp): + def __eq__(self, other: object) -> bool: + return isinstance(other, ASTPostfixDec) + + def __hash__(self) -> int: + return hash('--') + def _stringify(self, transform: StringifyTransform) -> str: return '--' @@ -626,6 +779,14 @@ class ASTPostfixCallExpr(ASTPostfixOp): def __init__(self, lst: ASTParenExprList | ASTBracedInitList) -> None: self.lst = lst + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTPostfixCallExpr): + return NotImplemented + return self.lst == other.lst + + def __hash__(self) -> int: + return hash(self.lst) + def _stringify(self, transform: StringifyTransform) -> str: return transform(self.lst) @@ -647,6 +808,14 @@ class ASTPostfixExpr(ASTExpression): self.prefix = prefix self.postFixes = postFixes + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTPostfixExpr): + return NotImplemented + return self.prefix == other.prefix and self.postFixes == other.postFixes + + def __hash__(self) -> int: + return hash((self.prefix, self.postFixes)) + def _stringify(self, transform: StringifyTransform) -> str: return ''.join([transform(self.prefix), *(transform(p) for p in self.postFixes)]) @@ -670,6 +839,14 @@ class ASTExplicitCast(ASTExpression): self.typ = typ self.expr = expr + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTExplicitCast): + return NotImplemented + return self.cast == other.cast and self.typ == other.typ and self.expr == other.expr + + def __hash__(self) -> int: + return hash((self.cast, self.typ, self.expr)) + def _stringify(self, transform: StringifyTransform) -> str: res = [self.cast] res.append('<') @@ -700,6 +877,14 @@ class ASTTypeId(ASTExpression): self.typeOrExpr = typeOrExpr self.isType = isType + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTTypeId): + return NotImplemented + return self.typeOrExpr == other.typeOrExpr and self.isType == other.isType + + def __hash__(self) -> int: + return hash((self.typeOrExpr, self.isType)) + def _stringify(self, transform: StringifyTransform) -> str: return 'typeid(' + transform(self.typeOrExpr) + ')' @@ -723,6 +908,14 @@ class ASTUnaryOpExpr(ASTExpression): self.op = op self.expr = expr + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTUnaryOpExpr): + return NotImplemented + return self.op == other.op and self.expr == other.expr + + def __hash__(self) -> int: + return hash((self.op, self.expr)) + def _stringify(self, transform: StringifyTransform) -> str: if self.op[0] in 'cn': return self.op + " " + transform(self.expr) @@ -746,6 +939,14 @@ class ASTSizeofParamPack(ASTExpression): def __init__(self, identifier: ASTIdentifier) -> None: self.identifier = identifier + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTSizeofParamPack): + return NotImplemented + return self.identifier == other.identifier + + def __hash__(self) -> int: + return hash(self.identifier) + def _stringify(self, transform: StringifyTransform) -> str: return "sizeof...(" + transform(self.identifier) + ")" @@ -766,6 +967,14 @@ class ASTSizeofType(ASTExpression): def __init__(self, typ: ASTType) -> None: self.typ = typ + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTSizeofType): + return NotImplemented + return self.typ == other.typ + + def __hash__(self) -> int: + return hash(self.typ) + def _stringify(self, transform: StringifyTransform) -> str: return "sizeof(" + transform(self.typ) + ")" @@ -784,6 +993,14 @@ class ASTSizeofExpr(ASTExpression): def __init__(self, expr: ASTExpression) -> None: self.expr = expr + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTSizeofExpr): + return NotImplemented + return self.expr == other.expr + + def __hash__(self) -> int: + return hash(self.expr) + def _stringify(self, transform: StringifyTransform) -> str: return "sizeof " + transform(self.expr) @@ -801,6 +1018,14 @@ class ASTAlignofExpr(ASTExpression): def __init__(self, typ: ASTType) -> None: self.typ = typ + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTAlignofExpr): + return NotImplemented + return self.typ == other.typ + + def __hash__(self) -> int: + return hash(self.typ) + def _stringify(self, transform: StringifyTransform) -> str: return "alignof(" + transform(self.typ) + ")" @@ -819,6 +1044,14 @@ class ASTNoexceptExpr(ASTExpression): def __init__(self, expr: ASTExpression) -> None: self.expr = expr + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTNoexceptExpr): + return NotImplemented + return self.expr == other.expr + + def __hash__(self) -> int: + return hash(self.expr) + def _stringify(self, transform: StringifyTransform) -> str: return 'noexcept(' + transform(self.expr) + ')' @@ -841,6 +1074,19 @@ class ASTNewExpr(ASTExpression): self.typ = typ self.initList = initList + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTNewExpr): + return NotImplemented + return ( + self.rooted == other.rooted + and self.isNewTypeId == other.isNewTypeId + and self.typ == other.typ + and self.initList == other.initList + ) + + def __hash__(self) -> int: + return hash((self.rooted, self.isNewTypeId, self.typ, self.initList)) + def _stringify(self, transform: StringifyTransform) -> str: res = [] if self.rooted: @@ -888,6 +1134,18 @@ class ASTDeleteExpr(ASTExpression): self.array = array self.expr = expr + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTDeleteExpr): + return NotImplemented + return ( + self.rooted == other.rooted + and self.array == other.array + and self.expr == other.expr + ) + + def __hash__(self) -> int: + return hash((self.rooted, self.array, self.expr)) + def _stringify(self, transform: StringifyTransform) -> str: res = [] if self.rooted: @@ -925,6 +1183,17 @@ class ASTCastExpr(ASTExpression): self.typ = typ self.expr = expr + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTCastExpr): + return NotImplemented + return ( + self.typ == other.typ + and self.expr == other.expr + ) + + def __hash__(self) -> int: + return hash((self.typ, self.expr)) + def _stringify(self, transform: StringifyTransform) -> str: res = ['('] res.append(transform(self.typ)) @@ -950,6 +1219,17 @@ class ASTBinOpExpr(ASTExpression): self.exprs = exprs self.ops = ops + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTBinOpExpr): + return NotImplemented + return ( + self.exprs == other.exprs + and self.ops == other.ops + ) + + def __hash__(self) -> int: + return hash((self.exprs, self.ops)) + def _stringify(self, transform: StringifyTransform) -> str: res = [] res.append(transform(self.exprs[0])) @@ -990,6 +1270,18 @@ class ASTConditionalExpr(ASTExpression): self.thenExpr = thenExpr self.elseExpr = elseExpr + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTConditionalExpr): + return NotImplemented + return ( + self.ifExpr == other.ifExpr + and self.thenExpr == other.thenExpr + and self.elseExpr == other.elseExpr + ) + + def __hash__(self) -> int: + return hash((self.ifExpr, self.thenExpr, self.elseExpr)) + def _stringify(self, transform: StringifyTransform) -> str: res = [] res.append(transform(self.ifExpr)) @@ -1027,6 +1319,14 @@ class ASTBracedInitList(ASTBase): self.exprs = exprs self.trailingComma = trailingComma + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTBracedInitList): + return NotImplemented + return self.exprs == other.exprs and self.trailingComma == other.trailingComma + + def __hash__(self) -> int: + return hash((self.exprs, self.trailingComma)) + def get_id(self, version: int) -> str: return "il%sE" % ''.join(e.get_id(version) for e in self.exprs) @@ -1059,6 +1359,18 @@ class ASTAssignmentExpr(ASTExpression): self.op = op self.rightExpr = rightExpr + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTAssignmentExpr): + return NotImplemented + return ( + self.leftExpr == other.leftExpr + and self.op == other.op + and self.rightExpr == other.rightExpr + ) + + def __hash__(self) -> int: + return hash((self.leftExpr, self.op, self.rightExpr)) + def _stringify(self, transform: StringifyTransform) -> str: res = [] res.append(transform(self.leftExpr)) @@ -1093,6 +1405,14 @@ class ASTCommaExpr(ASTExpression): assert len(exprs) > 0 self.exprs = exprs + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTCommaExpr): + return NotImplemented + return self.exprs == other.exprs + + def __hash__(self) -> int: + return hash(self.exprs) + def _stringify(self, transform: StringifyTransform) -> str: return ', '.join(transform(e) for e in self.exprs) @@ -1118,6 +1438,14 @@ class ASTFallbackExpr(ASTExpression): def __init__(self, expr: str) -> None: self.expr = expr + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTFallbackExpr): + return NotImplemented + return self.expr == other.expr + + def __hash__(self) -> int: + return hash(self.expr) + def _stringify(self, transform: StringifyTransform) -> str: return self.expr @@ -1137,11 +1465,16 @@ class ASTFallbackExpr(ASTExpression): ################################################################################ class ASTOperator(ASTBase): + is_anonymous: ClassVar[Literal[False]] = False + def __eq__(self, other: object) -> bool: raise NotImplementedError(repr(self)) + def __hash__(self) -> int: + raise NotImplementedError(repr(self)) + def is_anon(self) -> bool: - return False + return self.is_anonymous def is_operator(self) -> bool: return True @@ -1193,6 +1526,9 @@ class ASTOperatorBuildIn(ASTOperator): return NotImplemented return self.op == other.op + def __hash__(self) -> int: + return hash(self.op) + def get_id(self, version: int) -> str: if version == 1: ids = _id_operator_v1 @@ -1228,6 +1564,9 @@ class ASTOperatorLiteral(ASTOperator): return NotImplemented return self.identifier == other.identifier + def __hash__(self) -> int: + return hash(self.identifier) + def get_id(self, version: int) -> str: if version == 1: raise NoOldIdError @@ -1252,6 +1591,9 @@ class ASTOperatorType(ASTOperator): return NotImplemented return self.type == other.type + def __hash__(self) -> int: + return hash(self.type) + def get_id(self, version: int) -> str: if version == 1: return 'castto-%s-operator' % self.type.get_id(version) @@ -1275,6 +1617,14 @@ class ASTTemplateArgConstant(ASTBase): def __init__(self, value: ASTExpression) -> None: self.value = value + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTTemplateArgConstant): + return NotImplemented + return self.value == other.value + + def __hash__(self) -> int: + return hash(self.value) + def _stringify(self, transform: StringifyTransform) -> str: return transform(self.value) @@ -1298,6 +1648,14 @@ class ASTTemplateArgs(ASTBase): self.args = args self.packExpansion = packExpansion + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTTemplateArgs): + return NotImplemented + return self.args == other.args and self.packExpansion == other.packExpansion + + def __hash__(self) -> int: + return hash((self.args, self.packExpansion)) + def get_id(self, version: int) -> str: if version == 1: res = [] @@ -1361,6 +1719,14 @@ class ASTTrailingTypeSpecFundamental(ASTTrailingTypeSpec): # the canonical name list is for ID lookup self.canonNames = canonNames + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTTrailingTypeSpecFundamental): + return NotImplemented + return self.names == other.names and self.canonNames == other.canonNames + + def __hash__(self) -> int: + return hash((self.names, self.canonNames)) + def _stringify(self, transform: StringifyTransform) -> str: return ' '.join(self.names) @@ -1394,6 +1760,12 @@ class ASTTrailingTypeSpecFundamental(ASTTrailingTypeSpec): class ASTTrailingTypeSpecDecltypeAuto(ASTTrailingTypeSpec): + def __eq__(self, other: object) -> bool: + return isinstance(other, ASTTrailingTypeSpecDecltypeAuto) + + def __hash__(self) -> int: + return hash('decltype(auto)') + def _stringify(self, transform: StringifyTransform) -> str: return 'decltype(auto)' @@ -1414,6 +1786,14 @@ class ASTTrailingTypeSpecDecltype(ASTTrailingTypeSpec): def __init__(self, expr: ASTExpression) -> None: self.expr = expr + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTTrailingTypeSpecDecltype): + return NotImplemented + return self.expr == other.expr + + def __hash__(self) -> int: + return hash(self.expr) + def _stringify(self, transform: StringifyTransform) -> str: return 'decltype(' + transform(self.expr) + ')' @@ -1437,6 +1817,18 @@ class ASTTrailingTypeSpecName(ASTTrailingTypeSpec): self.nestedName = nestedName self.placeholderType = placeholderType + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTTrailingTypeSpecName): + return NotImplemented + return ( + self.prefix == other.prefix + and self.nestedName == other.nestedName + and self.placeholderType == other.placeholderType + ) + + def __hash__(self) -> int: + return hash((self.prefix, self.nestedName, self.placeholderType)) + @property def name(self) -> ASTNestedName: return self.nestedName @@ -1480,6 +1872,14 @@ class ASTFunctionParameter(ASTBase): self.arg = arg self.ellipsis = ellipsis + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTFunctionParameter): + return NotImplemented + return self.arg == other.arg and self.ellipsis == other.ellipsis + + def __hash__(self) -> int: + return hash((self.arg, self.ellipsis)) + def get_id( self, version: int, objectType: str | None = None, symbol: Symbol | None = None, ) -> str: @@ -1512,6 +1912,14 @@ class ASTNoexceptSpec(ASTBase): def __init__(self, expr: ASTExpression | None) -> None: self.expr = expr + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTNoexceptSpec): + return NotImplemented + return self.expr == other.expr + + def __hash__(self) -> int: + return hash(self.expr) + def _stringify(self, transform: StringifyTransform) -> str: if self.expr: return 'noexcept(' + transform(self.expr) + ')' @@ -1543,6 +1951,28 @@ class ASTParametersQualifiers(ASTBase): self.attrs = attrs self.initializer = initializer + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTParametersQualifiers): + return NotImplemented + return ( + self.args == other.args + and self.volatile == other.volatile + and self.const == other.const + and self.refQual == other.refQual + and self.exceptionSpec == other.exceptionSpec + and self.trailingReturn == other.trailingReturn + and self.override == other.override + and self.final == other.final + and self.attrs == other.attrs + and self.initializer == other.initializer + ) + + def __hash__(self) -> int: + return hash(( + self.args, self.volatile, self.const, self.refQual, self.exceptionSpec, + self.trailingReturn, self.override, self.final, self.attrs, self.initializer + )) + @property def function_params(self) -> list[ASTFunctionParameter]: return self.args @@ -1681,6 +2111,14 @@ class ASTExplicitSpec(ASTBase): def __init__(self, expr: ASTExpression | None) -> None: self.expr = expr + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTExplicitSpec): + return NotImplemented + return self.expr == other.expr + + def __hash__(self) -> int: + return hash(self.expr) + def _stringify(self, transform: StringifyTransform) -> str: res = ['explicit'] if self.expr is not None: @@ -1717,6 +2155,40 @@ class ASTDeclSpecsSimple(ASTBase): self.friend = friend self.attrs = attrs + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTDeclSpecsSimple): + return NotImplemented + return ( + self.storage == other.storage + and self.threadLocal == other.threadLocal + and self.inline == other.inline + and self.virtual == other.virtual + and self.explicitSpec == other.explicitSpec + and self.consteval == other.consteval + and self.constexpr == other.constexpr + and self.constinit == other.constinit + and self.volatile == other.volatile + and self.const == other.const + and self.friend == other.friend + and self.attrs == other.attrs + ) + + def __hash__(self) -> int: + return hash(( + self.storage, + self.threadLocal, + self.inline, + self.virtual, + self.explicitSpec, + self.consteval, + self.constexpr, + self.constinit, + self.volatile, + self.const, + self.friend, + self.attrs, + )) + def mergeWith(self, other: ASTDeclSpecsSimple) -> ASTDeclSpecsSimple: if not other: return self @@ -1811,6 +2283,24 @@ class ASTDeclSpecs(ASTBase): self.allSpecs = self.leftSpecs.mergeWith(self.rightSpecs) self.trailingTypeSpec = trailing + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTDeclSpecs): + return NotImplemented + return ( + self.outer == other.outer + and self.leftSpecs == other.leftSpecs + and self.rightSpecs == other.rightSpecs + and self.trailingTypeSpec == other.trailingTypeSpec + ) + + def __hash__(self) -> int: + return hash(( + self.outer, + self.leftSpecs, + self.rightSpecs, + self.trailingTypeSpec, + )) + def get_id(self, version: int) -> str: if version == 1: res = [] @@ -1873,6 +2363,14 @@ class ASTArray(ASTBase): def __init__(self, size: ASTExpression) -> None: self.size = size + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTArray): + return NotImplemented + return self.size == other.size + + def __hash__(self) -> int: + return hash(self.size) + def _stringify(self, transform: StringifyTransform) -> str: if self.size: return '[' + transform(self.size) + ']' @@ -1953,6 +2451,18 @@ class ASTDeclaratorNameParamQual(ASTDeclarator): self.arrayOps = arrayOps self.paramQual = paramQual + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTDeclaratorNameParamQual): + return NotImplemented + return ( + self.declId == other.declId + and self.arrayOps == other.arrayOps + and self.paramQual == other.paramQual + ) + + def __hash__(self) -> int: + return hash((self.declId, self.arrayOps, self.paramQual)) + @property def name(self) -> ASTNestedName: return self.declId @@ -2037,6 +2547,14 @@ class ASTDeclaratorNameBitField(ASTDeclarator): self.declId = declId self.size = size + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTDeclaratorNameBitField): + return NotImplemented + return self.declId == other.declId and self.size == other.size + + def __hash__(self) -> int: + return hash((self.declId, self.size)) + @property def name(self) -> ASTNestedName: return self.declId @@ -2087,6 +2605,19 @@ class ASTDeclaratorPtr(ASTDeclarator): self.const = const self.attrs = attrs + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTDeclaratorPtr): + return NotImplemented + return ( + self.next == other.next + and self.volatile == other.volatile + and self.const == other.const + and self.attrs == other.attrs + ) + + def __hash__(self) -> int: + return hash((self.next, self.volatile, self.const, self.attrs)) + @property def name(self) -> ASTNestedName: return self.next.name @@ -2192,6 +2723,14 @@ class ASTDeclaratorRef(ASTDeclarator): self.next = next self.attrs = attrs + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTDeclaratorRef): + return NotImplemented + return self.next == other.next and self.attrs == other.attrs + + def __hash__(self) -> int: + return hash((self.next, self.attrs)) + @property def name(self) -> ASTNestedName: return self.next.name @@ -2258,6 +2797,14 @@ class ASTDeclaratorParamPack(ASTDeclarator): assert next self.next = next + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTDeclaratorParamPack): + return NotImplemented + return self.next == other.next + + def __hash__(self) -> int: + return hash(self.next) + @property def name(self) -> ASTNestedName: return self.next.name @@ -2326,6 +2873,19 @@ class ASTDeclaratorMemPtr(ASTDeclarator): self.volatile = volatile self.next = next + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTDeclaratorMemPtr): + return NotImplemented + return ( + self.className == other.className + and self.const == other.const + and self.volatile == other.volatile + and self.next == other.next + ) + + def __hash__(self) -> int: + return hash((self.className, self.const, self.volatile, self.next)) + @property def name(self) -> ASTNestedName: return self.next.name @@ -2424,6 +2984,14 @@ class ASTDeclaratorParen(ASTDeclarator): self.next = next # TODO: we assume the name, params, and qualifiers are in inner + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTDeclaratorParen): + return NotImplemented + return self.inner == other.inner and self.next == other.next + + def __hash__(self) -> int: + return hash((self.inner, self.next)) + @property def name(self) -> ASTNestedName: return self.inner.name @@ -2493,6 +3061,14 @@ class ASTPackExpansionExpr(ASTExpression): def __init__(self, expr: ASTExpression | ASTBracedInitList) -> None: self.expr = expr + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTPackExpansionExpr): + return NotImplemented + return self.expr == other.expr + + def __hash__(self) -> int: + return hash(self.expr) + def _stringify(self, transform: StringifyTransform) -> str: return transform(self.expr) + '...' @@ -2510,6 +3086,14 @@ class ASTParenExprList(ASTBaseParenExprList): def __init__(self, exprs: list[ASTExpression | ASTBracedInitList]) -> None: self.exprs = exprs + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTParenExprList): + return NotImplemented + return self.exprs == other.exprs + + def __hash__(self) -> int: + return hash(self.exprs) + def get_id(self, version: int) -> str: return "pi%sE" % ''.join(e.get_id(version) for e in self.exprs) @@ -2538,6 +3122,14 @@ class ASTInitializer(ASTBase): self.value = value self.hasAssign = hasAssign + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTInitializer): + return NotImplemented + return self.value == other.value and self.hasAssign == other.hasAssign + + def __hash__(self) -> int: + return hash((self.value, self.hasAssign)) + def _stringify(self, transform: StringifyTransform) -> str: val = transform(self.value) if self.hasAssign: @@ -2562,6 +3154,14 @@ class ASTType(ASTBase): self.declSpecs = declSpecs self.decl = decl + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTType): + return NotImplemented + return self.declSpecs == other.declSpecs and self.decl == other.decl + + def __hash__(self) -> int: + return hash((self.declSpecs, self.decl)) + @property def name(self) -> ASTNestedName: return self.decl.name @@ -2671,6 +3271,14 @@ class ASTTemplateParamConstrainedTypeWithInit(ASTBase): self.type = type self.init = init + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTTemplateParamConstrainedTypeWithInit): + return NotImplemented + return self.type == other.type and self.init == other.init + + def __hash__(self) -> int: + return hash((self.type, self.init)) + @property def name(self) -> ASTNestedName: return self.type.name @@ -2712,6 +3320,14 @@ class ASTTypeWithInit(ASTBase): self.type = type self.init = init + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTTypeWithInit): + return NotImplemented + return self.type == other.type and self.init == other.init + + def __hash__(self) -> int: + return hash((self.type, self.init)) + @property def name(self) -> ASTNestedName: return self.type.name @@ -2749,6 +3365,14 @@ class ASTTypeUsing(ASTBase): self.name = name self.type = type + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTTypeUsing): + return NotImplemented + return self.name == other.name and self.type == other.type + + def __hash__(self) -> int: + return hash((self.name, self.type)) + def get_id(self, version: int, objectType: str | None = None, symbol: Symbol | None = None) -> str: if version == 1: @@ -2785,6 +3409,14 @@ class ASTConcept(ASTBase): self.nestedName = nestedName self.initializer = initializer + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTConcept): + return NotImplemented + return self.nestedName == other.nestedName and self.initializer == other.initializer + + def __hash__(self) -> int: + return hash((self.nestedName, self.initializer)) + @property def name(self) -> ASTNestedName: return self.nestedName @@ -2816,6 +3448,19 @@ class ASTBaseClass(ASTBase): self.virtual = virtual self.pack = pack + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTBaseClass): + return NotImplemented + return ( + self.name == other.name + and self.visibility == other.visibility + and self.virtual == other.virtual + and self.pack == other.pack + ) + + def __hash__(self) -> int: + return hash((self.name, self.visibility, self.virtual, self.pack)) + def _stringify(self, transform: StringifyTransform) -> str: res = [] if self.visibility is not None: @@ -2851,6 +3496,19 @@ class ASTClass(ASTBase): self.bases = bases self.attrs = attrs + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTClass): + return NotImplemented + return ( + self.name == other.name + and self.final == other.final + and self.bases == other.bases + and self.attrs == other.attrs + ) + + def __hash__(self) -> int: + return hash((self.name, self.final, self.bases, self.attrs)) + def get_id(self, version: int, objectType: str, symbol: Symbol) -> str: return symbol.get_full_nested_name().get_id(version) @@ -2899,6 +3557,14 @@ class ASTUnion(ASTBase): self.name = name self.attrs = attrs + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTUnion): + return NotImplemented + return self.name == other.name and self.attrs == other.attrs + + def __hash__(self) -> int: + return hash((self.name, self.attrs)) + def get_id(self, version: int, objectType: str, symbol: Symbol) -> str: if version == 1: raise NoOldIdError @@ -2929,6 +3595,19 @@ class ASTEnum(ASTBase): self.underlyingType = underlyingType self.attrs = attrs + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTEnum): + return NotImplemented + return ( + self.name == other.name + and self.scoped == other.scoped + and self.underlyingType == other.underlyingType + and self.attrs == other.attrs + ) + + def __hash__(self) -> int: + return hash((self.name, self.scoped, self.underlyingType, self.attrs)) + def get_id(self, version: int, objectType: str, symbol: Symbol) -> str: if version == 1: raise NoOldIdError @@ -2971,6 +3650,18 @@ class ASTEnumerator(ASTBase): self.init = init self.attrs = attrs + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTEnumerator): + return NotImplemented + return ( + self.name == other.name + and self.init == other.init + and self.attrs == other.attrs + ) + + def __hash__(self) -> int: + return hash((self.name, self.init, self.attrs)) + def get_id(self, version: int, objectType: str, symbol: Symbol) -> str: if version == 1: raise NoOldIdError @@ -3035,6 +3726,19 @@ class ASTTemplateKeyParamPackIdDefault(ASTTemplateParam): self.parameterPack = parameterPack self.default = default + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTTemplateKeyParamPackIdDefault): + return NotImplemented + return ( + self.key == other.key + and self.identifier == other.identifier + and self.parameterPack == other.parameterPack + and self.default == other.default + ) + + def __hash__(self) -> int: + return hash((self.key, self.identifier, self.parameterPack, self.default)) + def get_identifier(self) -> ASTIdentifier: return self.identifier @@ -3086,6 +3790,14 @@ class ASTTemplateParamType(ASTTemplateParam): assert data self.data = data + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTTemplateParamType): + return NotImplemented + return self.data == other.data + + def __hash__(self) -> int: + return hash(self.data) + @property def name(self) -> ASTNestedName: id = self.get_identifier() @@ -3125,6 +3837,17 @@ class ASTTemplateParamTemplateType(ASTTemplateParam): self.nestedParams = nestedParams self.data = data + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTTemplateParamTemplateType): + return NotImplemented + return ( + self.nestedParams == other.nestedParams + and self.data == other.data + ) + + def __hash__(self) -> int: + return hash((self.nestedParams, self.data)) + @property def name(self) -> ASTNestedName: id = self.get_identifier() @@ -3166,6 +3889,14 @@ class ASTTemplateParamNonType(ASTTemplateParam): self.param = param self.parameterPack = parameterPack + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTTemplateParamNonType): + return NotImplemented + return ( + self.param == other.param + and self.parameterPack == other.parameterPack + ) + @property def name(self) -> ASTNestedName: id = self.get_identifier() @@ -3221,6 +3952,14 @@ class ASTTemplateParams(ASTBase): self.params = params self.requiresClause = requiresClause + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTTemplateParams): + return NotImplemented + return self.params == other.params and self.requiresClause == other.requiresClause + + def __hash__(self) -> int: + return hash((self.params, self.requiresClause)) + def get_id(self, version: int, excludeRequires: bool = False) -> str: assert version >= 2 res = [] @@ -3295,6 +4034,17 @@ class ASTTemplateIntroductionParameter(ASTBase): self.identifier = identifier self.parameterPack = parameterPack + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTTemplateIntroductionParameter): + return NotImplemented + return ( + self.identifier == other.identifier + and self.parameterPack == other.parameterPack + ) + + def __hash__(self) -> int: + return hash((self.identifier, self.parameterPack)) + @property def name(self) -> ASTNestedName: id = self.get_identifier() @@ -3351,6 +4101,14 @@ class ASTTemplateIntroduction(ASTBase): self.concept = concept self.params = params + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTTemplateIntroduction): + return NotImplemented + return self.concept == other.concept and self.params == other.params + + def __hash__(self) -> int: + return hash((self.concept, self.params)) + def get_id(self, version: int) -> str: assert version >= 2 return ''.join([ @@ -3402,6 +4160,14 @@ class ASTTemplateDeclarationPrefix(ASTBase): # templates is None means it's an explicit instantiation of a variable self.templates = templates + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTTemplateDeclarationPrefix): + return NotImplemented + return self.templates == other.templates + + def __hash__(self) -> int: + return hash(self.templates) + def get_requires_clause_in_last(self) -> ASTRequiresClause | None: if self.templates is None: return None @@ -3436,6 +4202,14 @@ class ASTRequiresClause(ASTBase): def __init__(self, expr: ASTExpression) -> None: self.expr = expr + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTRequiresClause): + return NotImplemented + return self.expr == other.expr + + def __hash__(self) -> int: + return hash(self.expr) + def _stringify(self, transform: StringifyTransform) -> str: return 'requires ' + transform(self.expr) @@ -3472,6 +4246,21 @@ class ASTDeclaration(ASTBase): # further changes will be made to this object self._newest_id_cache: str | None = None + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTDeclaration): + return NotImplemented + return ( + self.objectType == other.objectType + and self.directiveType == other.directiveType + and self.visibility == other.visibility + and self.templatePrefix == other.templatePrefix + and self.declaration == other.declaration + and self.trailingRequiresClause == other.trailingRequiresClause + and self.semicolon == other.semicolon + and self.symbol == other.symbol + and self.enumeratorScopedSymbol == other.enumeratorScopedSymbol + ) + def clone(self) -> ASTDeclaration: templatePrefixClone = self.templatePrefix.clone() if self.templatePrefix else None trailingRequiresClasueClone = self.trailingRequiresClause.clone() \ @@ -3627,6 +4416,14 @@ class ASTNamespace(ASTBase): self.nestedName = nestedName self.templatePrefix = templatePrefix + def __eq__(self, other: object) -> bool: + if not isinstance(other, ASTNamespace): + return NotImplemented + return ( + self.nestedName == other.nestedName + and self.templatePrefix == other.templatePrefix + ) + def _stringify(self, transform: StringifyTransform) -> str: res = [] if self.templatePrefix: diff --git a/sphinx/domains/cpp/_symbol.py b/sphinx/domains/cpp/_symbol.py index 4caa430..14c8f5f 100644 --- a/sphinx/domains/cpp/_symbol.py +++ b/sphinx/domains/cpp/_symbol.py @@ -155,6 +155,9 @@ class Symbol: # Do symbol addition after self._children has been initialised. self._add_template_and_function_params() + def __repr__(self) -> str: + return f'<Symbol {self.to_string(indent=0)!r}>' + def _fill_empty(self, declaration: ASTDeclaration, docname: str, line: int) -> None: self._assert_invariants() assert self.declaration is None diff --git a/sphinx/domains/javascript.py b/sphinx/domains/javascript.py index 9b881f8..540b7a6 100644 --- a/sphinx/domains/javascript.py +++ b/sphinx/domains/javascript.py @@ -17,7 +17,7 @@ from sphinx.roles import XRefRole from sphinx.util import logging from sphinx.util.docfields import Field, GroupedField, TypedField from sphinx.util.docutils import SphinxDirective -from sphinx.util.nodes import make_id, make_refnode, nested_parse_with_titles +from sphinx.util.nodes import make_id, make_refnode if TYPE_CHECKING: from collections.abc import Iterator @@ -309,12 +309,9 @@ class JSModule(SphinxDirective): def run(self) -> list[Node]: mod_name = self.arguments[0].strip() self.env.ref_context['js:module'] = mod_name - no_index = 'no-index' in self.options or 'noindex' in self.options + no_index = 'no-index' in self.options - content_node: Element = nodes.section() - # necessary so that the child nodes get the right source/line set - content_node.document = self.state.document - nested_parse_with_titles(self.state, self.content, content_node, self.content_offset) + content_nodes = self.parse_content_to_nodes(allow_section_headings=True) ret: list[Node] = [] if not no_index: @@ -334,7 +331,7 @@ class JSModule(SphinxDirective): target = nodes.target('', '', ids=[node_id], ismod=True) self.state.document.note_explicit_target(target) ret.append(target) - ret.extend(content_node.children) + ret.extend(content_nodes) return ret diff --git a/sphinx/domains/math.py b/sphinx/domains/math.py index 708a4d5..f136cfd 100644 --- a/sphinx/domains/math.py +++ b/sphinx/domains/math.py @@ -60,8 +60,8 @@ class MathDomain(Domain): def note_equation(self, docname: str, labelid: str, location: Any = None) -> None: if labelid in self.equations: other = self.equations[labelid][0] - logger.warning(__('duplicate label of equation %s, other instance in %s') % - (labelid, other), location=location) + logger.warning(__('duplicate label of equation %s, other instance in %s'), + labelid, other, location=location) self.equations[labelid] = (docname, self.env.new_serialno('eqno') + 1) @@ -106,6 +106,7 @@ class MathDomain(Domain): if docname in env.toc_fignumbers: numbers = env.toc_fignumbers[docname]['displaymath'].get(node_id, ()) eqno = '.'.join(map(str, numbers)) + eqno = env.config.math_numsep.join(eqno.rsplit('.', 1)) else: eqno = '' else: diff --git a/sphinx/domains/python/__init__.py b/sphinx/domains/python/__init__.py index ca3eec0..ad189f4 100644 --- a/sphinx/domains/python/__init__.py +++ b/sphinx/domains/python/__init__.py @@ -22,7 +22,6 @@ from sphinx.util.nodes import ( find_pending_xref_condition, make_id, make_refnode, - nested_parse_with_titles, ) if TYPE_CHECKING: @@ -390,6 +389,45 @@ class PyProperty(PyObject): return _('%s (%s property)') % (attrname, clsname) +class PyTypeAlias(PyObject): + """Description of a type alias.""" + + option_spec: ClassVar[OptionSpec] = PyObject.option_spec.copy() + option_spec.update({ + 'canonical': directives.unchanged, + }) + + def get_signature_prefix(self, sig: str) -> list[nodes.Node]: + return [nodes.Text('type'), addnodes.desc_sig_space()] + + def handle_signature(self, sig: str, signode: desc_signature) -> tuple[str, str]: + fullname, prefix = super().handle_signature(sig, signode) + if canonical := self.options.get('canonical'): + canonical_annotations = _parse_annotation(canonical, self.env) + signode += addnodes.desc_annotation( + canonical, '', + addnodes.desc_sig_space(), + addnodes.desc_sig_punctuation('', '='), + addnodes.desc_sig_space(), + *canonical_annotations, + ) + return fullname, prefix + + def get_index_text(self, modname: str, name_cls: tuple[str, str]) -> str: + name, cls = name_cls + try: + clsname, attrname = name.rsplit('.', 1) + if modname and self.env.config.add_module_names: + clsname = f'{modname}.{clsname}' + except ValueError: + if modname: + return _('%s (in module %s)') % (name, modname) + else: + return name + + return _('%s (type alias in %s)') % (attrname, clsname) + + class PyModule(SphinxDirective): """ Directive to mark description of a new module. @@ -414,13 +452,10 @@ class PyModule(SphinxDirective): domain = cast(PythonDomain, self.env.get_domain('py')) modname = self.arguments[0].strip() - no_index = 'no-index' in self.options or 'noindex' in self.options + no_index = 'no-index' in self.options self.env.ref_context['py:module'] = modname - content_node: Element = nodes.section() - # necessary so that the child nodes get the right source/line set - content_node.document = self.state.document - nested_parse_with_titles(self.state, self.content, content_node, self.content_offset) + content_nodes = self.parse_content_to_nodes(allow_section_headings=True) ret: list[Node] = [] if not no_index: @@ -444,7 +479,7 @@ class PyModule(SphinxDirective): # The node order is: index node first, then target node. ret.append(inode) ret.append(target) - ret.extend(content_node.children) + ret.extend(content_nodes) return ret @@ -594,6 +629,7 @@ class PythonDomain(Domain): 'staticmethod': ObjType(_('static method'), 'meth', 'obj'), 'attribute': ObjType(_('attribute'), 'attr', 'obj'), 'property': ObjType(_('property'), 'attr', '_prop', 'obj'), + 'type': ObjType(_('type alias'), 'type', 'obj'), 'module': ObjType(_('module'), 'mod', 'obj'), } @@ -607,6 +643,7 @@ class PythonDomain(Domain): 'staticmethod': PyStaticMethod, 'attribute': PyAttribute, 'property': PyProperty, + 'type': PyTypeAlias, 'module': PyModule, 'currentmodule': PyCurrentModule, 'decorator': PyDecoratorFunction, @@ -619,6 +656,7 @@ class PythonDomain(Domain): 'class': PyXRefRole(), 'const': PyXRefRole(), 'attr': PyXRefRole(), + 'type': PyXRefRole(), 'meth': PyXRefRole(fix_parens=True), 'mod': PyXRefRole(), 'obj': PyXRefRole(), diff --git a/sphinx/domains/python/_annotations.py b/sphinx/domains/python/_annotations.py index 5d4803c..35525f6 100644 --- a/sphinx/domains/python/_annotations.py +++ b/sphinx/domains/python/_annotations.py @@ -161,7 +161,29 @@ def _parse_annotation(annotation: str, env: BuildEnvironment) -> list[Node]: addnodes.desc_sig_punctuation('', ')')] return result - raise SyntaxError # unsupported syntax + if isinstance(node, ast.Call): + # Call nodes can be used in Annotated type metadata, + # for example Annotated[str, ArbitraryTypeValidator(str, len=10)] + args = [] + for arg in node.args: + args += unparse(arg) + args.append(addnodes.desc_sig_punctuation('', ',')) + args.append(addnodes.desc_sig_space()) + for kwd in node.keywords: + args.append(addnodes.desc_sig_name(kwd.arg, kwd.arg)) # type: ignore[arg-type] + args.append(addnodes.desc_sig_operator('', '=')) + args += unparse(kwd.value) + args.append(addnodes.desc_sig_punctuation('', ',')) + args.append(addnodes.desc_sig_space()) + result = [ + *unparse(node.func), + addnodes.desc_sig_punctuation('', '('), + *args[:-2], # skip the final comma and space + addnodes.desc_sig_punctuation('', ')'), + ] + return result + msg = f'unsupported syntax: {node}' + raise SyntaxError(msg) # unsupported syntax def _unparse_pep_604_annotation(node: ast.Subscript) -> list[Node]: subscript = node.slice diff --git a/sphinx/domains/python/_object.py b/sphinx/domains/python/_object.py index 41f9df1..b9ee24d 100644 --- a/sphinx/domains/python/_object.py +++ b/sphinx/domains/python/_object.py @@ -89,6 +89,10 @@ class PyXrefMixin: return result + _delimiters_re = re.compile( + r'(\s*[\[\]\(\),](?:\s*o[rf]\s)?\s*|\s+o[rf]\s+|\s*\|\s*|\.\.\.)' + ) + def make_xrefs( self, rolename: str, @@ -100,9 +104,7 @@ class PyXrefMixin: inliner: Inliner | None = None, location: Node | None = None, ) -> list[Node]: - delims = r'(\s*[\[\]\(\),](?:\s*o[rf]\s)?\s*|\s+o[rf]\s+|\s*\|\s*|\.\.\.)' - delims_re = re.compile(delims) - sub_targets = re.split(delims, target) + sub_targets = self._delimiters_re.split(target) split_contnode = bool(contnode and contnode.astext() == target) @@ -112,13 +114,13 @@ class PyXrefMixin: if split_contnode: contnode = nodes.Text(sub_target) - if in_literal or delims_re.match(sub_target): + if in_literal or self._delimiters_re.match(sub_target): results.append(contnode or innernode(sub_target, sub_target)) # type: ignore[call-arg] else: results.append(self.make_xref(rolename, domain, sub_target, innernode, contnode, env, inliner, location)) - if sub_target in ('Literal', 'typing.Literal', '~typing.Literal'): + if sub_target in {'Literal', 'typing.Literal', '~typing.Literal'}: in_literal = True return results diff --git a/sphinx/domains/rst.py b/sphinx/domains/rst.py index 5ae267a..99d995d 100644 --- a/sphinx/domains/rst.py +++ b/sphinx/domains/rst.py @@ -244,8 +244,8 @@ class ReSTDomain(Domain): def note_object(self, objtype: str, name: str, node_id: str, location: Any = None) -> None: if (objtype, name) in self.objects: docname, node_id = self.objects[objtype, name] - logger.warning(__('duplicate description of %s %s, other instance in %s') % - (objtype, name, docname), location=location) + logger.warning(__('duplicate description of %s %s, other instance in %s'), + objtype, name, docname, location=location) self.objects[objtype, name] = (self.env.docname, node_id) diff --git a/sphinx/domains/std/__init__.py b/sphinx/domains/std/__init__.py index 30d0977..008367b 100644 --- a/sphinx/domains/std/__init__.py +++ b/sphinx/domains/std/__init__.py @@ -20,6 +20,7 @@ from sphinx.roles import EmphasizedLiteral, XRefRole from sphinx.util import docname_join, logging, ws_re from sphinx.util.docutils import SphinxDirective from sphinx.util.nodes import clean_astext, make_id, make_refnode +from sphinx.util.parsing import nested_parse_to_nodes if TYPE_CHECKING: from collections.abc import Iterable, Iterator @@ -101,6 +102,76 @@ class EnvVarXRefRole(XRefRole): return [indexnode, targetnode, node], [] +class ConfigurationValue(ObjectDescription[str]): + index_template: str = _('%s; configuration value') + option_spec: ClassVar[OptionSpec] = { + 'no-index': directives.flag, + 'no-index-entry': directives.flag, + 'no-contents-entry': directives.flag, + 'no-typesetting': directives.flag, + 'type': directives.unchanged_required, + 'default': directives.unchanged_required, + } + + def handle_signature(self, sig: str, sig_node: desc_signature) -> str: + sig_node.clear() + sig_node += addnodes.desc_name(sig, sig) + name = ws_re.sub(' ', sig) + sig_node['fullname'] = name + return name + + def _object_hierarchy_parts(self, sig_node: desc_signature) -> tuple[str, ...]: + return (sig_node['fullname'],) + + def _toc_entry_name(self, sig_node: desc_signature) -> str: + if not sig_node.get('_toc_parts'): + return '' + name, = sig_node['_toc_parts'] + return name + + def add_target_and_index(self, name: str, sig: str, signode: desc_signature) -> None: + node_id = make_id(self.env, self.state.document, self.objtype, name) + signode['ids'].append(node_id) + self.state.document.note_explicit_target(signode) + index_entry = self.index_template % name + self.indexnode['entries'].append(('pair', index_entry, node_id, '', None)) + self.env.domains['std'].note_object(self.objtype, name, node_id, location=signode) + + def transform_content(self, content_node: addnodes.desc_content) -> None: + """Insert *type* and *default* as a field list.""" + field_list = nodes.field_list() + if 'type' in self.options: + field, msgs = self.format_type(self.options['type']) + field_list.append(field) + field_list += msgs + if 'default' in self.options: + field, msgs = self.format_default(self.options['default']) + field_list.append(field) + field_list += msgs + if len(field_list.children) > 0: + content_node.insert(0, field_list) + + def format_type(self, type_: str) -> tuple[nodes.field, list[system_message]]: + """Formats the ``:type:`` option.""" + parsed, msgs = self.parse_inline(type_, lineno=self.lineno) + field = nodes.field( + '', + nodes.field_name('', _('Type')), + nodes.field_body('', *parsed), + ) + return field, msgs + + def format_default(self, default: str) -> tuple[nodes.field, list[system_message]]: + """Formats the ``:default:`` option.""" + parsed, msgs = self.parse_inline(default, lineno=self.lineno) + field = nodes.field( + '', + nodes.field_name('', _('Default')), + nodes.field_body('', *parsed), + ) + return field, msgs + + class Target(SphinxDirective): """ Generic target for user-defined cross-reference types. @@ -260,13 +331,18 @@ class OptionXRefRole(XRefRole): return title, target -def split_term_classifiers(line: str) -> list[str | None]: +_term_classifiers_re = re.compile(' +: +') + + +def split_term_classifiers(line: str) -> tuple[str, str | None]: # split line into a term and classifiers. if no classifier, None is used.. - parts: list[str | None] = [*re.split(' +: +', line), None] - return parts + parts = _term_classifiers_re.split(line) + term = parts[0] + first_classifier = parts[1] if len(parts) >= 2 else None + return term, first_classifier -def make_glossary_term(env: BuildEnvironment, textnodes: Iterable[Node], index_key: str, +def make_glossary_term(env: BuildEnvironment, textnodes: Iterable[Node], index_key: str | None, source: str, lineno: int, node_id: str | None, document: nodes.document, ) -> nodes.term: # get a text-only representation of the term and register it @@ -382,15 +458,14 @@ class Glossary(SphinxDirective): termnodes: list[Node] = [] system_messages: list[Node] = [] for line, source, lineno in terms: - parts = split_term_classifiers(line) + term_, first_classifier = split_term_classifiers(line) # parse the term with inline markup # classifiers (parts[1:]) will not be shown on doctree - textnodes, sysmsg = self.state.inline_text(parts[0], - lineno) + textnodes, sysmsg = self.parse_inline(term_, lineno=lineno) # use first classifier as a index key term = make_glossary_term(self.env, textnodes, - parts[1], source, lineno, # type: ignore[arg-type] + first_classifier, source, lineno, node_id=None, document=self.state.document) term.rawsource = line system_messages.extend(sysmsg) @@ -398,11 +473,14 @@ class Glossary(SphinxDirective): termnodes.extend(system_messages) - defnode = nodes.definition() if definition: - self.state.nested_parse(definition, definition.items[0][1], - defnode) - termnodes.append(defnode) + offset = definition.items[0][1] + definition_nodes = nested_parse_to_nodes( + self.state, definition, offset=offset, allow_section_headings=False, + ) + else: + definition_nodes = [] + termnodes.append(nodes.definition('', *definition_nodes)) items.append(nodes.definition_list_item('', *termnodes)) dlist = nodes.definition_list('', *items) @@ -519,6 +597,7 @@ class StandardDomain(Domain): 'token': ObjType(_('grammar token'), 'token', searchprio=-1), 'label': ObjType(_('reference label'), 'ref', 'keyword', searchprio=-1), + 'confval': ObjType('configuration value', 'confval'), 'envvar': ObjType(_('environment variable'), 'envvar'), 'cmdoption': ObjType(_('program option'), 'option'), 'doc': ObjType(_('document'), 'doc', searchprio=-1), @@ -528,12 +607,14 @@ class StandardDomain(Domain): 'program': Program, 'cmdoption': Cmdoption, # old name for backwards compatibility 'option': Cmdoption, + 'confval': ConfigurationValue, 'envvar': EnvVar, 'glossary': Glossary, 'productionlist': ProductionList, } roles: dict[str, RoleFunction | XRefRole] = { 'option': OptionXRefRole(warn_dangling=True), + 'confval': XRefRole(warn_dangling=True), 'envvar': EnvVarXRefRole(), # links to tokens in grammar productions 'token': TokenXRefRole(), @@ -921,7 +1002,7 @@ class StandardDomain(Domain): # * :option:`-foo=bar` # * :option:`-foo[=bar]` # * :option:`-foo bar` - for needle in {'=', '[=', ' '}: + for needle in ('=', '[=', ' '): if needle in target: stem, _, _ = target.partition(needle) docname, labelid = self.progoptions.get((progname, stem), ('', '')) @@ -1110,7 +1191,7 @@ def warn_missing_reference(app: Sphinx, domain: Domain, node: pending_xref, else: msg = __('Failed to create a cross reference. A title or caption not found: %r') - logger.warning(msg % target, location=node, type='ref', subtype=node['reftype']) + logger.warning(msg, target, location=node, type='ref', subtype=node['reftype']) return True diff --git a/sphinx/environment/__init__.py b/sphinx/environment/__init__.py index e145c92..deb6af7 100644 --- a/sphinx/environment/__init__.py +++ b/sphinx/environment/__init__.py @@ -28,6 +28,7 @@ if TYPE_CHECKING: from docutils import nodes from docutils.nodes import Node + from docutils.parsers import Parser from sphinx.application import Sphinx from sphinx.builders import Builder @@ -58,7 +59,7 @@ default_settings: dict[str, Any] = { # This is increased every time an environment attribute is added # or changed to properly invalidate pickle files. -ENV_VERSION = 61 +ENV_VERSION = 62 # config status CONFIG_UNSET = -1 @@ -74,7 +75,7 @@ CONFIG_CHANGED_REASON = { } -versioning_conditions: dict[str, bool | Callable] = { +versioning_conditions: dict[str, Literal[False] | Callable[[Node], bool]] = { 'none': False, 'text': is_translatable, } @@ -158,7 +159,7 @@ class BuildEnvironment: self.version: dict[str, int] = app.registry.get_envversion(app) # the method of doctree versioning; see set_versioning_method - self.versioning_condition: bool | Callable | None = None + self.versioning_condition: Literal[False] | Callable[[Node], bool] | None = None self.versioning_compare: bool | None = None # all the registered domains, set by the application @@ -183,11 +184,21 @@ class BuildEnvironment: # docnames to re-read unconditionally on next build self.reread_always: set[str] = set() - # docname -> pickled doctree self._pickled_doctree_cache: dict[str, bytes] = {} + """In-memory cache for reading pickled doctrees from disk. + docname -> pickled doctree + + This cache is used in the ``get_doctree`` method to avoid reading the + doctree from disk multiple times. + """ - # docname -> doctree self._write_doc_doctree_cache: dict[str, nodes.document] = {} + """In-memory cache for unpickling doctrees from disk. + docname -> doctree + + Items are added in ``Builder.write_doctree``, during the read phase, + then used only in the ``get_and_resolve_doctree`` method. + """ # File metadata # docname -> dict of metadata items @@ -222,7 +233,7 @@ class BuildEnvironment: # domain-specific inventories, here to be pickled # domainname -> domain-specific dict - self.domaindata: dict[str, dict] = {} + self.domaindata: dict[str, dict[str, Any]] = {} # these map absolute path -> (docnames, unique filename) self.images: FilenameUniqDict = FilenameUniqDict() @@ -242,7 +253,7 @@ class BuildEnvironment: # search index data # docname -> title - self._search_index_titles: dict[str, str] = {} + self._search_index_titles: dict[str, str | None] = {} # docname -> filename self._search_index_filenames: dict[str, str] = {} # stemmed words -> set(docname) @@ -250,7 +261,7 @@ class BuildEnvironment: # stemmed words in titles -> set(docname) self._search_index_title_mapping: dict[str, set[str]] = {} # docname -> all titles in document - self._search_index_all_titles: dict[str, list[tuple[str, str]]] = {} + self._search_index_all_titles: dict[str, list[tuple[str, str | None]]] = {} # docname -> list(index entry) self._search_index_index_entries: dict[str, list[tuple[str, str, str]]] = {} # objtype -> index @@ -261,16 +272,18 @@ class BuildEnvironment: # set up environment self.setup(app) - def __getstate__(self) -> dict: + def __getstate__(self) -> dict[str, Any]: """Obtains serializable data for pickling.""" __dict__ = self.__dict__.copy() - __dict__.update(app=None, domains={}, events=None) # clear unpickable attributes - # ensure that upon restoring the state, the most recent pickled files + # clear unpickable attributes + __dict__.update(app=None, domains={}, events=None) + # clear in-memory doctree caches, to reduce memory consumption and + # ensure that, upon restoring the state, the most recent pickled files # on the disk are used instead of those from a possibly outdated state - __dict__.update(_pickled_doctree_cache={}) + __dict__.update(_pickled_doctree_cache={}, _write_doc_doctree_cache={}) return __dict__ - def __setstate__(self, state: dict) -> None: + def __setstate__(self, state: dict[str, Any]) -> None: self.__dict__.update(state) def setup(self, app: Sphinx) -> None: @@ -340,7 +353,9 @@ class BuildEnvironment: # Allow to disable by 3rd party extension (workaround) self.settings.setdefault('smart_quotes', True) - def set_versioning_method(self, method: str | Callable, compare: bool) -> None: + def set_versioning_method( + self, method: str | Callable[[Node], bool], compare: bool + ) -> None: """Set the doctree versioning method for this environment. Versioning methods are a builder property; only builders with the same @@ -348,7 +363,7 @@ class BuildEnvironment: raise an exception if the user tries to use an environment with an incompatible versioning method. """ - condition: bool | Callable + condition: Literal[False] | Callable[[Node], bool] if callable(method): condition = method else: @@ -356,7 +371,7 @@ class BuildEnvironment: raise ValueError('invalid versioning method: %r' % method) condition = versioning_conditions[method] - if self.versioning_condition not in (None, condition): + if self.versioning_condition not in {None, condition}: raise SphinxError(__('This environment is incompatible with the ' 'selected builder, please choose another ' 'doctree directory.')) @@ -549,6 +564,11 @@ class BuildEnvironment: """Returns the docname of the document currently being parsed.""" return self.temp_data['docname'] + @property + def parser(self) -> Parser: + """Returns the parser being used for to parse the current document.""" + return self.temp_data['_parser'] + def new_serialno(self, category: str = '') -> int: """Return a serial number, e.g. for index entry targets. diff --git a/sphinx/environment/adapters/indexentries.py b/sphinx/environment/adapters/indexentries.py index a12e131..4009e9e 100644 --- a/sphinx/environment/adapters/indexentries.py +++ b/sphinx/environment/adapters/indexentries.py @@ -5,7 +5,7 @@ from __future__ import annotations import re import unicodedata from itertools import groupby -from typing import TYPE_CHECKING, Any, Literal +from typing import TYPE_CHECKING from sphinx.errors import NoUri from sphinx.locale import _, __ @@ -13,9 +13,42 @@ from sphinx.util import logging from sphinx.util.index_entries import _split_into if TYPE_CHECKING: + from typing import Literal, Optional, Union + + from typing_extensions import TypeAlias + from sphinx.builders import Builder from sphinx.environment import BuildEnvironment + _IndexEntryTarget: TypeAlias = tuple[Optional[str], Union[str, Literal[False]]] + _IndexEntryTargets: TypeAlias = list[_IndexEntryTarget] + _IndexEntryCategoryKey: TypeAlias = Optional[str] + _IndexEntrySubItems: TypeAlias = dict[ + str, + tuple[_IndexEntryTargets, _IndexEntryCategoryKey], + ] + _IndexEntry: TypeAlias = tuple[ + _IndexEntryTargets, + _IndexEntrySubItems, + _IndexEntryCategoryKey, + ] + _IndexEntryMap = dict[str, _IndexEntry] + _Index: TypeAlias = list[ + tuple[ + str, + list[ + tuple[ + str, + tuple[ + _IndexEntryTargets, + list[tuple[str, _IndexEntryTargets]], + _IndexEntryCategoryKey + ] + ] + ] + ] + ] + logger = logging.getLogger(__name__) @@ -24,11 +57,14 @@ class IndexEntries: self.env = env self.builder: Builder - def create_index(self, builder: Builder, group_entries: bool = True, - _fixre: re.Pattern = re.compile(r'(.*) ([(][^()]*[)])'), - ) -> list[tuple[str, list[tuple[str, Any]]]]: + def create_index( + self, + builder: Builder, + group_entries: bool = True, + _fixre: re.Pattern[str] = re.compile(r'(.*) ([(][^()]*[)])'), + ) -> _Index: """Create the real index from the collected index entries.""" - new: dict[str, list] = {} + new: _IndexEntryMap = {} rel_uri: str | Literal[False] index_domain = self.env.domains['index'] @@ -80,10 +116,10 @@ class IndexEntries: for (targets, sub_items, _category_key) in new.values(): targets.sort(key=_key_func_0) - for (sub_targets, _0, _sub_category_key) in sub_items.values(): + for (sub_targets, _sub_category_key) in sub_items.values(): sub_targets.sort(key=_key_func_0) - new_list = sorted(new.items(), key=_key_func_1) + new_list: list[tuple[str, _IndexEntry]] = sorted(new.items(), key=_key_func_1) if group_entries: # fixup entries: transform @@ -94,7 +130,7 @@ class IndexEntries: # (in module foo) # (in module bar) old_key = '' - old_sub_items: dict[str, list] = {} + old_sub_items: _IndexEntrySubItems = {} i = 0 while i < len(new_list): key, (targets, sub_items, category_key) = new_list[i] @@ -106,7 +142,7 @@ class IndexEntries: # prefixes match: add entry as subitem of the # previous entry old_sub_items.setdefault( - m.group(2), [[], {}, category_key])[0].extend(targets) + m.group(2), ([], category_key))[0].extend(targets) del new_list[i] continue old_key = m.group(1) @@ -115,26 +151,41 @@ class IndexEntries: old_sub_items = sub_items i += 1 - return [(key_, list(group)) - for (key_, group) in groupby(new_list, _key_func_3)] + grouped = [] + for (group_key, group) in groupby(new_list, _group_by_func): + group_list = [] + for group_entry in group: + entry_key, (targets, sub_items, category_key) = group_entry + pairs = [ + (sub_key, sub_targets) + for (sub_key, (sub_targets, _sub_category_key)) + in sub_items.items() + ] + pairs.sort(key=_key_func_2) + group_list.append((entry_key, (targets, pairs, category_key))) + grouped.append((group_key, group_list)) + return grouped def _add_entry(word: str, subword: str, main: str | None, *, - dic: dict[str, list], link: str | Literal[False], key: str | None) -> None: - entry = dic.setdefault(word, [[], {}, key]) + dic: _IndexEntryMap, + link: str | Literal[False], key: _IndexEntryCategoryKey) -> None: + entry = dic.setdefault(word, ([], {}, key)) if subword: - entry = entry[1].setdefault(subword, [[], {}, key]) + targets = entry[1].setdefault(subword, ([], key))[0] + else: + targets = entry[0] if link: - entry[0].append((main, link)) + targets.append((main, link)) -def _key_func_0(entry: tuple[str, str]) -> tuple[bool, str]: +def _key_func_0(entry: _IndexEntryTarget) -> tuple[bool, str | Literal[False]]: """Sort the index entries for same keyword.""" main, uri = entry return not main, uri # show main entries at first -def _key_func_1(entry: tuple[str, list]) -> tuple[tuple[int, str], str]: +def _key_func_1(entry: tuple[str, _IndexEntry]) -> tuple[tuple[int, str], str]: """Sort the index entries""" key, (_targets, _sub_items, category_key) = entry if category_key: @@ -155,7 +206,7 @@ def _key_func_1(entry: tuple[str, list]) -> tuple[tuple[int, str], str]: return (group, lc_key), entry[0] -def _key_func_2(entry: tuple[str, list]) -> str: +def _key_func_2(entry: tuple[str, _IndexEntryTargets]) -> str: """Sort the sub-index entries""" key = unicodedata.normalize('NFD', entry[0].lower()) if key.startswith('\N{RIGHT-TO-LEFT MARK}'): @@ -165,13 +216,9 @@ def _key_func_2(entry: tuple[str, list]) -> str: return key -def _key_func_3(entry: tuple[str, list]) -> str: - """Group the entries by letter""" +def _group_by_func(entry: tuple[str, _IndexEntry]) -> str: + """Group the entries by letter or category key.""" key, (targets, sub_items, category_key) = entry - # hack: mutating the sub_items dicts to a list in the key_func - entry[1][1] = sorted(((sub_key, sub_targets) - for (sub_key, (sub_targets, _0, _sub_category_key)) - in sub_items.items()), key=_key_func_2) if category_key is not None: return category_key diff --git a/sphinx/environment/adapters/toctree.py b/sphinx/environment/adapters/toctree.py index cfe717f..42c0bb4 100644 --- a/sphinx/environment/adapters/toctree.py +++ b/sphinx/environment/adapters/toctree.py @@ -316,7 +316,7 @@ def _toctree_entry( # empty toc means: no titles will show up in the toctree logger.warning(__('toctree contains reference to document %r that ' "doesn't have a title: no link will be generated"), - ref, location=toctreenode) + ref, location=toctreenode, type='toc', subtype='no_title') except KeyError: # this is raised if the included file does not exist ref_path = env.doc2path(ref, False) diff --git a/sphinx/environment/collectors/__init__.py b/sphinx/environment/collectors/__init__.py index c12dd50..52b5a60 100644 --- a/sphinx/environment/collectors/__init__.py +++ b/sphinx/environment/collectors/__init__.py @@ -15,9 +15,13 @@ class EnvironmentCollector: """An EnvironmentCollector is a specific data collector from each document. It gathers data and stores :py:class:`BuildEnvironment - <sphinx.environment.BuildEnvironment>` as a database. Examples of specific - data would be images, download files, section titles, metadatas, index + <sphinx.environment.BuildEnvironment>` as a database. + Examples of specific data would be images, download files, section titles, metadatas, index entries and toctrees, etc. + + .. note:: + + This class essentially wraps a sub-set of :ref:`Sphinx event callbacks <events>`. """ listener_ids: dict[str, int] | None = None @@ -42,6 +46,8 @@ class EnvironmentCollector: """Remove specified data of a document. This method is called on the removal of the document. + + .. seealso:: :event:`env-purge-doc` """ raise NotImplementedError @@ -49,6 +55,8 @@ class EnvironmentCollector: docnames: set[str], other: BuildEnvironment) -> None: """Merge in specified data regarding docnames from a different `BuildEnvironment` object which coming from a subprocess in parallel builds. + + .. seealso:: :event:`env-merge-info` """ raise NotImplementedError @@ -56,13 +64,17 @@ class EnvironmentCollector: """Process a document and gather specific data from it. This method is called after the document is read. + + .. seealso:: :event:`doctree-read` """ raise NotImplementedError def get_updated_docs(self, app: Sphinx, env: BuildEnvironment) -> list[str]: """Return a list of docnames to re-read. - This methods is called after reading the whole of documents (experimental). + This method is called after reading the whole of documents. + + .. seealso:: :event:`env-get-updated` """ return [] @@ -70,6 +82,8 @@ class EnvironmentCollector: added: set[str], changed: set[str], removed: set[str]) -> list[str]: """Return a list of docnames to re-read. - This methods is called before reading the documents. + This method is called before reading the documents. + + .. seealso:: :event:`env-get-outdated` """ return [] diff --git a/sphinx/environment/collectors/asset.py b/sphinx/environment/collectors/asset.py index 451d659..368e477 100644 --- a/sphinx/environment/collectors/asset.py +++ b/sphinx/environment/collectors/asset.py @@ -86,7 +86,7 @@ class ImageCollector(EnvironmentCollector): for imgpath in candidates.values(): app.env.dependencies[docname].add(imgpath) if not os.access(path.join(app.srcdir, imgpath), os.R_OK): - logger.warning(__('image file not readable: %s') % imgpath, + logger.warning(__('image file not readable: %s'), imgpath, location=node, type='image', subtype='not_readable') continue app.env.images.add_file(docname, imgpath) @@ -105,10 +105,10 @@ class ImageCollector(EnvironmentCollector): if mimetype not in candidates: globbed.setdefault(mimetype, []).append(new_imgpath) except OSError as err: - logger.warning(__('image file %s not readable: %s') % (filename, err), + logger.warning(__('image file %s not readable: %s'), filename, err, location=node, type='image', subtype='not_readable') for key, files in globbed.items(): - candidates[key] = sorted(files, key=len)[0] # select by similarity + candidates[key] = min(files, key=len) # select by similarity class DownloadFileCollector(EnvironmentCollector): @@ -131,7 +131,7 @@ class DownloadFileCollector(EnvironmentCollector): rel_filename, filename = app.env.relfn2path(targetname, app.env.docname) app.env.dependencies[app.env.docname].add(rel_filename) if not os.access(filename, os.R_OK): - logger.warning(__('download file not readable: %s') % filename, + logger.warning(__('download file not readable: %s'), filename, location=node, type='download', subtype='not_readable') continue node['filename'] = app.env.dlfiles.add_file(app.env.docname, rel_filename) diff --git a/sphinx/environment/collectors/toctree.py b/sphinx/environment/collectors/toctree.py index 6ea148c..fda02c6 100644 --- a/sphinx/environment/collectors/toctree.py +++ b/sphinx/environment/collectors/toctree.py @@ -68,8 +68,6 @@ class TocTreeCollector(EnvironmentCollector): ) -> nodes.bullet_list | None: # list of table of contents entries entries: list[Element] = [] - # cache of parents -> list item - memo_parents: dict[tuple[str, ...], nodes.list_item] = {} for sectionnode in node: # find all toctree nodes in this section and add them # to the toc (just copying the toctree node which is then @@ -103,6 +101,8 @@ class TocTreeCollector(EnvironmentCollector): entries.append(onlynode) # check within the section for other node types elif isinstance(sectionnode, nodes.Element): + # cache of parent node -> list item + memo_parents: dict[nodes.Element, nodes.list_item] = {} toctreenode: nodes.Node for toctreenode in sectionnode.findall(): if isinstance(toctreenode, nodes.section): @@ -114,6 +114,10 @@ class TocTreeCollector(EnvironmentCollector): note_toctree(app.env, docname, toctreenode) # add object signatures within a section to the ToC elif isinstance(toctreenode, addnodes.desc): + # The desc has one or more nested desc_signature, + # and then a desc_content, which again may have desc nodes. + # Thus, desc is the one we can bubble up to through parents. + entry: nodes.list_item | None = None for sig_node in toctreenode: if not isinstance(sig_node, addnodes.desc_signature): continue @@ -136,22 +140,28 @@ class TocTreeCollector(EnvironmentCollector): para = addnodes.compact_paragraph('', '', reference, skip_section_number=True) entry = nodes.list_item('', para) - *parents, _ = sig_node['_toc_parts'] - parents = tuple(parents) - # Cache parents tuple - memo_parents[sig_node['_toc_parts']] = entry - - # Nest children within parents - if parents and parents in memo_parents: - root_entry = memo_parents[parents] + # Find parent node + parent = sig_node.parent + while parent not in memo_parents and parent != sectionnode: + parent = parent.parent + # Note, it may both be the limit and in memo_parents, + # prefer memo_parents, so we get the nesting. + if parent in memo_parents: + root_entry = memo_parents[parent] if isinstance(root_entry[-1], nodes.bullet_list): root_entry[-1].append(entry) else: root_entry.append(nodes.bullet_list('', entry)) - continue + else: + assert parent == sectionnode + entries.append(entry) - entries.append(entry) + # Save the latest desc_signature as the one we put sub entries in. + # If there are multiple signatures, then the latest is used. + if entry is not None: + # are there any desc nodes without desc_signature nodes? + memo_parents[toctreenode] = entry if entries: return nodes.bullet_list('', *entries) @@ -177,7 +187,10 @@ class TocTreeCollector(EnvironmentCollector): env.toc_secnumbers = {} def _walk_toc( - node: Element, secnums: dict, depth: int, titlenode: nodes.title | None = None, + node: Element, + secnums: dict[str, tuple[int, ...]], + depth: int, + titlenode: nodes.title | None = None, ) -> None: # titlenode is the title of the document, it will get assigned a # secnumber too, so that it shows up in next/prev/parent rellinks @@ -206,7 +219,7 @@ class TocTreeCollector(EnvironmentCollector): secnums[reference['anchorname']] = tuple(numstack) else: number = None - secnums[reference['anchorname']] = None + secnums[reference['anchorname']] = () reference['secnumber'] = number if titlenode: titlenode['secnumber'] = number diff --git a/sphinx/events.py b/sphinx/events.py index af8dfb4..8a69b82 100644 --- a/sphinx/events.py +++ b/sphinx/events.py @@ -30,21 +30,22 @@ class EventListener(NamedTuple): # List of all known core events. Maps name to arguments description. core_events = { - 'builder-inited': '', 'config-inited': 'config', + 'builder-inited': '', 'env-get-outdated': 'env, added, changed, removed', - 'env-get-updated': 'env', - 'env-purge-doc': 'env, docname', 'env-before-read-docs': 'env, docnames', - 'env-check-consistency': 'env', + 'env-purge-doc': 'env, docname', 'source-read': 'docname, source text', 'include-read': 'relative path, parent docname, source text', 'doctree-read': 'the doctree before being pickled', 'env-merge-info': 'env, read docnames, other env instance', + 'env-updated': 'env', + 'env-get-updated': 'env', + 'env-check-consistency': 'env', + 'write-started': 'builder', + 'doctree-resolved': 'doctree, docname', 'missing-reference': 'env, node, contnode', 'warn-missing-reference': 'domain, node', - 'doctree-resolved': 'doctree, docname', - 'env-updated': 'env', 'build-finished': 'exception', } diff --git a/sphinx/ext/apidoc.py b/sphinx/ext/apidoc.py index b2e2291..53bc2ea 100644 --- a/sphinx/ext/apidoc.py +++ b/sphinx/ext/apidoc.py @@ -21,7 +21,8 @@ import sys from copy import copy from importlib.machinery import EXTENSION_SUFFIXES from os import path -from typing import TYPE_CHECKING, Any +from pathlib import Path +from typing import TYPE_CHECKING, Any, Protocol import sphinx.locale from sphinx import __display_version__, package_dir @@ -52,9 +53,9 @@ PY_SUFFIXES = ('.py', '.pyx', *tuple(EXTENSION_SUFFIXES)) template_dir = path.join(package_dir, 'templates', 'apidoc') -def is_initpy(filename: str) -> bool: +def is_initpy(filename: str | Path) -> bool: """Check *filename* is __init__ file or not.""" - basename = path.basename(filename) + basename = Path(filename).name return any( basename == '__init__' + suffix for suffix in sorted(PY_SUFFIXES, key=len, reverse=True) @@ -76,27 +77,27 @@ def is_packagedir(dirname: str | None = None, files: list[str] | None = None) -> return any(f for f in files if is_initpy(f)) -def write_file(name: str, text: str, opts: Any) -> None: +def write_file(name: str, text: str, opts: CliOptions) -> Path: """Write the output file for module/package <name>.""" - quiet = getattr(opts, 'quiet', None) - - fname = path.join(opts.destdir, f'{name}.{opts.suffix}') + fname = Path(opts.destdir, f'{name}.{opts.suffix}') if opts.dryrun: - if not quiet: + if not opts.quiet: logger.info(__('Would create file %s.'), fname) - return - if not opts.force and path.isfile(fname): - if not quiet: + return fname + if not opts.force and fname.is_file(): + if not opts.quiet: logger.info(__('File %s already exists, skipping.'), fname) else: - if not quiet: + if not opts.quiet: logger.info(__('Creating file %s.'), fname) with FileAvoidWrite(fname) as f: f.write(text) + return fname -def create_module_file(package: str | None, basename: str, opts: Any, - user_template_dir: str | None = None) -> None: +def create_module_file( + package: str | None, basename: str, opts: CliOptions, user_template_dir: str | None = None +) -> Path: """Build the text of the file and write the file.""" options = copy(OPTIONS) if opts.includeprivate and 'private-members' not in options: @@ -113,28 +114,41 @@ def create_module_file(package: str | None, basename: str, opts: Any, template_path = [user_template_dir, template_dir] else: template_path = [template_dir] - text = ReSTRenderer(template_path).render('module.rst_t', context) - write_file(qualname, text, opts) - - -def create_package_file(root: str, master_package: str | None, subroot: str, - py_files: list[str], - opts: Any, subs: list[str], is_namespace: bool, - excludes: Sequence[re.Pattern[str]] = (), - user_template_dir: str | None = None, - ) -> None: - """Build the text of the file and write the file.""" + text = ReSTRenderer(template_path).render('module.rst.jinja', context) + return write_file(qualname, text, opts) + + +def create_package_file( + root: str, + master_package: str | None, + subroot: str, + py_files: list[str], + opts: CliOptions, + subs: list[str], + is_namespace: bool, + excludes: Sequence[re.Pattern[str]] = (), + user_template_dir: str | None = None, +) -> list[Path]: + """Build the text of the file and write the file. + + Also create submodules if necessary. + + :returns: list of written files + """ # build a list of sub packages (directories containing an __init__ file) - subpackages = [module_join(master_package, subroot, pkgname) - for pkgname in subs - if not is_skipped_package(path.join(root, pkgname), opts, excludes)] + subpackages = [ + module_join(master_package, subroot, pkgname) + for pkgname in subs + if not is_skipped_package(Path(root, pkgname), opts, excludes) + ] # build a list of sub modules - submodules = [sub.split('.')[0] for sub in py_files - if not is_skipped_module(path.join(root, sub), opts, excludes) and - not is_initpy(sub)] + submodules = [ + sub.split('.')[0] + for sub in py_files + if not is_skipped_module(Path(root, sub), opts, excludes) and not is_initpy(sub) + ] submodules = sorted(set(submodules)) - submodules = [module_join(master_package, subroot, modname) - for modname in submodules] + submodules = [module_join(master_package, subroot, modname) for modname in submodules] options = copy(OPTIONS) if opts.includeprivate and 'private-members' not in options: options.append('private-members') @@ -155,16 +169,27 @@ def create_package_file(root: str, master_package: str | None, subroot: str, template_path = [user_template_dir, template_dir] else: template_path = [template_dir] - text = ReSTRenderer(template_path).render('package.rst_t', context) - write_file(pkgname, text, opts) + + written: list[Path] = [] + + text = ReSTRenderer(template_path).render('package.rst.jinja', context) + written.append(write_file(pkgname, text, opts)) if submodules and opts.separatemodules: - for submodule in submodules: + written.extend([ create_module_file(None, submodule, opts, user_template_dir) + for submodule in submodules + ]) + return written -def create_modules_toc_file(modules: list[str], opts: Any, name: str = 'modules', - user_template_dir: str | None = None) -> None: + +def create_modules_toc_file( + modules: list[str], + opts: CliOptions, + name: str = 'modules', + user_template_dir: str | None = None, +) -> Path: """Create the module's index.""" modules.sort() prev_module = '' @@ -184,87 +209,99 @@ def create_modules_toc_file(modules: list[str], opts: Any, name: str = 'modules' template_path = [user_template_dir, template_dir] else: template_path = [template_dir] - text = ReSTRenderer(template_path).render('toc.rst_t', context) - write_file(name, text, opts) + text = ReSTRenderer(template_path).render('toc.rst.jinja', context) + return write_file(name, text, opts) -def is_skipped_package(dirname: str, opts: Any, - excludes: Sequence[re.Pattern[str]] = ()) -> bool: +def is_skipped_package( + dirname: str | Path, opts: CliOptions, excludes: Sequence[re.Pattern[str]] = () +) -> bool: """Check if we want to skip this module.""" - if not path.isdir(dirname): + if not Path(dirname).is_dir(): return False - files = glob.glob(path.join(dirname, '*.py')) + files = glob.glob(str(Path(dirname, '*.py'))) regular_package = any(f for f in files if is_initpy(f)) if not regular_package and not opts.implicit_namespaces: # *dirname* is not both a regular package and an implicit namespace package return True # Check there is some showable module inside package - return all(is_excluded(path.join(dirname, f), excludes) for f in files) + return all(is_excluded(Path(dirname, f), excludes) for f in files) -def is_skipped_module(filename: str, opts: Any, _excludes: Sequence[re.Pattern[str]]) -> bool: +def is_skipped_module( + filename: str | Path, opts: CliOptions, _excludes: Sequence[re.Pattern[str]] +) -> bool: """Check if we want to skip this module.""" - if not path.exists(filename): + filename = Path(filename) + if not filename.exists(): # skip if the file doesn't exist return True # skip if the module has a "private" name - return path.basename(filename).startswith('_') and not opts.includeprivate + return filename.name.startswith('_') and not opts.includeprivate -def walk(rootpath: str, excludes: Sequence[re.Pattern[str]], opts: Any, - ) -> Iterator[tuple[str, list[str], list[str]]]: +def walk( + rootpath: str, + excludes: Sequence[re.Pattern[str]], + opts: CliOptions, +) -> Iterator[tuple[str, list[str], list[str]]]: """Walk through the directory and list files and subdirectories up.""" - followlinks = getattr(opts, 'followlinks', False) - includeprivate = getattr(opts, 'includeprivate', False) - - for root, subs, files in os.walk(rootpath, followlinks=followlinks): + for root, subs, files in os.walk(rootpath, followlinks=opts.followlinks): # document only Python module files (that aren't excluded) - files = sorted(f for f in files - if f.endswith(PY_SUFFIXES) and - not is_excluded(path.join(root, f), excludes)) + files = sorted( + f + for f in files + if f.endswith(PY_SUFFIXES) and not is_excluded(Path(root, f), excludes) + ) # remove hidden ('.') and private ('_') directories, as well as # excluded dirs - if includeprivate: + if opts.includeprivate: exclude_prefixes: tuple[str, ...] = ('.',) else: exclude_prefixes = ('.', '_') - subs[:] = sorted(sub for sub in subs if not sub.startswith(exclude_prefixes) and - not is_excluded(path.join(root, sub), excludes)) + subs[:] = sorted( + sub + for sub in subs + if not sub.startswith(exclude_prefixes) + and not is_excluded(Path(root, sub), excludes) + ) yield root, subs, files -def has_child_module(rootpath: str, excludes: Sequence[re.Pattern[str]], opts: Any) -> bool: +def has_child_module( + rootpath: str, excludes: Sequence[re.Pattern[str]], opts: CliOptions +) -> bool: """Check the given directory contains child module/s (at least one).""" - return any( - files - for _root, _subs, files in walk(rootpath, excludes, opts) - ) + return any(files for _root, _subs, files in walk(rootpath, excludes, opts)) -def recurse_tree(rootpath: str, excludes: Sequence[re.Pattern[str]], opts: Any, - user_template_dir: str | None = None) -> list[str]: +def recurse_tree( + rootpath: str, + excludes: Sequence[re.Pattern[str]], + opts: CliOptions, + user_template_dir: str | None = None, +) -> tuple[list[Path], list[str]]: """ Look for every file in the directory tree and create the corresponding ReST files. """ - implicit_namespaces = getattr(opts, 'implicit_namespaces', False) - # check if the base directory is a package and get its name - if is_packagedir(rootpath) or implicit_namespaces: + if is_packagedir(rootpath) or opts.implicit_namespaces: root_package = rootpath.split(path.sep)[-1] else: # otherwise, the base is a directory with packages root_package = None toplevels = [] + written_files = [] for root, subs, files in walk(rootpath, excludes, opts): is_pkg = is_packagedir(None, files) - is_namespace = not is_pkg and implicit_namespaces + is_namespace = not is_pkg and opts.implicit_namespaces if is_pkg: for f in files.copy(): if is_initpy(f): @@ -272,48 +309,59 @@ def recurse_tree(rootpath: str, excludes: Sequence[re.Pattern[str]], opts: Any, files.insert(0, f) elif root != rootpath: # only accept non-package at toplevel unless using implicit namespaces - if not implicit_namespaces: + if not opts.implicit_namespaces: subs.clear() continue if is_pkg or is_namespace: # we are in a package with something to document if subs or len(files) > 1 or not is_skipped_package(root, opts): - subpackage = root[len(rootpath):].lstrip(path.sep).\ - replace(path.sep, '.') + subpackage = root[len(rootpath) :].lstrip(path.sep).replace(path.sep, '.') # if this is not a namespace or # a namespace and there is something there to document if not is_namespace or has_child_module(root, excludes, opts): - create_package_file(root, root_package, subpackage, - files, opts, subs, is_namespace, excludes, - user_template_dir) + written_files.extend( + create_package_file( + root, + root_package, + subpackage, + files, + opts, + subs, + is_namespace, + excludes, + user_template_dir, + ) + ) toplevels.append(module_join(root_package, subpackage)) else: # if we are at the root level, we don't require it to be a package assert root == rootpath assert root_package is None for py_file in files: - if not is_skipped_module(path.join(rootpath, py_file), opts, excludes): + if not is_skipped_module(Path(rootpath, py_file), opts, excludes): module = py_file.split('.')[0] - create_module_file(root_package, module, opts, user_template_dir) + written_files.append( + create_module_file(root_package, module, opts, user_template_dir) + ) toplevels.append(module) - return toplevels + return written_files, toplevels -def is_excluded(root: str, excludes: Sequence[re.Pattern[str]]) -> bool: +def is_excluded(root: str | Path, excludes: Sequence[re.Pattern[str]]) -> bool: """Check if the directory is in the exclude list. Note: by having trailing slashes, we avoid common prefix issues, like e.g. an exclude "foo" also accidentally excluding "foobar". """ - return any(exclude.match(root) for exclude in excludes) + root_str = str(root) + return any(exclude.match(root_str) for exclude in excludes) def get_parser() -> argparse.ArgumentParser: parser = argparse.ArgumentParser( - usage='%(prog)s [OPTIONS] -o <OUTPUT_PATH> <MODULE_PATH> ' - '[EXCLUDE_PATTERN, ...]', + usage='%(prog)s [OPTIONS] -o <OUTPUT_PATH> <MODULE_PATH> ' '[EXCLUDE_PATTERN, ...]', epilog=__('For more information, visit <https://www.sphinx-doc.org/>.'), description=__(""" Look recursively in <MODULE_PATH> for Python modules and packages and create @@ -322,98 +370,243 @@ one reST file with automodule directives per package in the <OUTPUT_PATH>. The <EXCLUDE_PATTERN>s can be file and/or directory patterns that will be excluded from generation. -Note: By default this script will not overwrite already created files.""")) - - parser.add_argument('--version', action='version', dest='show_version', - version='%%(prog)s %s' % __display_version__) - - parser.add_argument('module_path', - help=__('path to module to document')) - parser.add_argument('exclude_pattern', nargs='*', - help=__('fnmatch-style file and/or directory patterns ' - 'to exclude from generation')) - - parser.add_argument('-o', '--output-dir', action='store', dest='destdir', - required=True, - help=__('directory to place all output')) - parser.add_argument('-q', action='store_true', dest='quiet', - help=__('no output on stdout, just warnings on stderr')) - parser.add_argument('-d', '--maxdepth', action='store', dest='maxdepth', - type=int, default=4, - help=__('maximum depth of submodules to show in the TOC ' - '(default: 4)')) - parser.add_argument('-f', '--force', action='store_true', dest='force', - help=__('overwrite existing files')) - parser.add_argument('-l', '--follow-links', action='store_true', - dest='followlinks', default=False, - help=__('follow symbolic links. Powerful when combined ' - 'with collective.recipe.omelette.')) - parser.add_argument('-n', '--dry-run', action='store_true', dest='dryrun', - help=__('run the script without creating files')) - parser.add_argument('-e', '--separate', action='store_true', - dest='separatemodules', - help=__('put documentation for each module on its own page')) - parser.add_argument('-P', '--private', action='store_true', - dest='includeprivate', - help=__('include "_private" modules')) - parser.add_argument('--tocfile', action='store', dest='tocfile', default='modules', - help=__("filename of table of contents (default: modules)")) - parser.add_argument('-T', '--no-toc', action='store_false', dest='tocfile', - help=__("don't create a table of contents file")) - parser.add_argument('-E', '--no-headings', action='store_true', - dest='noheadings', - help=__("don't create headings for the module/package " - "packages (e.g. when the docstrings already " - "contain them)")) - parser.add_argument('-M', '--module-first', action='store_true', - dest='modulefirst', - help=__('put module documentation before submodule ' - 'documentation')) - parser.add_argument('--implicit-namespaces', action='store_true', - dest='implicit_namespaces', - help=__('interpret module paths according to PEP-0420 ' - 'implicit namespaces specification')) - parser.add_argument('-s', '--suffix', action='store', dest='suffix', - default='rst', - help=__('file suffix (default: rst)')) - parser.add_argument('-F', '--full', action='store_true', dest='full', - help=__('generate a full project with sphinx-quickstart')) - parser.add_argument('-a', '--append-syspath', action='store_true', - dest='append_syspath', - help=__('append module_path to sys.path, used when --full is given')) - parser.add_argument('-H', '--doc-project', action='store', dest='header', - help=__('project name (default: root module name)')) - parser.add_argument('-A', '--doc-author', action='store', dest='author', - help=__('project author(s), used when --full is given')) - parser.add_argument('-V', '--doc-version', action='store', dest='version', - help=__('project version, used when --full is given')) - parser.add_argument('-R', '--doc-release', action='store', dest='release', - help=__('project release, used when --full is given, ' - 'defaults to --doc-version')) +Note: By default this script will not overwrite already created files."""), + ) + + parser.add_argument( + '--version', + action='version', + dest='show_version', + version='%%(prog)s %s' % __display_version__, + ) + + parser.add_argument('module_path', help=__('path to module to document')) + parser.add_argument( + 'exclude_pattern', + nargs='*', + help=__('fnmatch-style file and/or directory patterns ' 'to exclude from generation'), + ) + + parser.add_argument( + '-o', + '--output-dir', + action='store', + dest='destdir', + required=True, + help=__('directory to place all output'), + ) + parser.add_argument( + '-q', + action='store_true', + dest='quiet', + help=__('no output on stdout, just warnings on stderr'), + ) + parser.add_argument( + '-d', + '--maxdepth', + action='store', + dest='maxdepth', + type=int, + default=4, + help=__('maximum depth of submodules to show in the TOC ' '(default: 4)'), + ) + parser.add_argument( + '-f', '--force', action='store_true', dest='force', help=__('overwrite existing files') + ) + parser.add_argument( + '-l', + '--follow-links', + action='store_true', + dest='followlinks', + default=False, + help=__( + 'follow symbolic links. Powerful when combined ' 'with collective.recipe.omelette.' + ), + ) + parser.add_argument( + '-n', + '--dry-run', + action='store_true', + dest='dryrun', + help=__('run the script without creating files'), + ) + parser.add_argument( + '-e', + '--separate', + action='store_true', + dest='separatemodules', + help=__('put documentation for each module on its own page'), + ) + parser.add_argument( + '-P', + '--private', + action='store_true', + dest='includeprivate', + help=__('include "_private" modules'), + ) + parser.add_argument( + '--tocfile', + action='store', + dest='tocfile', + default='modules', + help=__('filename of table of contents (default: modules)'), + ) + parser.add_argument( + '-T', + '--no-toc', + action='store_false', + dest='tocfile', + help=__("don't create a table of contents file"), + ) + parser.add_argument( + '-E', + '--no-headings', + action='store_true', + dest='noheadings', + help=__( + "don't create headings for the module/package " + 'packages (e.g. when the docstrings already ' + 'contain them)' + ), + ) + parser.add_argument( + '-M', + '--module-first', + action='store_true', + dest='modulefirst', + help=__('put module documentation before submodule ' 'documentation'), + ) + parser.add_argument( + '--implicit-namespaces', + action='store_true', + dest='implicit_namespaces', + help=__( + 'interpret module paths according to PEP-0420 ' 'implicit namespaces specification' + ), + ) + parser.add_argument( + '-s', + '--suffix', + action='store', + dest='suffix', + default='rst', + help=__('file suffix (default: rst)'), + ) + exclusive_group = parser.add_mutually_exclusive_group() + exclusive_group.add_argument( + '--remove-old', + action='store_true', + dest='remove_old', + help=__('Remove existing files in the output directory that were not generated'), + ) + exclusive_group.add_argument( + '-F', + '--full', + action='store_true', + dest='full', + help=__('generate a full project with sphinx-quickstart'), + ) + parser.add_argument( + '-a', + '--append-syspath', + action='store_true', + dest='append_syspath', + help=__('append module_path to sys.path, used when --full is given'), + ) + parser.add_argument( + '-H', + '--doc-project', + action='store', + dest='header', + help=__('project name (default: root module name)'), + ) + parser.add_argument( + '-A', + '--doc-author', + action='store', + dest='author', + help=__('project author(s), used when --full is given'), + ) + parser.add_argument( + '-V', + '--doc-version', + action='store', + dest='version', + help=__('project version, used when --full is given'), + ) + parser.add_argument( + '-R', + '--doc-release', + action='store', + dest='release', + help=__('project release, used when --full is given, ' 'defaults to --doc-version'), + ) group = parser.add_argument_group(__('extension options')) - group.add_argument('--extensions', metavar='EXTENSIONS', dest='extensions', - action='append', help=__('enable arbitrary extensions')) + group.add_argument( + '--extensions', + metavar='EXTENSIONS', + dest='extensions', + action='append', + help=__('enable arbitrary extensions'), + ) for ext in EXTENSIONS: - group.add_argument('--ext-%s' % ext, action='append_const', - const='sphinx.ext.%s' % ext, dest='extensions', - help=__('enable %s extension') % ext) + group.add_argument( + '--ext-%s' % ext, + action='append_const', + const='sphinx.ext.%s' % ext, + dest='extensions', + help=__('enable %s extension') % ext, + ) group = parser.add_argument_group(__('Project templating')) - group.add_argument('-t', '--templatedir', metavar='TEMPLATEDIR', - dest='templatedir', - help=__('template directory for template files')) + group.add_argument( + '-t', + '--templatedir', + metavar='TEMPLATEDIR', + dest='templatedir', + help=__('template directory for template files'), + ) return parser +class CliOptions(Protocol): + """Arguments parsed from the command line.""" + + module_path: str + exclude_pattern: list[str] + destdir: str + quiet: bool + maxdepth: int + force: bool + followlinks: bool + dryrun: bool + separatemodules: bool + includeprivate: bool + tocfile: str + noheadings: bool + modulefirst: bool + implicit_namespaces: bool + suffix: str + full: bool + append_syspath: bool + header: str | None + author: str | None + version: str | None + release: str | None + extensions: list[str] | None + templatedir: str | None + remove_old: bool + + def main(argv: Sequence[str] = (), /) -> int: """Parse and check the command line arguments.""" locale.setlocale(locale.LC_ALL, '') sphinx.locale.init_console() parser = get_parser() - args = parser.parse_args(argv or sys.argv[1:]) + args: CliOptions = parser.parse_args(argv or sys.argv[1:]) rootpath = path.abspath(args.module_path) @@ -423,7 +616,7 @@ def main(argv: Sequence[str] = (), /) -> int: args.header = rootpath.split(path.sep)[-1] if args.suffix.startswith('.'): args.suffix = args.suffix[1:] - if not path.isdir(rootpath): + if not Path(rootpath).is_dir(): logger.error(__('%s is not a directory.'), rootpath) raise SystemExit(1) if not args.dryrun: @@ -432,10 +625,11 @@ def main(argv: Sequence[str] = (), /) -> int: re.compile(fnmatch.translate(path.abspath(exclude))) for exclude in dict.fromkeys(args.exclude_pattern) ) - modules = recurse_tree(rootpath, excludes, args, args.templatedir) + written_files, modules = recurse_tree(rootpath, excludes, args, args.templatedir) if args.full: from sphinx.cmd import quickstart as qs + modules.sort() prev_module = '' text = '' @@ -444,7 +638,7 @@ def main(argv: Sequence[str] = (), /) -> int: continue prev_module = module text += ' %s\n' % module - d = { + d: dict[str, Any] = { 'path': args.destdir, 'sep': False, 'dot': '_', @@ -455,8 +649,7 @@ def main(argv: Sequence[str] = (), /) -> int: 'suffix': '.' + args.suffix, 'master': 'index', 'epub': True, - 'extensions': ['sphinx.ext.autodoc', 'sphinx.ext.viewcode', - 'sphinx.ext.todo'], + 'extensions': ['sphinx.ext.autodoc', 'sphinx.ext.viewcode', 'sphinx.ext.todo'], 'makefile': True, 'batchfile': True, 'make_mode': True, @@ -477,14 +670,28 @@ def main(argv: Sequence[str] = (), /) -> int: d['extensions'].extend(ext.split(',')) if not args.dryrun: - qs.generate(d, silent=True, overwrite=args.force, - templatedir=args.templatedir) + qs.generate(d, silent=True, overwrite=args.force, templatedir=args.templatedir) elif args.tocfile: - create_modules_toc_file(modules, args, args.tocfile, args.templatedir) + written_files.append( + create_modules_toc_file(modules, args, args.tocfile, args.templatedir) + ) + + if args.remove_old and not args.dryrun: + for existing in Path(args.destdir).glob(f'**/*.{args.suffix}'): + if existing not in written_files: + try: + existing.unlink() + except OSError as exc: + logger.warning( + __('Failed to remove %s: %s'), + existing, + exc.strerror, + type='autodoc', + ) return 0 # So program can be started with "python -m sphinx.apidoc ..." -if __name__ == "__main__": +if __name__ == '__main__': raise SystemExit(main(sys.argv[1:])) diff --git a/sphinx/ext/autodoc/__init__.py b/sphinx/ext/autodoc/__init__.py index 45e4cad..41e128e 100644 --- a/sphinx/ext/autodoc/__init__.py +++ b/sphinx/ext/autodoc/__init__.py @@ -170,7 +170,7 @@ def merge_members_option(options: dict) -> None: return members = options.setdefault('members', []) - for key in {'private-members', 'special-members'}: + for key in ('private-members', 'special-members'): if key in options and options[key] not in (ALL, None): for member in options[key]: if member not in members: @@ -396,7 +396,7 @@ class Documenter: # an autogenerated one matched = py_ext_sig_re.match(self.name) if matched is None: - logger.warning(__('invalid signature for auto%s (%r)') % (self.objtype, self.name), + logger.warning(__('invalid signature for auto%s (%r)'), self.objtype, self.name, type='autodoc') return False explicit_modname, path, base, tp_list, args, retann = matched.groups() @@ -892,7 +892,7 @@ class Documenter: logger.warning( __("don't know which module to import for autodocumenting " '%r (try placing a "module" or "currentmodule" directive ' - 'in the document, or giving an explicit module name)') % + 'in the document, or giving an explicit module name)'), self.name, type='autodoc') return @@ -1024,7 +1024,7 @@ class ModuleDocumenter(Documenter): ret = super().parse_name() if self.args or self.retann: logger.warning(__('signature arguments or return annotation ' - 'given for automodule %s') % self.fullname, + 'given for automodule %s'), self.fullname, type='autodoc') return ret @@ -1037,8 +1037,8 @@ class ModuleDocumenter(Documenter): except ValueError as exc: # invalid __all__ found. logger.warning(__('__all__ should be a list of strings, not %r ' - '(in module %s) -- ignoring __all__') % - (exc.args[0], self.fullname), type='autodoc') + '(in module %s) -- ignoring __all__'), + exc.args[0], self.fullname, type='autodoc') return ret @@ -1103,8 +1103,8 @@ class ModuleDocumenter(Documenter): ret.append(members[name]) else: logger.warning(__('missing attribute mentioned in :members: option: ' - 'module %s, attribute %s') % - (safe_getattr(self.object, '__name__', '???'), name), + 'module %s, attribute %s'), + safe_getattr(self.object, '__name__', '???', name), type='autodoc') return False, ret @@ -1756,8 +1756,8 @@ class ClassDocumenter(DocstringSignatureMixin, ModuleLevelDocumenter): # type: if name in members: selected.append(members[name]) else: - logger.warning(__('missing attribute %s in object %s') % - (name, self.fullname), type='autodoc') + logger.warning(__('missing attribute %s in object %s'), + name, self.fullname, type='autodoc') return False, selected elif self.options.inherited_members: return False, list(members.values()) @@ -2008,7 +2008,8 @@ class UninitializedGlobalVariableMixin(DataDocumenterMixinBase): with mock(self.config.autodoc_mock_imports): parent = import_module(self.modname, self.config.autodoc_warningiserror) annotations = get_type_hints(parent, None, - self.config.autodoc_type_aliases) + self.config.autodoc_type_aliases, + include_extras=True) if self.objpath[-1] in annotations: self.object = UNINITIALIZED_ATTR self.parent = parent @@ -2097,7 +2098,8 @@ class DataDocumenter(GenericAliasMixin, if self.config.autodoc_typehints != 'none': # obtain annotation for this data annotations = get_type_hints(self.parent, None, - self.config.autodoc_type_aliases) + self.config.autodoc_type_aliases, + include_extras=True) if self.objpath[-1] in annotations: if self.config.autodoc_typehints_format == "short": objrepr = stringify_annotation(annotations.get(self.objpath[-1]), @@ -2541,7 +2543,8 @@ class UninitializedInstanceAttributeMixin(DataDocumenterMixinBase): def is_uninitialized_instance_attribute(self, parent: Any) -> bool: """Check the subject is an annotation only attribute.""" - annotations = get_type_hints(parent, None, self.config.autodoc_type_aliases) + annotations = get_type_hints(parent, None, self.config.autodoc_type_aliases, + include_extras=True) return self.objpath[-1] in annotations def import_object(self, raiseerror: bool = False) -> bool: @@ -2673,7 +2676,8 @@ class AttributeDocumenter(GenericAliasMixin, SlotsMixin, # type: ignore[misc] if self.config.autodoc_typehints != 'none': # obtain type annotation for this attribute annotations = get_type_hints(self.parent, None, - self.config.autodoc_type_aliases) + self.config.autodoc_type_aliases, + include_extras=True) if self.objpath[-1] in annotations: if self.config.autodoc_typehints_format == "short": objrepr = stringify_annotation(annotations.get(self.objpath[-1]), @@ -2721,10 +2725,10 @@ class AttributeDocumenter(GenericAliasMixin, SlotsMixin, # type: ignore[misc] # a docstring from the value which descriptor returns unexpectedly. # ref: https://github.com/sphinx-doc/sphinx/issues/7805 orig = self.config.autodoc_inherit_docstrings - self.config.autodoc_inherit_docstrings = False # type: ignore[attr-defined] + self.config.autodoc_inherit_docstrings = False return super().get_doc() finally: - self.config.autodoc_inherit_docstrings = orig # type: ignore[attr-defined] + self.config.autodoc_inherit_docstrings = orig def add_content(self, more_content: StringList | None) -> None: # Disable analyzing attribute comment on Documenter.add_content() to control it on @@ -2773,7 +2777,7 @@ class PropertyDocumenter(DocstringStripSignatureMixin, # type: ignore[misc] obj = __dict__.get(self.objpath[-1]) if isinstance(obj, classmethod) and inspect.isproperty(obj.__func__): self.object = obj.__func__ - self.isclassmethod = True + self.isclassmethod: bool = True return True else: return False diff --git a/sphinx/ext/autodoc/directive.py b/sphinx/ext/autodoc/directive.py index 130e347..9b0bf66 100644 --- a/sphinx/ext/autodoc/directive.py +++ b/sphinx/ext/autodoc/directive.py @@ -9,10 +9,10 @@ from docutils.utils import Reporter, assemble_option_dict from sphinx.ext.autodoc import Documenter, Options from sphinx.util import logging from sphinx.util.docutils import SphinxDirective, switch_source_input -from sphinx.util.nodes import nested_parse_with_titles +from sphinx.util.parsing import nested_parse_to_nodes if TYPE_CHECKING: - from docutils.nodes import Element, Node + from docutils.nodes import Node from docutils.parsers.rst.states import RSTState from sphinx.config import Config @@ -86,15 +86,12 @@ def parse_generated_content(state: RSTState, content: StringList, documenter: Do """Parse an item of content generated by Documenter.""" with switch_source_input(state, content): if documenter.titles_allowed: - node: Element = nodes.section() - # necessary so that the child nodes get the right source/line set - node.document = state.document - nested_parse_with_titles(state, content, node) - else: - node = nodes.paragraph() - node.document = state.document - state.nested_parse(content, 0, node) + return nested_parse_to_nodes(state, content) + node = nodes.paragraph() + # necessary so that the child nodes get the right source/line set + node.document = state.document + state.nested_parse(content, 0, node, match_titles=False) return node.children @@ -115,7 +112,7 @@ class AutodocDirective(SphinxDirective): reporter = self.state.document.reporter try: - source, lineno = reporter.get_source_and_line( + source, lineno = reporter.get_source_and_line( # type: ignore[attr-defined] self.lineno) except AttributeError: source, lineno = (None, None) @@ -130,8 +127,8 @@ class AutodocDirective(SphinxDirective): documenter_options = process_documenter_options(doccls, self.config, self.options) except (KeyError, ValueError, TypeError) as exc: # an option is either unknown or has a wrong type - logger.error('An option to %s is either unknown or has an invalid value: %s' % - (self.name, exc), location=(self.env.docname, lineno)) + logger.error('An option to %s is either unknown or has an invalid value: %s', + self.name, exc, location=(self.env.docname, lineno)) return [] # generate the output diff --git a/sphinx/ext/autodoc/mock.py b/sphinx/ext/autodoc/mock.py index c2ab0fe..265f450 100644 --- a/sphinx/ext/autodoc/mock.py +++ b/sphinx/ext/autodoc/mock.py @@ -8,13 +8,16 @@ import sys from importlib.abc import Loader, MetaPathFinder from importlib.machinery import ModuleSpec from types import MethodType, ModuleType -from typing import TYPE_CHECKING, Any +from typing import TYPE_CHECKING from sphinx.util import logging from sphinx.util.inspect import isboundmethod, safe_getattr if TYPE_CHECKING: from collections.abc import Iterator, Sequence + from typing import Any + + from typing_extensions import TypeIs logger = logging.getLogger(__name__) @@ -46,10 +49,10 @@ class _MockObject: def __contains__(self, key: str) -> bool: return False - def __iter__(self) -> Iterator: - return iter([]) + def __iter__(self) -> Iterator[Any]: + return iter(()) - def __mro_entries__(self, bases: tuple) -> tuple: + def __mro_entries__(self, bases: tuple[Any, ...]) -> tuple[type, ...]: return (self.__class__,) def __getitem__(self, key: Any) -> _MockObject: @@ -68,7 +71,7 @@ class _MockObject: def _make_subclass(name: str, module: str, superclass: Any = _MockObject, - attributes: Any = None, decorator_args: tuple = ()) -> Any: + attributes: Any = None, decorator_args: tuple[Any, ...] = ()) -> Any: attrs = {'__module__': module, '__display_name__': module + '.' + name, '__name__': name, @@ -144,8 +147,8 @@ def mock(modnames: list[str]) -> Iterator[None]: # mock modules are enabled here ... """ + finder = MockFinder(modnames) try: - finder = MockFinder(modnames) sys.meta_path.insert(0, finder) yield finally: @@ -153,7 +156,7 @@ def mock(modnames: list[str]) -> Iterator[None]: finder.invalidate_caches() -def ismockmodule(subject: Any) -> bool: +def ismockmodule(subject: Any) -> TypeIs[_MockModule]: """Check if the object is a mocked module.""" return isinstance(subject, _MockModule) diff --git a/sphinx/ext/autodoc/preserve_defaults.py b/sphinx/ext/autodoc/preserve_defaults.py index b0b3243..a9932b3 100644 --- a/sphinx/ext/autodoc/preserve_defaults.py +++ b/sphinx/ext/autodoc/preserve_defaults.py @@ -109,7 +109,7 @@ def _get_arguments_inner(x: Any, /) -> ast.arguments | None: return None -def get_default_value(lines: list[str], position: ast.AST) -> str | None: +def get_default_value(lines: list[str], position: ast.expr) -> str | None: try: if position.lineno == position.end_lineno: line = lines[position.lineno - 1] diff --git a/sphinx/ext/autodoc/typehints.py b/sphinx/ext/autodoc/typehints.py index df0c468..ed8860c 100644 --- a/sphinx/ext/autodoc/typehints.py +++ b/sphinx/ext/autodoc/typehints.py @@ -35,9 +35,9 @@ def record_typehints(app: Sphinx, objtype: str, name: str, obj: Any, sig = inspect.signature(obj, type_aliases=app.config.autodoc_type_aliases) for param in sig.parameters.values(): if param.annotation is not param.empty: - annotation[param.name] = stringify_annotation(param.annotation, mode) + annotation[param.name] = stringify_annotation(param.annotation, mode) # type: ignore[arg-type] if sig.return_annotation is not sig.empty: - annotation['return'] = stringify_annotation(sig.return_annotation, mode) + annotation['return'] = stringify_annotation(sig.return_annotation, mode) # type: ignore[arg-type] except (TypeError, ValueError): pass diff --git a/sphinx/ext/autosummary/__init__.py b/sphinx/ext/autosummary/__init__.py index 7057f43..225651a 100644 --- a/sphinx/ext/autosummary/__init__.py +++ b/sphinx/ext/autosummary/__init__.py @@ -87,6 +87,7 @@ from sphinx.util.docutils import ( ) from sphinx.util.inspect import getmro, signature_from_str from sphinx.util.matching import Matcher +from sphinx.util.parsing import nested_parse_to_nodes if TYPE_CHECKING: from collections.abc import Sequence @@ -406,16 +407,14 @@ class Autosummary(SphinxDirective): row = nodes.row('') source, line = self.state_machine.get_source_and_line() for text in column_texts: - node = nodes.paragraph('') - vl = StringList() - vl.append(text, '%s:%d:<autosummary>' % (source, line)) + vl = StringList([text], f'{source}:{line}:<autosummary>') with switch_source_input(self.state, vl): - self.state.nested_parse(vl, 0, node) - try: - if isinstance(node[0], nodes.paragraph): - node = node[0] - except IndexError: - pass + col_nodes = nested_parse_to_nodes(self.state, vl, + allow_section_headings=False) + if col_nodes and isinstance(col_nodes[0], nodes.paragraph): + node = col_nodes[0] + else: + node = nodes.paragraph('') row.append(nodes.entry('', node)) body.append(row) @@ -640,6 +639,13 @@ def import_by_name( tried = [] errors: list[ImportExceptionGroup] = [] for prefix in prefixes: + if prefix is not None and name.startswith(f'{prefix}.'): + # Catch and avoid module cycles (e.g., sphinx.ext.sphinx.ext...) + msg = __('Summarised items should not include the current module. ' + 'Replace %r with %r.') + logger.warning(msg, name, name.removeprefix(f'{prefix}.'), + type='autosummary', subtype='import_cycle') + continue try: if prefix: prefixed_name = f'{prefix}.{name}' @@ -759,7 +765,14 @@ class AutoLink(SphinxRole): try: # try to import object by name prefixes = get_import_prefixes_from_env(self.env) - import_by_name(pending_xref['reftarget'], prefixes) + name = pending_xref['reftarget'] + prefixes = [ + prefix + for prefix in prefixes + if prefix is None + or not (name.startswith(f'{prefix}.') or name == prefix) + ] + import_by_name(name, prefixes) except ImportExceptionGroup: literal = cast(nodes.literal, pending_xref[0]) objects[0] = nodes.emphasis(self.rawtext, literal.astext(), diff --git a/sphinx/ext/autosummary/generate.py b/sphinx/ext/autosummary/generate.py index 83497f9..f4b0df0 100644 --- a/sphinx/ext/autosummary/generate.py +++ b/sphinx/ext/autosummary/generate.py @@ -24,6 +24,7 @@ import pydoc import re import sys from os import path +from pathlib import Path from typing import TYPE_CHECKING, Any, NamedTuple from jinja2 import TemplateNotFound @@ -65,7 +66,7 @@ class DummyApplication: self.config = Config() self.registry = SphinxComponentRegistry() self.messagelog: list[str] = [] - self.srcdir = "/" + self.srcdir = '/' self.translator = translator self.verbosity = 0 self._warncount = 0 @@ -98,10 +99,17 @@ def setup_documenters(app: Any) -> None: ModuleDocumenter, PropertyDocumenter, ) + documenters: list[type[Documenter]] = [ - ModuleDocumenter, ClassDocumenter, ExceptionDocumenter, DataDocumenter, - FunctionDocumenter, MethodDocumenter, - AttributeDocumenter, DecoratorDocumenter, PropertyDocumenter, + ModuleDocumenter, + ClassDocumenter, + ExceptionDocumenter, + DataDocumenter, + FunctionDocumenter, + MethodDocumenter, + AttributeDocumenter, + DecoratorDocumenter, + PropertyDocumenter, ] for documenter in documenters: app.registry.add_documenter(documenter.objtype, documenter) @@ -123,8 +131,9 @@ class AutosummaryRenderer: raise ValueError(msg) system_templates_path = [os.path.join(package_dir, 'ext', 'autosummary', 'templates')] - loader = SphinxTemplateLoader(app.srcdir, app.config.templates_path, - system_templates_path) + loader = SphinxTemplateLoader( + app.srcdir, app.config.templates_path, system_templates_path + ) self.env = SandboxedEnvironment(loader=loader) self.env.filters['escape'] = rst.escape @@ -132,7 +141,7 @@ class AutosummaryRenderer: self.env.filters['underline'] = _underline if app.translator: - self.env.add_extension("jinja2.ext.i18n") + self.env.add_extension('jinja2.ext.i18n') # ``install_gettext_translations`` is injected by the ``jinja2.ext.i18n`` extension self.env.install_gettext_translations(app.translator) # type: ignore[attr-defined] @@ -168,17 +177,17 @@ def _split_full_qualified_name(name: str) -> tuple[str | None, str]: parts = name.split('.') for i, _part in enumerate(parts, 1): try: - modname = ".".join(parts[:i]) + modname = '.'.join(parts[:i]) importlib.import_module(modname) except ImportError: - if parts[:i - 1]: - return ".".join(parts[:i - 1]), ".".join(parts[i - 1:]) + if parts[: i - 1]: + return '.'.join(parts[: i - 1]), '.'.join(parts[i - 1 :]) else: - return None, ".".join(parts) + return None, '.'.join(parts) except IndexError: pass - return name, "" + return name, '' # -- Generating output --------------------------------------------------------- @@ -194,12 +203,19 @@ class ModuleScanner: def is_skipped(self, name: str, value: Any, objtype: str) -> bool: try: - return self.app.emit_firstresult('autodoc-skip-member', objtype, - name, value, False, {}) + return self.app.emit_firstresult( + 'autodoc-skip-member', objtype, name, value, False, {} + ) except Exception as exc: - logger.warning(__('autosummary: failed to determine %r to be documented, ' - 'the following exception was raised:\n%s'), - name, exc, type='autosummary') + logger.warning( + __( + 'autosummary: failed to determine %r to be documented, ' + 'the following exception was raised:\n%s' + ), + name, + exc, + type='autosummary', + ) return False def scan(self, imported_members: bool) -> list[str]: @@ -257,12 +273,19 @@ def members_of(obj: Any, conf: Config) -> Sequence[str]: return getall(obj) or dir(obj) -def generate_autosummary_content(name: str, obj: Any, parent: Any, - template: AutosummaryRenderer, template_name: str, - imported_members: bool, app: Any, - recursive: bool, context: dict, - modname: str | None = None, - qualname: str | None = None) -> str: +def generate_autosummary_content( + name: str, + obj: Any, + parent: Any, + template: AutosummaryRenderer, + template_name: str, + imported_members: bool, + app: Any, + recursive: bool, + context: dict, + modname: str | None = None, + qualname: str | None = None, +) -> str: doc = get_documenter(app, obj, parent) ns: dict[str, Any] = {} @@ -275,23 +298,25 @@ def generate_autosummary_content(name: str, obj: Any, parent: Any, respect_module_all = not app.config.autosummary_ignore_module_all imported_members = imported_members or ('__all__' in dir(obj) and respect_module_all) - ns['functions'], ns['all_functions'] = \ - _get_members(doc, app, obj, {'function'}, imported=imported_members) - ns['classes'], ns['all_classes'] = \ - _get_members(doc, app, obj, {'class'}, imported=imported_members) - ns['exceptions'], ns['all_exceptions'] = \ - _get_members(doc, app, obj, {'exception'}, imported=imported_members) - ns['attributes'], ns['all_attributes'] = \ - _get_module_attrs(name, ns['members']) + ns['functions'], ns['all_functions'] = _get_members( + doc, app, obj, {'function'}, imported=imported_members + ) + ns['classes'], ns['all_classes'] = _get_members( + doc, app, obj, {'class'}, imported=imported_members + ) + ns['exceptions'], ns['all_exceptions'] = _get_members( + doc, app, obj, {'exception'}, imported=imported_members + ) + ns['attributes'], ns['all_attributes'] = _get_module_attrs(name, ns['members']) ispackage = hasattr(obj, '__path__') if ispackage and recursive: # Use members that are not modules as skip list, because it would then mean # that module was overwritten in the package namespace skip = ( - ns["all_functions"] - + ns["all_classes"] - + ns["all_exceptions"] - + ns["all_attributes"] + ns['all_functions'] + + ns['all_classes'] + + ns['all_exceptions'] + + ns['all_attributes'] ) # If respect_module_all and module has a __all__ attribute, first get @@ -301,40 +326,40 @@ def generate_autosummary_content(name: str, obj: Any, parent: Any, # # Otherwise, use get_modules method normally if respect_module_all and '__all__' in dir(obj): - imported_modules, all_imported_modules = \ - _get_members(doc, app, obj, {'module'}, imported=True) + imported_modules, all_imported_modules = _get_members( + doc, app, obj, {'module'}, imported=True + ) skip += all_imported_modules - imported_modules = [name + '.' + modname for modname in imported_modules] - all_imported_modules = \ - [name + '.' + modname for modname in all_imported_modules] public_members = getall(obj) else: imported_modules, all_imported_modules = [], [] public_members = None - modules, all_modules = _get_modules(obj, skip=skip, name=name, - public_members=public_members) + modules, all_modules = _get_modules( + obj, skip=skip, name=name, public_members=public_members + ) ns['modules'] = imported_modules + modules - ns["all_modules"] = all_imported_modules + all_modules + ns['all_modules'] = all_imported_modules + all_modules elif doc.objtype == 'class': ns['members'] = dir(obj) - ns['inherited_members'] = \ - set(dir(obj)) - set(obj.__dict__.keys()) - ns['methods'], ns['all_methods'] = \ - _get_members(doc, app, obj, {'method'}, include_public={'__init__'}) - ns['attributes'], ns['all_attributes'] = \ - _get_members(doc, app, obj, {'attribute', 'property'}) + ns['inherited_members'] = set(dir(obj)) - set(obj.__dict__.keys()) + ns['methods'], ns['all_methods'] = _get_members( + doc, app, obj, {'method'}, include_public={'__init__'} + ) + ns['attributes'], ns['all_attributes'] = _get_members( + doc, app, obj, {'attribute', 'property'} + ) if modname is None or qualname is None: modname, qualname = _split_full_qualified_name(name) if doc.objtype in ('method', 'attribute', 'property'): - ns['class'] = qualname.rsplit(".", 1)[0] + ns['class'] = qualname.rsplit('.', 1)[0] if doc.objtype == 'class': shortname = qualname else: - shortname = qualname.rsplit(".", 1)[-1] + shortname = qualname.rsplit('.', 1)[-1] ns['fullname'] = name ns['module'] = modname @@ -352,12 +377,17 @@ def generate_autosummary_content(name: str, obj: Any, parent: Any, def _skip_member(app: Sphinx, obj: Any, name: str, objtype: str) -> bool: try: - return app.emit_firstresult('autodoc-skip-member', objtype, name, - obj, False, {}) + return app.emit_firstresult('autodoc-skip-member', objtype, name, obj, False, {}) except Exception as exc: - logger.warning(__('autosummary: failed to determine %r to be documented, ' - 'the following exception was raised:\n%s'), - name, exc, type='autosummary') + logger.warning( + __( + 'autosummary: failed to determine %r to be documented, ' + 'the following exception was raised:\n%s' + ), + name, + exc, + type='autosummary', + ) return False @@ -384,9 +414,15 @@ def _get_all_members(doc: type[Documenter], app: Sphinx, obj: Any) -> dict[str, return {} -def _get_members(doc: type[Documenter], app: Sphinx, obj: Any, types: set[str], *, - include_public: Set[str] = frozenset(), - imported: bool = True) -> tuple[list[str], list[str]]: +def _get_members( + doc: type[Documenter], + app: Sphinx, + obj: Any, + types: set[str], + *, + include_public: Set[str] = frozenset(), + imported: bool = True, +) -> tuple[list[str], list[str]]: items: list[str] = [] public: list[str] = [] @@ -423,55 +459,61 @@ def _get_module_attrs(name: str, members: Any) -> tuple[list[str], list[str]]: if not attr_name.startswith('_'): public.append(attr_name) except PycodeError: - pass # give up if ModuleAnalyzer fails to parse code + pass # give up if ModuleAnalyzer fails to parse code return public, attrs def _get_modules( - obj: Any, - *, - skip: Sequence[str], - name: str, - public_members: Sequence[str] | None = None) -> tuple[list[str], list[str]]: + obj: Any, *, skip: Sequence[str], name: str, public_members: Sequence[str] | None = None +) -> tuple[list[str], list[str]]: items: list[str] = [] public: list[str] = [] for _, modname, _ispkg in pkgutil.iter_modules(obj.__path__): - if modname in skip: # module was overwritten in __init__.py, so not accessible continue - fullname = name + '.' + modname + fullname = f'{name}.{modname}' try: module = import_module(fullname) - if module and hasattr(module, '__sphinx_mock__'): - continue except ImportError: pass + else: + if module and hasattr(module, '__sphinx_mock__'): + continue - items.append(fullname) + items.append(modname) if public_members is not None: if modname in public_members: - public.append(fullname) + public.append(modname) else: if not modname.startswith('_'): - public.append(fullname) + public.append(modname) return public, items -def generate_autosummary_docs(sources: list[str], - output_dir: str | os.PathLike[str] | None = None, - suffix: str = '.rst', - base_path: str | os.PathLike[str] | None = None, - imported_members: bool = False, app: Any = None, - overwrite: bool = True, encoding: str = 'utf-8') -> None: +def generate_autosummary_docs( + sources: list[str], + output_dir: str | os.PathLike[str] | None = None, + suffix: str = '.rst', + base_path: str | os.PathLike[str] | None = None, + imported_members: bool = False, + app: Sphinx | None = None, + overwrite: bool = True, + encoding: str = 'utf-8', +) -> list[Path]: + """Generate autosummary documentation for the given sources. + + :returns: list of generated files (both new and existing ones) + """ + assert app is not None, 'app is required' + showed_sources = sorted(sources) if len(showed_sources) > 20: showed_sources = showed_sources[:10] + ['...'] + showed_sources[-10:] - logger.info(__('[autosummary] generating autosummary for: %s') % - ', '.join(showed_sources)) + logger.info(__('[autosummary] generating autosummary for: %s'), ', '.join(showed_sources)) if output_dir: - logger.info(__('[autosummary] writing to %s') % output_dir) + logger.info(__('[autosummary] writing to %s'), output_dir) if base_path is not None: sources = [os.path.join(base_path, filename) for filename in sources] @@ -482,12 +524,10 @@ def generate_autosummary_docs(sources: list[str], items = find_autosummary_in_files(sources) # keep track of new files - new_files = [] + new_files: list[Path] = [] + all_files: list[Path] = [] - if app: - filename_map = app.config.autosummary_filename_map - else: - filename_map = {} + filename_map = app.config.autosummary_filename_map # write for entry in sorted(set(items), key=str): @@ -501,57 +541,79 @@ def generate_autosummary_docs(sources: list[str], try: name, obj, parent, modname = import_by_name(entry.name) - qualname = name.replace(modname + ".", "") + qualname = name.replace(modname + '.', '') except ImportExceptionGroup as exc: try: # try to import as an instance attribute name, obj, parent, modname = import_ivar_by_name(entry.name) - qualname = name.replace(modname + ".", "") + qualname = name.replace(modname + '.', '') except ImportError as exc2: if exc2.__cause__: exceptions: list[BaseException] = [*exc.exceptions, exc2.__cause__] else: exceptions = [*exc.exceptions, exc2] - errors = list({f"* {type(e).__name__}: {e}" for e in exceptions}) - logger.warning(__('[autosummary] failed to import %s.\nPossible hints:\n%s'), - entry.name, '\n'.join(errors)) + errors = list({f'* {type(e).__name__}: {e}' for e in exceptions}) + logger.warning( + __('[autosummary] failed to import %s.\nPossible hints:\n%s'), + entry.name, + '\n'.join(errors), + ) continue - context: dict[str, Any] = {} - if app: - context.update(app.config.autosummary_context) - - content = generate_autosummary_content(name, obj, parent, template, entry.template, - imported_members, app, entry.recursive, context, - modname, qualname) - - filename = os.path.join(path, filename_map.get(name, name) + suffix) - if os.path.isfile(filename): - with open(filename, encoding=encoding) as f: + context: dict[str, Any] = {**app.config.autosummary_context} + + content = generate_autosummary_content( + name, + obj, + parent, + template, + entry.template, + imported_members, + app, + entry.recursive, + context, + modname, + qualname, + ) + + file_path = Path(path, filename_map.get(name, name) + suffix) + all_files.append(file_path) + if file_path.is_file(): + with file_path.open(encoding=encoding) as f: old_content = f.read() if content == old_content: continue if overwrite: # content has changed - with open(filename, 'w', encoding=encoding) as f: + with file_path.open('w', encoding=encoding) as f: f.write(content) - new_files.append(filename) + new_files.append(file_path) else: - with open(filename, 'w', encoding=encoding) as f: + with open(file_path, 'w', encoding=encoding) as f: f.write(content) - new_files.append(filename) + new_files.append(file_path) # descend recursively to new files if new_files: - generate_autosummary_docs(new_files, output_dir=output_dir, - suffix=suffix, base_path=base_path, - imported_members=imported_members, app=app, - overwrite=overwrite) + all_files.extend( + generate_autosummary_docs( + [str(f) for f in new_files], + output_dir=output_dir, + suffix=suffix, + base_path=base_path, + imported_members=imported_members, + app=app, + overwrite=overwrite, + ) + ) + + return all_files # -- Finding documented entries in files --------------------------------------- + def find_autosummary_in_files(filenames: list[str]) -> list[AutosummaryEntry]: """Find out what items are documented in source/*.rst. @@ -566,7 +628,8 @@ def find_autosummary_in_files(filenames: list[str]) -> list[AutosummaryEntry]: def find_autosummary_in_docstring( - name: str, filename: str | None = None, + name: str, + filename: str | None = None, ) -> list[AutosummaryEntry]: """Find out what items are documented in the given object's docstring. @@ -579,16 +642,21 @@ def find_autosummary_in_docstring( except AttributeError: pass except ImportExceptionGroup as exc: - errors = '\n'.join({f"* {type(e).__name__}: {e}" for e in exc.exceptions}) + errors = '\n'.join({f'* {type(e).__name__}: {e}' for e in exc.exceptions}) logger.warning(f'Failed to import {name}.\nPossible hints:\n{errors}') # NoQA: G004 except SystemExit: - logger.warning("Failed to import '%s'; the module executes module level " - 'statement and it might call sys.exit().', name) + logger.warning( + "Failed to import '%s'; the module executes module level " + 'statement and it might call sys.exit().', + name, + ) return [] def find_autosummary_in_lines( - lines: list[str], module: str | None = None, filename: str | None = None, + lines: list[str], + module: str | None = None, + filename: str | None = None, ) -> list[AutosummaryEntry]: """Find out what items appear in autosummary:: directives in the given lines. @@ -601,10 +669,8 @@ def find_autosummary_in_lines( corresponding options set. """ autosummary_re = re.compile(r'^(\s*)\.\.\s+autosummary::\s*') - automodule_re = re.compile( - r'^\s*\.\.\s+automodule::\s*([A-Za-z0-9_.]+)\s*$') - module_re = re.compile( - r'^\s*\.\.\s+(current)?module::\s*([a-zA-Z0-9_.]+)\s*$') + automodule_re = re.compile(r'^\s*\.\.\s+automodule::\s*([A-Za-z0-9_.]+)\s*$') + module_re = re.compile(r'^\s*\.\.\s+(current)?module::\s*([a-zA-Z0-9_.]+)\s*$') autosummary_item_re = re.compile(r'^\s+(~?[_a-zA-Z][a-zA-Z0-9_.]*)\s*.*?') recursive_arg_re = re.compile(r'^\s+:recursive:\s*$') toctree_arg_re = re.compile(r'^\s+:toctree:\s*(.*?)\s*$') @@ -617,7 +683,7 @@ def find_autosummary_in_lines( template = '' current_module = module in_autosummary = False - base_indent = "" + base_indent = '' for line in lines: if in_autosummary: @@ -630,8 +696,7 @@ def find_autosummary_in_lines( if m: toctree = m.group(1) if filename: - toctree = os.path.join(os.path.dirname(filename), - toctree) + toctree = os.path.join(os.path.dirname(filename), toctree) continue m = template_arg_re.match(line) @@ -647,13 +712,12 @@ def find_autosummary_in_lines( name = m.group(1).strip() if name.startswith('~'): name = name[1:] - if current_module and \ - not name.startswith(current_module + '.'): - name = f"{current_module}.{name}" + if current_module and not name.startswith(current_module + '.'): + name = f'{current_module}.{name}' documented.append(AutosummaryEntry(name, toctree, template, recursive)) continue - if not line.strip() or line.startswith(base_indent + " "): + if not line.strip() or line.startswith(base_indent + ' '): continue in_autosummary = False @@ -671,8 +735,7 @@ def find_autosummary_in_lines( if m: current_module = m.group(1).strip() # recurse into the automodule docstring - documented.extend(find_autosummary_in_docstring( - current_module, filename=filename)) + documented.extend(find_autosummary_in_docstring(current_module, filename=filename)) continue m = module_re.match(line) @@ -698,33 +761,69 @@ The format of the autosummary directive is documented in the ``sphinx.ext.autosummary`` Python module and can be read using:: pydoc sphinx.ext.autosummary -""")) - - parser.add_argument('--version', action='version', dest='show_version', - version='%%(prog)s %s' % __display_version__) - - parser.add_argument('source_file', nargs='+', - help=__('source files to generate rST files for')) - - parser.add_argument('-o', '--output-dir', action='store', - dest='output_dir', - help=__('directory to place all output in')) - parser.add_argument('-s', '--suffix', action='store', dest='suffix', - default='rst', - help=__('default suffix for files (default: ' - '%(default)s)')) - parser.add_argument('-t', '--templates', action='store', dest='templates', - default=None, - help=__('custom template directory (default: ' - '%(default)s)')) - parser.add_argument('-i', '--imported-members', action='store_true', - dest='imported_members', default=False, - help=__('document imported members (default: ' - '%(default)s)')) - parser.add_argument('-a', '--respect-module-all', action='store_true', - dest='respect_module_all', default=False, - help=__('document exactly the members in module __all__ attribute. ' - '(default: %(default)s)')) +"""), + ) + + parser.add_argument( + '--version', + action='version', + dest='show_version', + version='%%(prog)s %s' % __display_version__, + ) + + parser.add_argument( + 'source_file', nargs='+', help=__('source files to generate rST files for') + ) + + parser.add_argument( + '-o', + '--output-dir', + action='store', + dest='output_dir', + help=__('directory to place all output in'), + ) + parser.add_argument( + '-s', + '--suffix', + action='store', + dest='suffix', + default='rst', + help=__('default suffix for files (default: ' '%(default)s)'), + ) + parser.add_argument( + '-t', + '--templates', + action='store', + dest='templates', + default=None, + help=__('custom template directory (default: ' '%(default)s)'), + ) + parser.add_argument( + '-i', + '--imported-members', + action='store_true', + dest='imported_members', + default=False, + help=__('document imported members (default: ' '%(default)s)'), + ) + parser.add_argument( + '-a', + '--respect-module-all', + action='store_true', + dest='respect_module_all', + default=False, + help=__( + 'document exactly the members in module __all__ attribute. ' + '(default: %(default)s)' + ), + ) + parser.add_argument( + '--remove-old', + action='store_true', + dest='remove_old', + default=False, + help=__('Remove existing files in the output directory that were not generated'), + ) return parser @@ -740,14 +839,28 @@ def main(argv: Sequence[str] = (), /) -> None: if args.templates: app.config.templates_path.append(path.abspath(args.templates)) - app.config.autosummary_ignore_module_all = ( # type: ignore[attr-defined] - not args.respect_module_all + app.config.autosummary_ignore_module_all = not args.respect_module_all + + written_files = generate_autosummary_docs( + args.source_file, + args.output_dir, + '.' + args.suffix, + imported_members=args.imported_members, + app=app, # type: ignore[arg-type] ) - generate_autosummary_docs(args.source_file, args.output_dir, - '.' + args.suffix, - imported_members=args.imported_members, - app=app) + if args.remove_old: + for existing in Path(args.output_dir).glob(f'**/*.{args.suffix}'): + if existing not in written_files: + try: + existing.unlink() + except OSError as exc: + logger.warning( + __('Failed to remove %s: %s'), + existing, + exc.strerror, + type='autosummary', + ) if __name__ == '__main__': diff --git a/sphinx/ext/autosummary/templates/autosummary/module.rst b/sphinx/ext/autosummary/templates/autosummary/module.rst index e74c012..3ff0de9 100644 --- a/sphinx/ext/autosummary/templates/autosummary/module.rst +++ b/sphinx/ext/autosummary/templates/autosummary/module.rst @@ -3,7 +3,7 @@ .. automodule:: {{ fullname }} {% block attributes %} - {% if attributes %} + {%- if attributes %} .. rubric:: {{ _('Module Attributes') }} .. autosummary:: @@ -11,10 +11,10 @@ {{ item }} {%- endfor %} {% endif %} - {% endblock %} + {%- endblock %} - {% block functions %} - {% if functions %} + {%- block functions %} + {%- if functions %} .. rubric:: {{ _('Functions') }} .. autosummary:: @@ -22,10 +22,10 @@ {{ item }} {%- endfor %} {% endif %} - {% endblock %} + {%- endblock %} - {% block classes %} - {% if classes %} + {%- block classes %} + {%- if classes %} .. rubric:: {{ _('Classes') }} .. autosummary:: @@ -33,10 +33,10 @@ {{ item }} {%- endfor %} {% endif %} - {% endblock %} + {%- endblock %} - {% block exceptions %} - {% if exceptions %} + {%- block exceptions %} + {%- if exceptions %} .. rubric:: {{ _('Exceptions') }} .. autosummary:: @@ -44,10 +44,10 @@ {{ item }} {%- endfor %} {% endif %} - {% endblock %} + {%- endblock %} -{% block modules %} -{% if modules %} +{%- block modules %} +{%- if modules %} .. rubric:: Modules .. autosummary:: @@ -57,4 +57,4 @@ {{ item }} {%- endfor %} {% endif %} -{% endblock %} +{%- endblock %} diff --git a/sphinx/ext/coverage.py b/sphinx/ext/coverage.py index cfe0936..f7ce3be 100644 --- a/sphinx/ext/coverage.py +++ b/sphinx/ext/coverage.py @@ -9,6 +9,7 @@ from __future__ import annotations import glob import inspect import pickle +import pkgutil import re import sys from importlib import import_module @@ -23,7 +24,7 @@ from sphinx.util.console import red from sphinx.util.inspect import safe_getattr if TYPE_CHECKING: - from collections.abc import Iterator + from collections.abc import Iterable, Iterator, Sequence, Set from sphinx.application import Sphinx from sphinx.util.typing import ExtensionMetadata @@ -66,6 +67,93 @@ def _add_row(col_widths: list[int], columns: list[str], separator: str) -> Itera yield _add_line(col_widths, separator) +def _load_modules(mod_name: str, ignored_module_exps: Iterable[re.Pattern[str]]) -> Set[str]: + """Recursively load all submodules. + + :param mod_name: The name of a module to load submodules for. + :param ignored_module_exps: A list of regexes for modules to ignore. + :returns: A set of modules names including the provided module name, + ``mod_name`` + :raises ImportError: If the module indicated by ``mod_name`` could not be + loaded. + """ + if any(exp.match(mod_name) for exp in ignored_module_exps): + return set() + + # This can raise an exception, which must be handled by the caller. + mod = import_module(mod_name) + modules = {mod_name} + if mod.__spec__ is None: + return modules + + search_locations = mod.__spec__.submodule_search_locations + for (_, sub_mod_name, sub_mod_ispkg) in pkgutil.iter_modules(search_locations): + if sub_mod_name == '__main__': + continue + + if sub_mod_ispkg: + modules |= _load_modules(f'{mod_name}.{sub_mod_name}', ignored_module_exps) + else: + if any(exp.match(sub_mod_name) for exp in ignored_module_exps): + continue + modules.add(f'{mod_name}.{sub_mod_name}') + + return modules + + +def _determine_py_coverage_modules( + coverage_modules: Sequence[str], + seen_modules: Set[str], + ignored_module_exps: Iterable[re.Pattern[str]], + py_undoc: dict[str, dict[str, Any]], +) -> list[str]: + """Return a sorted list of modules to check for coverage. + + Figure out which of the two operating modes to use: + + - If 'coverage_modules' is not specified, we check coverage for all modules + seen in the documentation tree. Any objects found in these modules that are + not documented will be noted. This will therefore only identify missing + objects, but it requires no additional configuration. + + - If 'coverage_modules' is specified, we check coverage for all modules + specified in this configuration value. Any objects found in these modules + that are not documented will be noted. In addition, any objects from other + modules that are documented will be noted. This will therefore identify both + missing modules and missing objects, but it requires manual configuration. + """ + if not coverage_modules: + return sorted(seen_modules) + + modules: set[str] = set() + for mod_name in coverage_modules: + try: + modules |= _load_modules(mod_name, ignored_module_exps) + except ImportError as err: + # TODO(stephenfin): Define a subtype for all logs in this module + logger.warning(__('module %s could not be imported: %s'), mod_name, err) + py_undoc[mod_name] = {'error': err} + continue + + # if there are additional modules then we warn but continue scanning + if additional_modules := seen_modules - modules: + logger.warning( + __('the following modules are documented but were not specified ' + 'in coverage_modules: %s'), + ', '.join(additional_modules), + ) + + # likewise, if there are missing modules we warn but continue scanning + if missing_modules := modules - seen_modules: + logger.warning( + __('the following modules are specified in coverage_modules ' + 'but were not documented'), + ', '.join(missing_modules), + ) + + return sorted(modules) + + class CoverageBuilder(Builder): """ Evaluates coverage of code in the documentation. @@ -106,12 +194,12 @@ class CoverageBuilder(Builder): def write(self, *ignored: Any) -> None: self.py_undoc: dict[str, dict[str, Any]] = {} - self.py_undocumented: dict[str, set[str]] = {} - self.py_documented: dict[str, set[str]] = {} + self.py_undocumented: dict[str, Set[str]] = {} + self.py_documented: dict[str, Set[str]] = {} self.build_py_coverage() self.write_py_coverage() - self.c_undoc: dict[str, set[tuple[str, str]]] = {} + self.c_undoc: dict[str, Set[tuple[str, str]]] = {} self.build_c_coverage() self.write_c_coverage() @@ -169,11 +257,14 @@ class CoverageBuilder(Builder): ) def build_py_coverage(self) -> None: - objects = self.env.domaindata['py']['objects'] - modules = self.env.domaindata['py']['modules'] + seen_objects = frozenset(self.env.domaindata['py']['objects']) + seen_modules = frozenset(self.env.domaindata['py']['modules']) skip_undoc = self.config.coverage_skip_undoc_in_source + modules = _determine_py_coverage_modules( + self.config.coverage_modules, seen_modules, self.mod_ignorexps, self.py_undoc, + ) for mod_name in modules: ignore = False for exp in self.mod_ignorexps: @@ -213,7 +304,7 @@ class CoverageBuilder(Builder): continue if inspect.isfunction(obj): - if full_name not in objects: + if full_name not in seen_objects: for exp in self.fun_ignorexps: if exp.match(name): break @@ -229,7 +320,7 @@ class CoverageBuilder(Builder): if exp.match(name): break else: - if full_name not in objects: + if full_name not in seen_objects: if skip_undoc and not obj.__doc__: continue # not documented at all @@ -257,7 +348,7 @@ class CoverageBuilder(Builder): full_attr_name = f'{full_name}.{attr_name}' if self.ignore_pyobj(full_attr_name): continue - if full_attr_name not in objects: + if full_attr_name not in seen_objects: attrs.append(attr_name) undocumented_objects.add(full_attr_name) else: @@ -273,19 +364,17 @@ class CoverageBuilder(Builder): def _write_py_statistics(self, op: TextIO) -> None: """Outputs the table of ``op``.""" - all_modules = set(self.py_documented.keys()).union( - set(self.py_undocumented.keys())) - all_objects: set[str] = set() - all_documented_objects: set[str] = set() + all_modules = frozenset(self.py_documented.keys() | self.py_undocumented.keys()) + all_objects: Set[str] = set() + all_documented_objects: Set[str] = set() for module in all_modules: - all_module_objects = self.py_documented[module].union(self.py_undocumented[module]) - all_objects = all_objects.union(all_module_objects) - all_documented_objects = all_documented_objects.union(self.py_documented[module]) + all_objects |= self.py_documented[module] | self.py_undocumented[module] + all_documented_objects |= self.py_documented[module] # prepare tabular table = [['Module', 'Coverage', 'Undocumented']] - for module in all_modules: - module_objects = self.py_documented[module].union(self.py_undocumented[module]) + for module in sorted(all_modules): + module_objects = self.py_documented[module] | self.py_undocumented[module] if len(module_objects): value = 100.0 * len(self.py_documented[module]) / len(module_objects) else: @@ -391,6 +480,7 @@ class CoverageBuilder(Builder): def setup(app: Sphinx) -> ExtensionMetadata: app.add_builder(CoverageBuilder) + app.add_config_value('coverage_modules', (), '', types={tuple, list}) app.add_config_value('coverage_ignore_modules', [], '') app.add_config_value('coverage_ignore_functions', [], '') app.add_config_value('coverage_ignore_classes', [], '') diff --git a/sphinx/ext/duration.py b/sphinx/ext/duration.py index 2243579..1053856 100644 --- a/sphinx/ext/duration.py +++ b/sphinx/ext/duration.py @@ -13,10 +13,15 @@ from sphinx.locale import __ from sphinx.util import logging if TYPE_CHECKING: + from typing import TypedDict + from docutils import nodes from sphinx.application import Sphinx + class _DurationDomainData(TypedDict): + reading_durations: dict[str, float] + logger = logging.getLogger(__name__) @@ -38,9 +43,11 @@ class DurationDomain(Domain): def clear_doc(self, docname: str) -> None: self.reading_durations.pop(docname, None) - def merge_domaindata(self, docnames: list[str], otherdata: dict[str, float]) -> None: - for docname, duration in otherdata.items(): - if docname in docnames: + def merge_domaindata(self, docnames: list[str], otherdata: _DurationDomainData) -> None: # type: ignore[override] + other_reading_durations = otherdata.get('reading_durations', {}) + docnames_set = frozenset(docnames) + for docname, duration in other_reading_durations.items(): + if docname in docnames_set: self.reading_durations[docname] = duration diff --git a/sphinx/ext/extlinks.py b/sphinx/ext/extlinks.py index a880278..68c1385 100644 --- a/sphinx/ext/extlinks.py +++ b/sphinx/ext/extlinks.py @@ -91,9 +91,9 @@ class ExternalLinksChecker(SphinxPostTransform): def make_link_role(name: str, base_url: str, caption: str) -> RoleFunction: # Check whether we have base_url and caption strings have an '%s' for - # expansion. If not, fall back the the old behaviour and use the string as + # expansion. If not, fall back to the old behaviour and use the string as # a prefix. - # Remark: It is an implementation detail that we use Pythons %-formatting. + # Remark: It is an implementation detail that we use Python's %-formatting. # So far we only expose ``%s`` and require quoting of ``%`` using ``%%``. def role(typ: str, rawtext: str, text: str, lineno: int, inliner: Inliner, options: dict[str, Any] | None = None, @@ -108,6 +108,7 @@ def make_link_role(name: str, base_url: str, caption: str) -> RoleFunction: else: title = caption % part pnode = nodes.reference(title, title, internal=False, refuri=full_url) + pnode["classes"].append(f"extlink-{name}") return [pnode], [] return role diff --git a/sphinx/ext/graphviz.py b/sphinx/ext/graphviz.py index 9e6ce11..c2f0081 100644 --- a/sphinx/ext/graphviz.py +++ b/sphinx/ext/graphviz.py @@ -15,7 +15,7 @@ from typing import TYPE_CHECKING, Any, ClassVar from urllib.parse import urlsplit, urlunsplit from docutils import nodes -from docutils.parsers.rst import Directive, directives +from docutils.parsers.rst import directives import sphinx from sphinx.errors import SphinxError @@ -91,12 +91,12 @@ class graphviz(nodes.General, nodes.Inline, nodes.Element): pass -def figure_wrapper(directive: Directive, node: graphviz, caption: str) -> nodes.figure: +def figure_wrapper(directive: SphinxDirective, node: graphviz, caption: str) -> nodes.figure: figure_node = nodes.figure('', node) if 'align' in node: figure_node['align'] = node.attributes.pop('align') - inodes, messages = directive.state.inline_text(caption, directive.lineno) + inodes, messages = directive.parse_inline(caption) caption_node = nodes.caption(caption, '', *inodes) caption_node.extend(messages) set_source_info(directive, caption_node) diff --git a/sphinx/ext/ifconfig.py b/sphinx/ext/ifconfig.py index 398d669..17331a0 100644 --- a/sphinx/ext/ifconfig.py +++ b/sphinx/ext/ifconfig.py @@ -22,7 +22,6 @@ from docutils import nodes import sphinx from sphinx.util.docutils import SphinxDirective -from sphinx.util.nodes import nested_parse_with_titles if TYPE_CHECKING: from docutils.nodes import Node @@ -48,7 +47,7 @@ class IfConfig(SphinxDirective): node.document = self.state.document self.set_source_info(node) node['expr'] = self.arguments[0] - nested_parse_with_titles(self.state, self.content, node, self.content_offset) + node += self.parse_content_to_nodes(allow_section_headings=True) return [node] diff --git a/sphinx/ext/imgconverter.py b/sphinx/ext/imgconverter.py index 5a9fa30..e960dd2 100644 --- a/sphinx/ext/imgconverter.py +++ b/sphinx/ext/imgconverter.py @@ -26,6 +26,7 @@ class ImagemagickConverter(ImageConverter): ('image/gif', 'image/png'), ('application/pdf', 'image/png'), ('application/illustrator', 'image/png'), + ('image/webp', 'image/png'), ] def is_available(self) -> bool: diff --git a/sphinx/ext/imgmath.py b/sphinx/ext/imgmath.py index c640bc7..6f061f1 100644 --- a/sphinx/ext/imgmath.py +++ b/sphinx/ext/imgmath.py @@ -103,16 +103,17 @@ def generate_latex_macro(image_format: str, } if config.imgmath_use_preview: - template_name = 'preview.tex_t' + template_name = 'preview.tex' else: - template_name = 'template.tex_t' + template_name = 'template.tex' for template_dir in config.templates_path: - template = path.join(confdir, template_dir, template_name) - if path.exists(template): - return LaTeXRenderer().render(template, variables) + for template_suffix in ('.jinja', '_t'): + template = path.join(confdir, template_dir, template_name + template_suffix) + if path.exists(template): + return LaTeXRenderer().render(template, variables) - return LaTeXRenderer(templates_path).render(template_name, variables) + return LaTeXRenderer(templates_path).render(template_name + '.jinja', variables) def ensure_tempdir(builder: Builder) -> str: diff --git a/sphinx/ext/inheritance_diagram.py b/sphinx/ext/inheritance_diagram.py index b9e5137..785aef0 100644 --- a/sphinx/ext/inheritance_diagram.py +++ b/sphinx/ext/inheritance_diagram.py @@ -378,15 +378,15 @@ class InheritanceDiagram(SphinxDirective): aliases=self.config.inheritance_alias, top_classes=node['top-classes']) except InheritanceException as err: - return [node.document.reporter.warning(err, line=self.lineno)] # type: ignore[union-attr] + return [node.document.reporter.warning(err, line=self.lineno)] # Create xref nodes for each target of the graph's image map and # add them to the doc tree so that Sphinx can resolve the # references to real URLs later. These nodes will eventually be # removed from the doctree after we're done with them. for name in graph.get_all_class_names(): - refnodes, x = class_role( # type: ignore[call-arg,misc] - 'class', ':class:`%s`' % name, name, 0, self.state) + refnodes, x = class_role( # type: ignore[misc] + 'class', ':class:`%s`' % name, name, 0, self.state.inliner) node.extend(refnodes) # Store the graph object so we can use it to generate the # dot file later diff --git a/sphinx/ext/intersphinx.py b/sphinx/ext/intersphinx.py deleted file mode 100644 index a8a2cf1..0000000 --- a/sphinx/ext/intersphinx.py +++ /dev/null @@ -1,859 +0,0 @@ -"""Insert links to objects documented in remote Sphinx documentation. - -This works as follows: - -* Each Sphinx HTML build creates a file named "objects.inv" that contains a - mapping from object names to URIs relative to the HTML set's root. - -* Projects using the Intersphinx extension can specify links to such mapping - files in the `intersphinx_mapping` config value. The mapping will then be - used to resolve otherwise missing references to objects into links to the - other documentation. - -* By default, the mapping file is assumed to be at the same location as the - rest of the documentation; however, the location of the mapping file can - also be specified individually, e.g. if the docs should be buildable - without Internet access. -""" - -from __future__ import annotations - -import concurrent.futures -import functools -import posixpath -import re -import sys -import time -from os import path -from typing import TYPE_CHECKING, cast -from urllib.parse import urlsplit, urlunsplit - -from docutils import nodes -from docutils.utils import relative_path - -import sphinx -from sphinx.addnodes import pending_xref -from sphinx.builders.html import INVENTORY_FILENAME -from sphinx.deprecation import _deprecation_warning -from sphinx.errors import ExtensionError -from sphinx.locale import _, __ -from sphinx.transforms.post_transforms import ReferencesResolver -from sphinx.util import logging, requests -from sphinx.util.docutils import CustomReSTDispatcher, SphinxRole -from sphinx.util.inventory import InventoryFile - -if TYPE_CHECKING: - from collections.abc import Iterable - from types import ModuleType - from typing import IO, Any, Union - - from docutils.nodes import Node, TextElement, system_message - from docutils.utils import Reporter - - from sphinx.application import Sphinx - from sphinx.config import Config - from sphinx.domains import Domain - from sphinx.environment import BuildEnvironment - from sphinx.util.typing import ExtensionMetadata, Inventory, InventoryItem, RoleFunction - - InventoryCacheEntry = tuple[Union[str, None], int, Inventory] - -logger = logging.getLogger(__name__) - - -class InventoryAdapter: - """Inventory adapter for environment""" - - def __init__(self, env: BuildEnvironment) -> None: - self.env = env - - if not hasattr(env, 'intersphinx_cache'): - # initial storage when fetching inventories before processing - self.env.intersphinx_cache = {} # type: ignore[attr-defined] - - self.env.intersphinx_inventory = {} # type: ignore[attr-defined] - self.env.intersphinx_named_inventory = {} # type: ignore[attr-defined] - - @property - def cache(self) -> dict[str, InventoryCacheEntry]: - """Intersphinx cache. - - - Key is the URI of the remote inventory - - Element one is the key given in the Sphinx intersphinx_mapping - configuration value - - Element two is a time value for cache invalidation, a float - - Element three is the loaded remote inventory, type Inventory - """ - return self.env.intersphinx_cache # type: ignore[attr-defined] - - @property - def main_inventory(self) -> Inventory: - return self.env.intersphinx_inventory # type: ignore[attr-defined] - - @property - def named_inventory(self) -> dict[str, Inventory]: - return self.env.intersphinx_named_inventory # type: ignore[attr-defined] - - def clear(self) -> None: - self.env.intersphinx_inventory.clear() # type: ignore[attr-defined] - self.env.intersphinx_named_inventory.clear() # type: ignore[attr-defined] - - -def _strip_basic_auth(url: str) -> str: - """Returns *url* with basic auth credentials removed. Also returns the - basic auth username and password if they're present in *url*. - - E.g.: https://user:pass@example.com => https://example.com - - *url* need not include basic auth credentials. - - :param url: url which may or may not contain basic auth credentials - :type url: ``str`` - - :return: *url* with any basic auth creds removed - :rtype: ``str`` - """ - frags = list(urlsplit(url)) - # swap out "user[:pass]@hostname" for "hostname" - if '@' in frags[1]: - frags[1] = frags[1].split('@')[1] - return urlunsplit(frags) - - -def _read_from_url(url: str, *, config: Config) -> IO: - """Reads data from *url* with an HTTP *GET*. - - This function supports fetching from resources which use basic HTTP auth as - laid out by RFC1738 § 3.1. See § 5 for grammar definitions for URLs. - - .. seealso: - - https://www.ietf.org/rfc/rfc1738.txt - - :param url: URL of an HTTP resource - :type url: ``str`` - - :return: data read from resource described by *url* - :rtype: ``file``-like object - """ - r = requests.get(url, stream=True, timeout=config.intersphinx_timeout, - _user_agent=config.user_agent, - _tls_info=(config.tls_verify, config.tls_cacerts)) - r.raise_for_status() - r.raw.url = r.url - # decode content-body based on the header. - # ref: https://github.com/psf/requests/issues/2155 - r.raw.read = functools.partial(r.raw.read, decode_content=True) - return r.raw - - -def _get_safe_url(url: str) -> str: - """Gets version of *url* with basic auth passwords obscured. This function - returns results suitable for printing and logging. - - E.g.: https://user:12345@example.com => https://user@example.com - - :param url: a url - :type url: ``str`` - - :return: *url* with password removed - :rtype: ``str`` - """ - parts = urlsplit(url) - if parts.username is None: - return url - else: - frags = list(parts) - if parts.port: - frags[1] = f'{parts.username}@{parts.hostname}:{parts.port}' - else: - frags[1] = f'{parts.username}@{parts.hostname}' - - return urlunsplit(frags) - - -def fetch_inventory(app: Sphinx, uri: str, inv: str) -> Inventory: - """Fetch, parse and return an intersphinx inventory file.""" - # both *uri* (base URI of the links to generate) and *inv* (actual - # location of the inventory file) can be local or remote URIs - if '://' in uri: - # case: inv URI points to remote resource; strip any existing auth - uri = _strip_basic_auth(uri) - try: - if '://' in inv: - f = _read_from_url(inv, config=app.config) - else: - f = open(path.join(app.srcdir, inv), 'rb') # NoQA: SIM115 - except Exception as err: - err.args = ('intersphinx inventory %r not fetchable due to %s: %s', - inv, err.__class__, str(err)) - raise - try: - if hasattr(f, 'url'): - newinv = f.url - if inv != newinv: - logger.info(__('intersphinx inventory has moved: %s -> %s'), inv, newinv) - - if uri in (inv, path.dirname(inv), path.dirname(inv) + '/'): - uri = path.dirname(newinv) - with f: - try: - invdata = InventoryFile.load(f, uri, posixpath.join) - except ValueError as exc: - raise ValueError('unknown or unsupported inventory version: %r' % exc) from exc - except Exception as err: - err.args = ('intersphinx inventory %r not readable due to %s: %s', - inv, err.__class__.__name__, str(err)) - raise - else: - return invdata - - -def fetch_inventory_group( - name: str | None, - uri: str, - invs: tuple[str | None, ...], - cache: dict[str, InventoryCacheEntry], - app: Sphinx, - now: int, -) -> bool: - cache_time = now - app.config.intersphinx_cache_limit * 86400 - failures = [] - try: - for inv in invs: - if not inv: - inv = posixpath.join(uri, INVENTORY_FILENAME) - # decide whether the inventory must be read: always read local - # files; remote ones only if the cache time is expired - if '://' not in inv or uri not in cache or cache[uri][1] < cache_time: - safe_inv_url = _get_safe_url(inv) - logger.info(__('loading intersphinx inventory from %s...'), safe_inv_url) - try: - invdata = fetch_inventory(app, uri, inv) - except Exception as err: - failures.append(err.args) - continue - if invdata: - cache[uri] = name, now, invdata - return True - return False - finally: - if failures == []: - pass - elif len(failures) < len(invs): - logger.info(__("encountered some issues with some of the inventories," - " but they had working alternatives:")) - for fail in failures: - logger.info(*fail) - else: - issues = '\n'.join(f[0] % f[1:] for f in failures) - logger.warning(__("failed to reach any of the inventories " - "with the following issues:") + "\n" + issues) - - -def load_mappings(app: Sphinx) -> None: - """Load all intersphinx mappings into the environment.""" - now = int(time.time()) - inventories = InventoryAdapter(app.builder.env) - intersphinx_cache: dict[str, InventoryCacheEntry] = inventories.cache - - with concurrent.futures.ThreadPoolExecutor() as pool: - futures = [] - name: str | None - uri: str - invs: tuple[str | None, ...] - for name, (uri, invs) in app.config.intersphinx_mapping.values(): - futures.append(pool.submit( - fetch_inventory_group, name, uri, invs, intersphinx_cache, app, now, - )) - updated = [f.result() for f in concurrent.futures.as_completed(futures)] - - if any(updated): - inventories.clear() - - # Duplicate values in different inventories will shadow each - # other; which one will override which can vary between builds - # since they are specified using an unordered dict. To make - # it more consistent, we sort the named inventories and then - # add the unnamed inventories last. This means that the - # unnamed inventories will shadow the named ones but the named - # ones can still be accessed when the name is specified. - named_vals = [] - unnamed_vals = [] - for name, _expiry, invdata in intersphinx_cache.values(): - if name: - named_vals.append((name, invdata)) - else: - unnamed_vals.append((name, invdata)) - for name, invdata in sorted(named_vals) + unnamed_vals: - if name: - inventories.named_inventory[name] = invdata - for type, objects in invdata.items(): - inventories.main_inventory.setdefault(type, {}).update(objects) - - -def _create_element_from_result(domain: Domain, inv_name: str | None, - data: InventoryItem, - node: pending_xref, contnode: TextElement) -> nodes.reference: - proj, version, uri, dispname = data - if '://' not in uri and node.get('refdoc'): - # get correct path in case of subdirectories - uri = posixpath.join(relative_path(node['refdoc'], '.'), uri) - if version: - reftitle = _('(in %s v%s)') % (proj, version) - else: - reftitle = _('(in %s)') % (proj,) - newnode = nodes.reference('', '', internal=False, refuri=uri, reftitle=reftitle) - if node.get('refexplicit'): - # use whatever title was given - newnode.append(contnode) - elif dispname == '-' or \ - (domain.name == 'std' and node['reftype'] == 'keyword'): - # use whatever title was given, but strip prefix - title = contnode.astext() - if inv_name is not None and title.startswith(inv_name + ':'): - newnode.append(contnode.__class__(title[len(inv_name) + 1:], - title[len(inv_name) + 1:])) - else: - newnode.append(contnode) - else: - # else use the given display name (used for :ref:) - newnode.append(contnode.__class__(dispname, dispname)) - return newnode - - -def _resolve_reference_in_domain_by_target( - inv_name: str | None, inventory: Inventory, - domain: Domain, objtypes: Iterable[str], - target: str, - node: pending_xref, contnode: TextElement) -> nodes.reference | None: - for objtype in objtypes: - if objtype not in inventory: - # Continue if there's nothing of this kind in the inventory - continue - - if target in inventory[objtype]: - # Case sensitive match, use it - data = inventory[objtype][target] - elif objtype in {'std:label', 'std:term'}: - # Some types require case insensitive matches: - # * 'term': https://github.com/sphinx-doc/sphinx/issues/9291 - # * 'label': https://github.com/sphinx-doc/sphinx/issues/12008 - target_lower = target.lower() - insensitive_matches = list(filter(lambda k: k.lower() == target_lower, - inventory[objtype].keys())) - if insensitive_matches: - data = inventory[objtype][insensitive_matches[0]] - else: - # No case insensitive match either, continue to the next candidate - continue - else: - # Could reach here if we're not a term but have a case insensitive match. - # This is a fix for terms specifically, but potentially should apply to - # other types. - continue - return _create_element_from_result(domain, inv_name, data, node, contnode) - return None - - -def _resolve_reference_in_domain(env: BuildEnvironment, - inv_name: str | None, inventory: Inventory, - honor_disabled_refs: bool, - domain: Domain, objtypes: Iterable[str], - node: pending_xref, contnode: TextElement, - ) -> nodes.reference | None: - obj_types: dict[str, None] = {}.fromkeys(objtypes) - - # we adjust the object types for backwards compatibility - if domain.name == 'std' and 'cmdoption' in obj_types: - # cmdoptions were stored as std:option until Sphinx 1.6 - obj_types['option'] = None - if domain.name == 'py' and 'attribute' in obj_types: - # properties are stored as py:method since Sphinx 2.1 - obj_types['method'] = None - - # the inventory contains domain:type as objtype - domain_name = domain.name - obj_types = {f"{domain_name}:{obj_type}": None for obj_type in obj_types} - - # now that the objtypes list is complete we can remove the disabled ones - if honor_disabled_refs: - disabled = set(env.config.intersphinx_disabled_reftypes) - obj_types = {obj_type: None - for obj_type in obj_types - if obj_type not in disabled} - - objtypes = [*obj_types.keys()] - - # without qualification - res = _resolve_reference_in_domain_by_target(inv_name, inventory, domain, objtypes, - node['reftarget'], node, contnode) - if res is not None: - return res - - # try with qualification of the current scope instead - full_qualified_name = domain.get_full_qualified_name(node) - if full_qualified_name is None: - return None - return _resolve_reference_in_domain_by_target(inv_name, inventory, domain, objtypes, - full_qualified_name, node, contnode) - - -def _resolve_reference(env: BuildEnvironment, inv_name: str | None, inventory: Inventory, - honor_disabled_refs: bool, - node: pending_xref, contnode: TextElement) -> nodes.reference | None: - # disabling should only be done if no inventory is given - honor_disabled_refs = honor_disabled_refs and inv_name is None - - if honor_disabled_refs and '*' in env.config.intersphinx_disabled_reftypes: - return None - - typ = node['reftype'] - if typ == 'any': - for domain_name, domain in env.domains.items(): - if (honor_disabled_refs - and (domain_name + ":*") in env.config.intersphinx_disabled_reftypes): - continue - objtypes: Iterable[str] = domain.object_types.keys() - res = _resolve_reference_in_domain(env, inv_name, inventory, - honor_disabled_refs, - domain, objtypes, - node, contnode) - if res is not None: - return res - return None - else: - domain_name = node.get('refdomain') - if not domain_name: - # only objects in domains are in the inventory - return None - if honor_disabled_refs \ - and (domain_name + ":*") in env.config.intersphinx_disabled_reftypes: - return None - domain = env.get_domain(domain_name) - objtypes = domain.objtypes_for_role(typ) or () - if not objtypes: - return None - return _resolve_reference_in_domain(env, inv_name, inventory, - honor_disabled_refs, - domain, objtypes, - node, contnode) - - -def inventory_exists(env: BuildEnvironment, inv_name: str) -> bool: - return inv_name in InventoryAdapter(env).named_inventory - - -def resolve_reference_in_inventory(env: BuildEnvironment, - inv_name: str, - node: pending_xref, contnode: TextElement, - ) -> nodes.reference | None: - """Attempt to resolve a missing reference via intersphinx references. - - Resolution is tried in the given inventory with the target as is. - - Requires ``inventory_exists(env, inv_name)``. - """ - assert inventory_exists(env, inv_name) - return _resolve_reference(env, inv_name, InventoryAdapter(env).named_inventory[inv_name], - False, node, contnode) - - -def resolve_reference_any_inventory(env: BuildEnvironment, - honor_disabled_refs: bool, - node: pending_xref, contnode: TextElement, - ) -> nodes.reference | None: - """Attempt to resolve a missing reference via intersphinx references. - - Resolution is tried with the target as is in any inventory. - """ - return _resolve_reference(env, None, InventoryAdapter(env).main_inventory, - honor_disabled_refs, - node, contnode) - - -def resolve_reference_detect_inventory(env: BuildEnvironment, - node: pending_xref, contnode: TextElement, - ) -> nodes.reference | None: - """Attempt to resolve a missing reference via intersphinx references. - - Resolution is tried first with the target as is in any inventory. - If this does not succeed, then the target is split by the first ``:``, - to form ``inv_name:newtarget``. If ``inv_name`` is a named inventory, then resolution - is tried in that inventory with the new target. - """ - # ordinary direct lookup, use data as is - res = resolve_reference_any_inventory(env, True, node, contnode) - if res is not None: - return res - - # try splitting the target into 'inv_name:target' - target = node['reftarget'] - if ':' not in target: - return None - inv_name, newtarget = target.split(':', 1) - if not inventory_exists(env, inv_name): - return None - node['reftarget'] = newtarget - res_inv = resolve_reference_in_inventory(env, inv_name, node, contnode) - node['reftarget'] = target - return res_inv - - -def missing_reference(app: Sphinx, env: BuildEnvironment, node: pending_xref, - contnode: TextElement) -> nodes.reference | None: - """Attempt to resolve a missing reference via intersphinx references.""" - return resolve_reference_detect_inventory(env, node, contnode) - - -class IntersphinxDispatcher(CustomReSTDispatcher): - """Custom dispatcher for external role. - - This enables :external:***:/:external+***: roles on parsing reST document. - """ - - def role( - self, role_name: str, language_module: ModuleType, lineno: int, reporter: Reporter, - ) -> tuple[RoleFunction, list[system_message]]: - if len(role_name) > 9 and role_name.startswith(('external:', 'external+')): - return IntersphinxRole(role_name), [] - else: - return super().role(role_name, language_module, lineno, reporter) - - -class IntersphinxRole(SphinxRole): - # group 1: just for the optionality of the inventory name - # group 2: the inventory name (optional) - # group 3: the domain:role or role part - _re_inv_ref = re.compile(r"(\+([^:]+))?:(.*)") - - def __init__(self, orig_name: str) -> None: - self.orig_name = orig_name - - def run(self) -> tuple[list[Node], list[system_message]]: - assert self.name == self.orig_name.lower() - inventory, name_suffix = self.get_inventory_and_name_suffix(self.orig_name) - if inventory and not inventory_exists(self.env, inventory): - self._emit_warning( - __('inventory for external cross-reference not found: %r'), inventory - ) - return [], [] - - domain_name, role_name = self._get_domain_role(name_suffix) - - if role_name is None: - self._emit_warning( - __('invalid external cross-reference suffix: %r'), name_suffix - ) - return [], [] - - # attempt to find a matching role function - role_func: RoleFunction | None - - if domain_name is not None: - # the user specified a domain, so we only check that - if (domain := self.env.domains.get(domain_name)) is None: - self._emit_warning( - __('domain for external cross-reference not found: %r'), domain_name - ) - return [], [] - if (role_func := domain.roles.get(role_name)) is None: - msg = 'role for external cross-reference not found in domain %r: %r' - if ( - object_types := domain.object_types.get(role_name) - ) is not None and object_types.roles: - self._emit_warning( - __(f'{msg} (perhaps you meant one of: %s)'), - domain_name, - role_name, - self._concat_strings(object_types.roles), - ) - else: - self._emit_warning(__(msg), domain_name, role_name) - return [], [] - - else: - # the user did not specify a domain, - # so we check first the default (if available) then standard domains - domains: list[Domain] = [] - if default_domain := self.env.temp_data.get('default_domain'): - domains.append(default_domain) - if ( - std_domain := self.env.domains.get('std') - ) is not None and std_domain not in domains: - domains.append(std_domain) - - role_func = None - for domain in domains: - if (role_func := domain.roles.get(role_name)) is not None: - domain_name = domain.name - break - - if role_func is None or domain_name is None: - domains_str = self._concat_strings(d.name for d in domains) - msg = 'role for external cross-reference not found in domains %s: %r' - possible_roles: set[str] = set() - for d in domains: - if o := d.object_types.get(role_name): - possible_roles.update(f'{d.name}:{r}' for r in o.roles) - if possible_roles: - msg = f'{msg} (perhaps you meant one of: %s)' - self._emit_warning( - __(msg), - domains_str, - role_name, - self._concat_strings(possible_roles), - ) - else: - self._emit_warning(__(msg), domains_str, role_name) - return [], [] - - result, messages = role_func( - f'{domain_name}:{role_name}', - self.rawtext, - self.text, - self.lineno, - self.inliner, - self.options, - self.content, - ) - - for node in result: - if isinstance(node, pending_xref): - node['intersphinx'] = True - node['inventory'] = inventory - - return result, messages - - def get_inventory_and_name_suffix(self, name: str) -> tuple[str | None, str]: - """Extract an inventory name (if any) and ``domain+name`` suffix from a role *name*. - and the domain+name suffix. - - The role name is expected to be of one of the following forms: - - - ``external+inv:name`` -- explicit inventory and name, any domain. - - ``external+inv:domain:name`` -- explicit inventory, domain and name. - - ``external:name`` -- any inventory and domain, explicit name. - - ``external:domain:name`` -- any inventory, explicit domain and name. - """ - assert name.startswith('external'), name - suffix = name[9:] - if name[8] == '+': - inv_name, suffix = suffix.split(':', 1) - return inv_name, suffix - elif name[8] == ':': - return None, suffix - else: - msg = f'Malformed :external: role name: {name}' - raise ValueError(msg) - - def _get_domain_role(self, name: str) -> tuple[str | None, str | None]: - """Convert the *name* string into a domain and a role name. - - - If *name* contains no ``:``, return ``(None, name)``. - - If *name* contains a single ``:``, the domain/role is split on this. - - If *name* contains multiple ``:``, return ``(None, None)``. - """ - names = name.split(':') - if len(names) == 1: - return None, names[0] - elif len(names) == 2: - return names[0], names[1] - else: - return None, None - - def _emit_warning(self, msg: str, /, *args: Any) -> None: - logger.warning( - msg, - *args, - type='intersphinx', - subtype='external', - location=(self.env.docname, self.lineno), - ) - - def _concat_strings(self, strings: Iterable[str]) -> str: - return ', '.join(f'{s!r}' for s in sorted(strings)) - - # deprecated methods - - def get_role_name(self, name: str) -> tuple[str, str] | None: - _deprecation_warning( - __name__, f'{self.__class__.__name__}.get_role_name', '', remove=(9, 0) - ) - names = name.split(':') - if len(names) == 1: - # role - default_domain = self.env.temp_data.get('default_domain') - domain = default_domain.name if default_domain else None - role = names[0] - elif len(names) == 2: - # domain:role: - domain = names[0] - role = names[1] - else: - return None - - if domain and self.is_existent_role(domain, role): - return (domain, role) - elif self.is_existent_role('std', role): - return ('std', role) - else: - return None - - def is_existent_role(self, domain_name: str, role_name: str) -> bool: - _deprecation_warning( - __name__, f'{self.__class__.__name__}.is_existent_role', '', remove=(9, 0) - ) - try: - domain = self.env.get_domain(domain_name) - return role_name in domain.roles - except ExtensionError: - return False - - def invoke_role(self, role: tuple[str, str]) -> tuple[list[Node], list[system_message]]: - """Invoke the role described by a ``(domain, role name)`` pair.""" - _deprecation_warning( - __name__, f'{self.__class__.__name__}.invoke_role', '', remove=(9, 0) - ) - domain = self.env.get_domain(role[0]) - if domain: - role_func = domain.role(role[1]) - assert role_func is not None - - return role_func(':'.join(role), self.rawtext, self.text, self.lineno, - self.inliner, self.options, self.content) - else: - return [], [] - - -class IntersphinxRoleResolver(ReferencesResolver): - """pending_xref node resolver for intersphinx role. - - This resolves pending_xref nodes generated by :intersphinx:***: role. - """ - - default_priority = ReferencesResolver.default_priority - 1 - - def run(self, **kwargs: Any) -> None: - for node in self.document.findall(pending_xref): - if 'intersphinx' not in node: - continue - contnode = cast(nodes.TextElement, node[0].deepcopy()) - inv_name = node['inventory'] - if inv_name is not None: - assert inventory_exists(self.env, inv_name) - newnode = resolve_reference_in_inventory(self.env, inv_name, node, contnode) - else: - newnode = resolve_reference_any_inventory(self.env, False, node, contnode) - if newnode is None: - typ = node['reftype'] - msg = (__('external %s:%s reference target not found: %s') % - (node['refdomain'], typ, node['reftarget'])) - logger.warning(msg, location=node, type='ref', subtype=typ) - node.replace_self(contnode) - else: - node.replace_self(newnode) - - -def install_dispatcher(app: Sphinx, docname: str, source: list[str]) -> None: - """Enable IntersphinxDispatcher. - - .. note:: The installed dispatcher will be uninstalled on disabling sphinx_domain - automatically. - """ - dispatcher = IntersphinxDispatcher() - dispatcher.enable() - - -def normalize_intersphinx_mapping(app: Sphinx, config: Config) -> None: - for key, value in config.intersphinx_mapping.copy().items(): - try: - if isinstance(value, (list, tuple)): - # new format - name, (uri, inv) = key, value - if not isinstance(name, str): - logger.warning(__('intersphinx identifier %r is not string. Ignored'), - name) - config.intersphinx_mapping.pop(key) - continue - else: - # old format, no name - # xref RemovedInSphinx80Warning - name, uri, inv = None, key, value - msg = ( - "The pre-Sphinx 1.0 'intersphinx_mapping' format is " - "deprecated and will be removed in Sphinx 8. Update to the " - "current format as described in the documentation. " - f"Hint: \"intersphinx_mapping = {{'<name>': {(uri, inv)!r}}}\"." - "https://www.sphinx-doc.org/en/master/usage/extensions/intersphinx.html#confval-intersphinx_mapping" # NoQA: E501 - ) - logger.warning(msg) - - if not isinstance(inv, tuple): - config.intersphinx_mapping[key] = (name, (uri, (inv,))) - else: - config.intersphinx_mapping[key] = (name, (uri, inv)) - except Exception as exc: - logger.warning(__('Failed to read intersphinx_mapping[%s], ignored: %r'), key, exc) - config.intersphinx_mapping.pop(key) - - -def setup(app: Sphinx) -> ExtensionMetadata: - app.add_config_value('intersphinx_mapping', {}, 'env') - app.add_config_value('intersphinx_cache_limit', 5, '') - app.add_config_value('intersphinx_timeout', None, '') - app.add_config_value('intersphinx_disabled_reftypes', ['std:doc'], 'env') - app.connect('config-inited', normalize_intersphinx_mapping, priority=800) - app.connect('builder-inited', load_mappings) - app.connect('source-read', install_dispatcher) - app.connect('missing-reference', missing_reference) - app.add_post_transform(IntersphinxRoleResolver) - return { - 'version': sphinx.__display_version__, - 'env_version': 1, - 'parallel_read_safe': True, - } - - -def inspect_main(argv: list[str], /) -> int: - """Debug functionality to print out an inventory""" - if len(argv) < 1: - print("Print out an inventory file.\n" - "Error: must specify local path or URL to an inventory file.", - file=sys.stderr) - return 1 - - class MockConfig: - intersphinx_timeout: int | None = None - tls_verify = False - tls_cacerts: str | dict[str, str] | None = None - user_agent: str = '' - - class MockApp: - srcdir = '' - config = MockConfig() - - try: - filename = argv[0] - inv_data = fetch_inventory(MockApp(), '', filename) # type: ignore[arg-type] - for key in sorted(inv_data or {}): - print(key) - inv_entries = sorted(inv_data[key].items()) - for entry, (_proj, _ver, url_path, display_name) in inv_entries: - display_name = display_name * (display_name != '-') - print(f' {entry:<40} {display_name:<40}: {url_path}') - except ValueError as exc: - print(exc.args[0] % exc.args[1:], file=sys.stderr) - return 1 - except Exception as exc: - print(f'Unknown error: {exc!r}', file=sys.stderr) - return 1 - else: - return 0 - - -if __name__ == '__main__': - import logging as _logging - _logging.basicConfig() - - raise SystemExit(inspect_main(sys.argv[1:])) diff --git a/sphinx/ext/intersphinx/__init__.py b/sphinx/ext/intersphinx/__init__.py new file mode 100644 index 0000000..bcfcf0e --- /dev/null +++ b/sphinx/ext/intersphinx/__init__.py @@ -0,0 +1,81 @@ +"""Insert links to objects documented in remote Sphinx documentation. + +This works as follows: + +* Each Sphinx HTML build creates a file named "objects.inv" that contains a + mapping from object names to URIs relative to the HTML set's root. + +* Projects using the Intersphinx extension can specify links to such mapping + files in the `intersphinx_mapping` config value. The mapping will then be + used to resolve otherwise missing references to objects into links to the + other documentation. + +* By default, the mapping file is assumed to be at the same location as the + rest of the documentation; however, the location of the mapping file can + also be specified individually, e.g. if the docs should be buildable + without Internet access. +""" + +from __future__ import annotations + +__all__ = ( + 'InventoryAdapter', + 'fetch_inventory', + 'fetch_inventory_group', + 'load_mappings', + 'normalize_intersphinx_mapping', + 'IntersphinxRoleResolver', + 'inventory_exists', + 'install_dispatcher', + 'resolve_reference_in_inventory', + 'resolve_reference_any_inventory', + 'resolve_reference_detect_inventory', + 'missing_reference', + 'IntersphinxDispatcher', + 'IntersphinxRole', + 'inspect_main', +) + +from typing import TYPE_CHECKING + +import sphinx +from sphinx.ext.intersphinx._cli import inspect_main +from sphinx.ext.intersphinx._load import ( + fetch_inventory, + fetch_inventory_group, + load_mappings, + normalize_intersphinx_mapping, +) +from sphinx.ext.intersphinx._resolve import ( + IntersphinxDispatcher, + IntersphinxRole, + IntersphinxRoleResolver, + install_dispatcher, + inventory_exists, + missing_reference, + resolve_reference_any_inventory, + resolve_reference_detect_inventory, + resolve_reference_in_inventory, +) +from sphinx.ext.intersphinx._shared import InventoryAdapter + +if TYPE_CHECKING: + from sphinx.application import Sphinx + from sphinx.util.typing import ExtensionMetadata + + +def setup(app: Sphinx) -> ExtensionMetadata: + app.add_config_value('intersphinx_mapping', {}, 'env') + app.add_config_value('intersphinx_cache_limit', 5, '') + app.add_config_value('intersphinx_timeout', None, '') + app.add_config_value('intersphinx_disabled_reftypes', ['std:doc'], 'env') + app.connect('config-inited', normalize_intersphinx_mapping, priority=800) + app.connect('builder-inited', load_mappings) + app.connect('source-read', install_dispatcher) + app.connect('missing-reference', missing_reference) + app.add_post_transform(IntersphinxRoleResolver) + return { + 'version': sphinx.__display_version__, + 'env_version': 1, + 'parallel_read_safe': True, + } diff --git a/sphinx/ext/intersphinx/__main__.py b/sphinx/ext/intersphinx/__main__.py new file mode 100644 index 0000000..9b788d2 --- /dev/null +++ b/sphinx/ext/intersphinx/__main__.py @@ -0,0 +1,10 @@ +"""Command line interface for the intersphinx extension.""" + +import logging as _logging +import sys + +from sphinx.ext.intersphinx import inspect_main + +_logging.basicConfig() + +raise SystemExit(inspect_main(sys.argv[1:])) diff --git a/sphinx/ext/intersphinx/_cli.py b/sphinx/ext/intersphinx/_cli.py new file mode 100644 index 0000000..82d10de --- /dev/null +++ b/sphinx/ext/intersphinx/_cli.py @@ -0,0 +1,44 @@ +"""This module provides contains the code for intersphinx command-line utilities.""" + +from __future__ import annotations + +import sys + +from sphinx.ext.intersphinx._load import fetch_inventory + + +def inspect_main(argv: list[str], /) -> int: + """Debug functionality to print out an inventory""" + if len(argv) < 1: + print('Print out an inventory file.\n' + 'Error: must specify local path or URL to an inventory file.', + file=sys.stderr) + return 1 + + class MockConfig: + intersphinx_timeout: int | None = None + tls_verify = False + tls_cacerts: str | dict[str, str] | None = None + user_agent: str = '' + + class MockApp: + srcdir = '' + config = MockConfig() + + try: + filename = argv[0] + inv_data = fetch_inventory(MockApp(), '', filename) # type: ignore[arg-type] + for key in sorted(inv_data or {}): + print(key) + inv_entries = sorted(inv_data[key].items()) + for entry, (_proj, _ver, url_path, display_name) in inv_entries: + display_name = display_name * (display_name != '-') + print(f' {entry:<40} {display_name:<40}: {url_path}') + except ValueError as exc: + print(exc.args[0] % exc.args[1:], file=sys.stderr) + return 1 + except Exception as exc: + print(f'Unknown error: {exc!r}', file=sys.stderr) + return 1 + else: + return 0 diff --git a/sphinx/ext/intersphinx/_load.py b/sphinx/ext/intersphinx/_load.py new file mode 100644 index 0000000..b458d6a --- /dev/null +++ b/sphinx/ext/intersphinx/_load.py @@ -0,0 +1,253 @@ +"""This module contains the code for loading intersphinx inventories.""" + +from __future__ import annotations + +import concurrent.futures +import functools +import posixpath +import time +from os import path +from typing import TYPE_CHECKING +from urllib.parse import urlsplit, urlunsplit + +from sphinx.builders.html import INVENTORY_FILENAME +from sphinx.ext.intersphinx._shared import LOGGER, InventoryAdapter +from sphinx.locale import __ +from sphinx.util import requests +from sphinx.util.inventory import InventoryFile + +if TYPE_CHECKING: + from typing import IO + + from sphinx.application import Sphinx + from sphinx.config import Config + from sphinx.ext.intersphinx._shared import InventoryCacheEntry + from sphinx.util.typing import Inventory + + +def normalize_intersphinx_mapping(app: Sphinx, config: Config) -> None: + for key, value in config.intersphinx_mapping.copy().items(): + try: + if isinstance(value, (list, tuple)): + # new format + name, (uri, inv) = key, value + if not isinstance(name, str): + LOGGER.warning(__('intersphinx identifier %r is not string. Ignored'), + name) + config.intersphinx_mapping.pop(key) + continue + else: + # old format, no name + # xref RemovedInSphinx80Warning + name, uri, inv = None, key, value + msg = ( + "The pre-Sphinx 1.0 'intersphinx_mapping' format is " + 'deprecated and will be removed in Sphinx 8. Update to the ' + 'current format as described in the documentation. ' + f"Hint: `intersphinx_mapping = {{'<name>': {(uri, inv)!r}}}`." + 'https://www.sphinx-doc.org/en/master/usage/extensions/intersphinx.html#confval-intersphinx_mapping' # NoQA: E501 + ) + LOGGER.warning(msg) + + if not isinstance(inv, tuple): + config.intersphinx_mapping[key] = (name, (uri, (inv,))) + else: + config.intersphinx_mapping[key] = (name, (uri, inv)) + except Exception as exc: + LOGGER.warning(__('Failed to read intersphinx_mapping[%s], ignored: %r'), key, exc) + config.intersphinx_mapping.pop(key) + + +def load_mappings(app: Sphinx) -> None: + """Load all intersphinx mappings into the environment.""" + now = int(time.time()) + inventories = InventoryAdapter(app.builder.env) + intersphinx_cache: dict[str, InventoryCacheEntry] = inventories.cache + + with concurrent.futures.ThreadPoolExecutor() as pool: + futures = [] + name: str | None + uri: str + invs: tuple[str | None, ...] + for name, (uri, invs) in app.config.intersphinx_mapping.values(): + futures.append(pool.submit( + fetch_inventory_group, name, uri, invs, intersphinx_cache, app, now, + )) + updated = [f.result() for f in concurrent.futures.as_completed(futures)] + + if any(updated): + inventories.clear() + + # Duplicate values in different inventories will shadow each + # other; which one will override which can vary between builds + # since they are specified using an unordered dict. To make + # it more consistent, we sort the named inventories and then + # add the unnamed inventories last. This means that the + # unnamed inventories will shadow the named ones but the named + # ones can still be accessed when the name is specified. + named_vals = [] + unnamed_vals = [] + for name, _expiry, invdata in intersphinx_cache.values(): + if name: + named_vals.append((name, invdata)) + else: + unnamed_vals.append((name, invdata)) + for name, invdata in sorted(named_vals) + unnamed_vals: + if name: + inventories.named_inventory[name] = invdata + for type, objects in invdata.items(): + inventories.main_inventory.setdefault(type, {}).update(objects) + + +def fetch_inventory_group( + name: str | None, + uri: str, + invs: tuple[str | None, ...], + cache: dict[str, InventoryCacheEntry], + app: Sphinx, + now: int, +) -> bool: + cache_time = now - app.config.intersphinx_cache_limit * 86400 + failures = [] + try: + for inv in invs: + if not inv: + inv = posixpath.join(uri, INVENTORY_FILENAME) + # decide whether the inventory must be read: always read local + # files; remote ones only if the cache time is expired + if '://' not in inv or uri not in cache or cache[uri][1] < cache_time: + safe_inv_url = _get_safe_url(inv) + inv_descriptor = name or 'main_inventory' + LOGGER.info(__("loading intersphinx inventory '%s' from %s..."), + inv_descriptor, safe_inv_url) + try: + invdata = fetch_inventory(app, uri, inv) + except Exception as err: + failures.append(err.args) + continue + if invdata: + cache[uri] = name, now, invdata + return True + return False + finally: + if failures == []: + pass + elif len(failures) < len(invs): + LOGGER.info(__('encountered some issues with some of the inventories,' + ' but they had working alternatives:')) + for fail in failures: + LOGGER.info(*fail) + else: + issues = '\n'.join(f[0] % f[1:] for f in failures) + LOGGER.warning(__('failed to reach any of the inventories ' + 'with the following issues:') + '\n' + issues) + + +def fetch_inventory(app: Sphinx, uri: str, inv: str) -> Inventory: + """Fetch, parse and return an intersphinx inventory file.""" + # both *uri* (base URI of the links to generate) and *inv* (actual + # location of the inventory file) can be local or remote URIs + if '://' in uri: + # case: inv URI points to remote resource; strip any existing auth + uri = _strip_basic_auth(uri) + try: + if '://' in inv: + f = _read_from_url(inv, config=app.config) + else: + f = open(path.join(app.srcdir, inv), 'rb') # NoQA: SIM115 + except Exception as err: + err.args = ('intersphinx inventory %r not fetchable due to %s: %s', + inv, err.__class__, str(err)) + raise + try: + if hasattr(f, 'url'): + newinv = f.url + if inv != newinv: + LOGGER.info(__('intersphinx inventory has moved: %s -> %s'), inv, newinv) + + if uri in (inv, path.dirname(inv), path.dirname(inv) + '/'): + uri = path.dirname(newinv) + with f: + try: + invdata = InventoryFile.load(f, uri, posixpath.join) + except ValueError as exc: + raise ValueError('unknown or unsupported inventory version: %r' % exc) from exc + except Exception as err: + err.args = ('intersphinx inventory %r not readable due to %s: %s', + inv, err.__class__.__name__, str(err)) + raise + else: + return invdata + + +def _get_safe_url(url: str) -> str: + """Gets version of *url* with basic auth passwords obscured. This function + returns results suitable for printing and logging. + + E.g.: https://user:12345@example.com => https://user@example.com + + :param url: a url + :type url: ``str`` + + :return: *url* with password removed + :rtype: ``str`` + """ + parts = urlsplit(url) + if parts.username is None: + return url + else: + frags = list(parts) + if parts.port: + frags[1] = f'{parts.username}@{parts.hostname}:{parts.port}' + else: + frags[1] = f'{parts.username}@{parts.hostname}' + + return urlunsplit(frags) + + +def _strip_basic_auth(url: str) -> str: + """Returns *url* with basic auth credentials removed. Also returns the + basic auth username and password if they're present in *url*. + + E.g.: https://user:pass@example.com => https://example.com + + *url* need not include basic auth credentials. + + :param url: url which may or may not contain basic auth credentials + :type url: ``str`` + + :return: *url* with any basic auth creds removed + :rtype: ``str`` + """ + frags = list(urlsplit(url)) + # swap out 'user[:pass]@hostname' for 'hostname' + if '@' in frags[1]: + frags[1] = frags[1].split('@')[1] + return urlunsplit(frags) + + +def _read_from_url(url: str, *, config: Config) -> IO: + """Reads data from *url* with an HTTP *GET*. + + This function supports fetching from resources which use basic HTTP auth as + laid out by RFC1738 § 3.1. See § 5 for grammar definitions for URLs. + + .. seealso: + + https://www.ietf.org/rfc/rfc1738.txt + + :param url: URL of an HTTP resource + :type url: ``str`` + + :return: data read from resource described by *url* + :rtype: ``file``-like object + """ + r = requests.get(url, stream=True, timeout=config.intersphinx_timeout, + _user_agent=config.user_agent, + _tls_info=(config.tls_verify, config.tls_cacerts)) + r.raise_for_status() + r.raw.url = r.url + # decode content-body based on the header. + # ref: https://github.com/psf/requests/issues/2155 + r.raw.read = functools.partial(r.raw.read, decode_content=True) + return r.raw diff --git a/sphinx/ext/intersphinx/_resolve.py b/sphinx/ext/intersphinx/_resolve.py new file mode 100644 index 0000000..0a3cc89 --- /dev/null +++ b/sphinx/ext/intersphinx/_resolve.py @@ -0,0 +1,508 @@ +"""This module provides logic for resolving references to intersphinx targets.""" + +from __future__ import annotations + +import posixpath +import re +from typing import TYPE_CHECKING, cast + +from docutils import nodes +from docutils.utils import relative_path + +from sphinx.addnodes import pending_xref +from sphinx.deprecation import _deprecation_warning +from sphinx.errors import ExtensionError +from sphinx.ext.intersphinx._shared import LOGGER, InventoryAdapter +from sphinx.locale import _, __ +from sphinx.transforms.post_transforms import ReferencesResolver +from sphinx.util.docutils import CustomReSTDispatcher, SphinxRole + +if TYPE_CHECKING: + from collections.abc import Iterable + from types import ModuleType + from typing import Any + + from docutils.nodes import Node, TextElement, system_message + from docutils.utils import Reporter + + from sphinx.application import Sphinx + from sphinx.domains import Domain + from sphinx.environment import BuildEnvironment + from sphinx.util.typing import Inventory, InventoryItem, RoleFunction + + +def _create_element_from_result(domain: Domain, inv_name: str | None, + data: InventoryItem, + node: pending_xref, contnode: TextElement) -> nodes.reference: + proj, version, uri, dispname = data + if '://' not in uri and node.get('refdoc'): + # get correct path in case of subdirectories + uri = posixpath.join(relative_path(node['refdoc'], '.'), uri) + if version: + reftitle = _('(in %s v%s)') % (proj, version) + else: + reftitle = _('(in %s)') % (proj,) + newnode = nodes.reference('', '', internal=False, refuri=uri, reftitle=reftitle) + if node.get('refexplicit'): + # use whatever title was given + newnode.append(contnode) + elif dispname == '-' or (domain.name == 'std' and node['reftype'] == 'keyword'): + # use whatever title was given, but strip prefix + title = contnode.astext() + if inv_name is not None and title.startswith(inv_name + ':'): + newnode.append(contnode.__class__(title[len(inv_name) + 1:], + title[len(inv_name) + 1:])) + else: + newnode.append(contnode) + else: + # else use the given display name (used for :ref:) + newnode.append(contnode.__class__(dispname, dispname)) + return newnode + + +def _resolve_reference_in_domain_by_target( + inv_name: str | None, inventory: Inventory, + domain: Domain, objtypes: Iterable[str], + target: str, + node: pending_xref, contnode: TextElement) -> nodes.reference | None: + for objtype in objtypes: + if objtype not in inventory: + # Continue if there's nothing of this kind in the inventory + continue + + if target in inventory[objtype]: + # Case sensitive match, use it + data = inventory[objtype][target] + elif objtype in {'std:label', 'std:term'}: + # Some types require case insensitive matches: + # * 'term': https://github.com/sphinx-doc/sphinx/issues/9291 + # * 'label': https://github.com/sphinx-doc/sphinx/issues/12008 + target_lower = target.lower() + insensitive_matches = list(filter(lambda k: k.lower() == target_lower, + inventory[objtype].keys())) + if len(insensitive_matches) > 1: + inv_descriptor = inv_name or 'main_inventory' + LOGGER.warning(__("inventory '%s': multiple matches found for %s:%s"), + inv_descriptor, objtype, target, + type='intersphinx', subtype='external', location=node) + if insensitive_matches: + data = inventory[objtype][insensitive_matches[0]] + else: + # No case insensitive match either, continue to the next candidate + continue + else: + # Could reach here if we're not a term but have a case insensitive match. + # This is a fix for terms specifically, but potentially should apply to + # other types. + continue + return _create_element_from_result(domain, inv_name, data, node, contnode) + return None + + +def _resolve_reference_in_domain(env: BuildEnvironment, + inv_name: str | None, inventory: Inventory, + honor_disabled_refs: bool, + domain: Domain, objtypes: Iterable[str], + node: pending_xref, contnode: TextElement, + ) -> nodes.reference | None: + obj_types: dict[str, None] = {}.fromkeys(objtypes) + + # we adjust the object types for backwards compatibility + if domain.name == 'std' and 'cmdoption' in obj_types: + # cmdoptions were stored as std:option until Sphinx 1.6 + obj_types['option'] = None + if domain.name == 'py' and 'attribute' in obj_types: + # properties are stored as py:method since Sphinx 2.1 + obj_types['method'] = None + + # the inventory contains domain:type as objtype + domain_name = domain.name + obj_types = {f'{domain_name}:{obj_type}': None for obj_type in obj_types} + + # now that the objtypes list is complete we can remove the disabled ones + if honor_disabled_refs: + disabled = set(env.config.intersphinx_disabled_reftypes) + obj_types = {obj_type: None + for obj_type in obj_types + if obj_type not in disabled} + + objtypes = [*obj_types.keys()] + + # without qualification + res = _resolve_reference_in_domain_by_target(inv_name, inventory, domain, objtypes, + node['reftarget'], node, contnode) + if res is not None: + return res + + # try with qualification of the current scope instead + full_qualified_name = domain.get_full_qualified_name(node) + if full_qualified_name is None: + return None + return _resolve_reference_in_domain_by_target(inv_name, inventory, domain, objtypes, + full_qualified_name, node, contnode) + + +def _resolve_reference(env: BuildEnvironment, inv_name: str | None, inventory: Inventory, + honor_disabled_refs: bool, + node: pending_xref, contnode: TextElement) -> nodes.reference | None: + # disabling should only be done if no inventory is given + honor_disabled_refs = honor_disabled_refs and inv_name is None + + if honor_disabled_refs and '*' in env.config.intersphinx_disabled_reftypes: + return None + + typ = node['reftype'] + if typ == 'any': + for domain_name, domain in env.domains.items(): + if (honor_disabled_refs + and (domain_name + ':*') in env.config.intersphinx_disabled_reftypes): + continue + objtypes: Iterable[str] = domain.object_types.keys() + res = _resolve_reference_in_domain(env, inv_name, inventory, + honor_disabled_refs, + domain, objtypes, + node, contnode) + if res is not None: + return res + return None + else: + domain_name = node.get('refdomain') + if not domain_name: + # only objects in domains are in the inventory + return None + if (honor_disabled_refs + and (domain_name + ':*') in env.config.intersphinx_disabled_reftypes): + return None + domain = env.get_domain(domain_name) + objtypes = domain.objtypes_for_role(typ) or () + if not objtypes: + return None + return _resolve_reference_in_domain(env, inv_name, inventory, + honor_disabled_refs, + domain, objtypes, + node, contnode) + + +def inventory_exists(env: BuildEnvironment, inv_name: str) -> bool: + return inv_name in InventoryAdapter(env).named_inventory + + +def resolve_reference_in_inventory(env: BuildEnvironment, + inv_name: str, + node: pending_xref, contnode: TextElement, + ) -> nodes.reference | None: + """Attempt to resolve a missing reference via intersphinx references. + + Resolution is tried in the given inventory with the target as is. + + Requires ``inventory_exists(env, inv_name)``. + """ + assert inventory_exists(env, inv_name) + return _resolve_reference(env, inv_name, InventoryAdapter(env).named_inventory[inv_name], + False, node, contnode) + + +def resolve_reference_any_inventory(env: BuildEnvironment, + honor_disabled_refs: bool, + node: pending_xref, contnode: TextElement, + ) -> nodes.reference | None: + """Attempt to resolve a missing reference via intersphinx references. + + Resolution is tried with the target as is in any inventory. + """ + return _resolve_reference(env, None, InventoryAdapter(env).main_inventory, + honor_disabled_refs, + node, contnode) + + +def resolve_reference_detect_inventory(env: BuildEnvironment, + node: pending_xref, contnode: TextElement, + ) -> nodes.reference | None: + """Attempt to resolve a missing reference via intersphinx references. + + Resolution is tried first with the target as is in any inventory. + If this does not succeed, then the target is split by the first ``:``, + to form ``inv_name:newtarget``. If ``inv_name`` is a named inventory, then resolution + is tried in that inventory with the new target. + """ + # ordinary direct lookup, use data as is + res = resolve_reference_any_inventory(env, True, node, contnode) + if res is not None: + return res + + # try splitting the target into 'inv_name:target' + target = node['reftarget'] + if ':' not in target: + return None + inv_name, newtarget = target.split(':', 1) + if not inventory_exists(env, inv_name): + return None + node['reftarget'] = newtarget + res_inv = resolve_reference_in_inventory(env, inv_name, node, contnode) + node['reftarget'] = target + return res_inv + + +def missing_reference(app: Sphinx, env: BuildEnvironment, node: pending_xref, + contnode: TextElement) -> nodes.reference | None: + """Attempt to resolve a missing reference via intersphinx references.""" + return resolve_reference_detect_inventory(env, node, contnode) + + +class IntersphinxDispatcher(CustomReSTDispatcher): + """Custom dispatcher for external role. + + This enables :external:***:/:external+***: roles on parsing reST document. + """ + + def role( + self, role_name: str, language_module: ModuleType, lineno: int, reporter: Reporter, + ) -> tuple[RoleFunction, list[system_message]]: + if len(role_name) > 9 and role_name.startswith(('external:', 'external+')): + return IntersphinxRole(role_name), [] + else: + return super().role(role_name, language_module, lineno, reporter) + + +class IntersphinxRole(SphinxRole): + # group 1: just for the optionality of the inventory name + # group 2: the inventory name (optional) + # group 3: the domain:role or role part + _re_inv_ref = re.compile(r'(\+([^:]+))?:(.*)') + + def __init__(self, orig_name: str) -> None: + self.orig_name = orig_name + + def run(self) -> tuple[list[Node], list[system_message]]: + assert self.name == self.orig_name.lower() + inventory, name_suffix = self.get_inventory_and_name_suffix(self.orig_name) + if inventory and not inventory_exists(self.env, inventory): + self._emit_warning( + __('inventory for external cross-reference not found: %r'), inventory + ) + return [], [] + + domain_name, role_name = self._get_domain_role(name_suffix) + + if role_name is None: + self._emit_warning( + __('invalid external cross-reference suffix: %r'), name_suffix + ) + return [], [] + + # attempt to find a matching role function + role_func: RoleFunction | None + + if domain_name is not None: + # the user specified a domain, so we only check that + if (domain := self.env.domains.get(domain_name)) is None: + self._emit_warning( + __('domain for external cross-reference not found: %r'), domain_name + ) + return [], [] + if (role_func := domain.roles.get(role_name)) is None: + msg = 'role for external cross-reference not found in domain %r: %r' + if ( + object_types := domain.object_types.get(role_name) + ) is not None and object_types.roles: + self._emit_warning( + __(f'{msg} (perhaps you meant one of: %s)'), + domain_name, + role_name, + self._concat_strings(object_types.roles), + ) + else: + self._emit_warning(__(msg), domain_name, role_name) + return [], [] + + else: + # the user did not specify a domain, + # so we check first the default (if available) then standard domains + domains: list[Domain] = [] + if default_domain := self.env.temp_data.get('default_domain'): + domains.append(default_domain) + if ( + std_domain := self.env.domains.get('std') + ) is not None and std_domain not in domains: + domains.append(std_domain) + + role_func = None + for domain in domains: + if (role_func := domain.roles.get(role_name)) is not None: + domain_name = domain.name + break + + if role_func is None or domain_name is None: + domains_str = self._concat_strings(d.name for d in domains) + msg = 'role for external cross-reference not found in domains %s: %r' + possible_roles: set[str] = set() + for d in domains: + if o := d.object_types.get(role_name): + possible_roles.update(f'{d.name}:{r}' for r in o.roles) + if possible_roles: + msg = f'{msg} (perhaps you meant one of: %s)' + self._emit_warning( + __(msg), + domains_str, + role_name, + self._concat_strings(possible_roles), + ) + else: + self._emit_warning(__(msg), domains_str, role_name) + return [], [] + + result, messages = role_func( + f'{domain_name}:{role_name}', + self.rawtext, + self.text, + self.lineno, + self.inliner, + self.options, + self.content, + ) + + for node in result: + if isinstance(node, pending_xref): + node['intersphinx'] = True + node['inventory'] = inventory + + return result, messages + + def get_inventory_and_name_suffix(self, name: str) -> tuple[str | None, str]: + """Extract an inventory name (if any) and ``domain+name`` suffix from a role *name*. + and the domain+name suffix. + + The role name is expected to be of one of the following forms: + + - ``external+inv:name`` -- explicit inventory and name, any domain. + - ``external+inv:domain:name`` -- explicit inventory, domain and name. + - ``external:name`` -- any inventory and domain, explicit name. + - ``external:domain:name`` -- any inventory, explicit domain and name. + """ + assert name.startswith('external'), name + suffix = name[9:] + if name[8] == '+': + inv_name, suffix = suffix.split(':', 1) + return inv_name, suffix + elif name[8] == ':': + return None, suffix + else: + msg = f'Malformed :external: role name: {name}' + raise ValueError(msg) + + def _get_domain_role(self, name: str) -> tuple[str | None, str | None]: + """Convert the *name* string into a domain and a role name. + + - If *name* contains no ``:``, return ``(None, name)``. + - If *name* contains a single ``:``, the domain/role is split on this. + - If *name* contains multiple ``:``, return ``(None, None)``. + """ + names = name.split(':') + if len(names) == 1: + return None, names[0] + elif len(names) == 2: + return names[0], names[1] + else: + return None, None + + def _emit_warning(self, msg: str, /, *args: Any) -> None: + LOGGER.warning( + msg, + *args, + type='intersphinx', + subtype='external', + location=(self.env.docname, self.lineno), + ) + + def _concat_strings(self, strings: Iterable[str]) -> str: + return ', '.join(f'{s!r}' for s in sorted(strings)) + + # deprecated methods + + def get_role_name(self, name: str) -> tuple[str, str] | None: + _deprecation_warning( + __name__, f'{self.__class__.__name__}.get_role_name', '', remove=(9, 0) + ) + names = name.split(':') + if len(names) == 1: + # role + default_domain = self.env.temp_data.get('default_domain') + domain = default_domain.name if default_domain else None + role = names[0] + elif len(names) == 2: + # domain:role: + domain = names[0] + role = names[1] + else: + return None + + if domain and self.is_existent_role(domain, role): + return (domain, role) + elif self.is_existent_role('std', role): + return ('std', role) + else: + return None + + def is_existent_role(self, domain_name: str, role_name: str) -> bool: + _deprecation_warning( + __name__, f'{self.__class__.__name__}.is_existent_role', '', remove=(9, 0) + ) + try: + domain = self.env.get_domain(domain_name) + return role_name in domain.roles + except ExtensionError: + return False + + def invoke_role(self, role: tuple[str, str]) -> tuple[list[Node], list[system_message]]: + """Invoke the role described by a ``(domain, role name)`` pair.""" + _deprecation_warning( + __name__, f'{self.__class__.__name__}.invoke_role', '', remove=(9, 0) + ) + domain = self.env.get_domain(role[0]) + if domain: + role_func = domain.role(role[1]) + assert role_func is not None + + return role_func(':'.join(role), self.rawtext, self.text, self.lineno, + self.inliner, self.options, self.content) + else: + return [], [] + + +class IntersphinxRoleResolver(ReferencesResolver): + """pending_xref node resolver for intersphinx role. + + This resolves pending_xref nodes generated by :intersphinx:***: role. + """ + + default_priority = ReferencesResolver.default_priority - 1 + + def run(self, **kwargs: Any) -> None: + for node in self.document.findall(pending_xref): + if 'intersphinx' not in node: + continue + contnode = cast(nodes.TextElement, node[0].deepcopy()) + inv_name = node['inventory'] + if inv_name is not None: + assert inventory_exists(self.env, inv_name) + newnode = resolve_reference_in_inventory(self.env, inv_name, node, contnode) + else: + newnode = resolve_reference_any_inventory(self.env, False, node, contnode) + if newnode is None: + typ = node['reftype'] + msg = (__('external %s:%s reference target not found: %s') % + (node['refdomain'], typ, node['reftarget'])) + LOGGER.warning(msg, location=node, type='ref', subtype=typ) + node.replace_self(contnode) + else: + node.replace_self(newnode) + + +def install_dispatcher(app: Sphinx, docname: str, source: list[str]) -> None: + """Enable IntersphinxDispatcher. + + .. note:: The installed dispatcher will be uninstalled on disabling sphinx_domain + automatically. + """ + dispatcher = IntersphinxDispatcher() + dispatcher.enable() diff --git a/sphinx/ext/intersphinx/_shared.py b/sphinx/ext/intersphinx/_shared.py new file mode 100644 index 0000000..f2f5244 --- /dev/null +++ b/sphinx/ext/intersphinx/_shared.py @@ -0,0 +1,53 @@ +"""This module contains code shared between intersphinx modules.""" + +from __future__ import annotations + +from typing import TYPE_CHECKING, Final, Union + +from sphinx.util import logging + +if TYPE_CHECKING: + from sphinx.environment import BuildEnvironment + from sphinx.util.typing import Inventory + + InventoryCacheEntry = tuple[Union[str, None], int, Inventory] + +LOGGER: Final[logging.SphinxLoggerAdapter] = logging.getLogger('sphinx.ext.intersphinx') + + +class InventoryAdapter: + """Inventory adapter for environment""" + + def __init__(self, env: BuildEnvironment) -> None: + self.env = env + + if not hasattr(env, 'intersphinx_cache'): + # initial storage when fetching inventories before processing + self.env.intersphinx_cache = {} # type: ignore[attr-defined] + + self.env.intersphinx_inventory = {} # type: ignore[attr-defined] + self.env.intersphinx_named_inventory = {} # type: ignore[attr-defined] + + @property + def cache(self) -> dict[str, InventoryCacheEntry]: + """Intersphinx cache. + + - Key is the URI of the remote inventory + - Element one is the key given in the Sphinx intersphinx_mapping + configuration value + - Element two is a time value for cache invalidation, a float + - Element three is the loaded remote inventory, type Inventory + """ + return self.env.intersphinx_cache # type: ignore[attr-defined] + + @property + def main_inventory(self) -> Inventory: + return self.env.intersphinx_inventory # type: ignore[attr-defined] + + @property + def named_inventory(self) -> dict[str, Inventory]: + return self.env.intersphinx_named_inventory # type: ignore[attr-defined] + + def clear(self) -> None: + self.env.intersphinx_inventory.clear() # type: ignore[attr-defined] + self.env.intersphinx_named_inventory.clear() # type: ignore[attr-defined] diff --git a/sphinx/ext/mathjax.py b/sphinx/ext/mathjax.py index 24109ee..ccb70ec 100644 --- a/sphinx/ext/mathjax.py +++ b/sphinx/ext/mathjax.py @@ -25,7 +25,7 @@ if TYPE_CHECKING: from sphinx.writers.html import HTML5Translator # more information for mathjax secure url is here: -# https://docs.mathjax.org/en/latest/start.html#secure-access-to-the-cdn +# https://docs.mathjax.org/en/latest/web/start.html#using-mathjax-from-a-content-delivery-network-cdn MATHJAX_URL = 'https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js' logger = sphinx.util.logging.getLogger(__name__) diff --git a/sphinx/ext/todo.py b/sphinx/ext/todo.py index 1962328..b3069be 100644 --- a/sphinx/ext/todo.py +++ b/sphinx/ext/todo.py @@ -209,19 +209,23 @@ def depart_todo_node(self: HTML5Translator, node: todo_node) -> None: def latex_visit_todo_node(self: LaTeXTranslator, node: todo_node) -> None: if self.config.todo_include_todos: - self.body.append('\n\\begin{sphinxadmonition}{note}{') + self.body.append('\n\\begin{sphinxtodo}{') self.body.append(self.hypertarget_to(node)) title_node = cast(nodes.title, node[0]) title = texescape.escape(title_node.astext(), self.config.latex_engine) self.body.append('%s:}' % title) + self.no_latex_floats += 1 + if self.table: + self.table.has_problematic = True node.pop(0) else: raise nodes.SkipNode def latex_depart_todo_node(self: LaTeXTranslator, node: todo_node) -> None: - self.body.append('\\end{sphinxadmonition}\n') + self.body.append('\\end{sphinxtodo}\n') + self.no_latex_floats -= 1 def setup(app: Sphinx) -> ExtensionMetadata: diff --git a/sphinx/io.py b/sphinx/io.py index 459d250..b46c900 100644 --- a/sphinx/io.py +++ b/sphinx/io.py @@ -4,8 +4,6 @@ from __future__ import annotations from typing import TYPE_CHECKING, Any -import docutils -from docutils import nodes from docutils.core import Publisher from docutils.io import FileInput, Input, NullOutput from docutils.readers import standalone @@ -25,6 +23,7 @@ from sphinx.util.docutils import LoggingReporter from sphinx.versioning import UIDTransform if TYPE_CHECKING: + from docutils import nodes from docutils.frontend import Values from docutils.parsers import Parser from docutils.transforms import Transform @@ -191,8 +190,5 @@ def create_publisher(app: Sphinx, filetype: str) -> Publisher: # Propagate exceptions by default when used programmatically: defaults = {'traceback': True, **app.env.settings} # Set default settings - if docutils.__version_info__[:2] >= (0, 19): - pub.get_settings(**defaults) - else: - pub.settings = pub.setup_option_parser(**defaults).get_default_values() + pub.get_settings(**defaults) return pub diff --git a/sphinx/locale/__init__.py b/sphinx/locale/__init__.py index f464b4c..81850bf 100644 --- a/sphinx/locale/__init__.py +++ b/sphinx/locale/__init__.py @@ -114,11 +114,7 @@ def init( translator = None if language: - if '_' in language: - # for language having country code (like "de_AT") - languages: list[str] | None = [language, language.split('_')[0]] - else: - languages = [language] + languages: list[str] | None = [language] else: languages = None diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.js b/sphinx/locale/ar/LC_MESSAGES/sphinx.js index 072ade6..c3cd03a 100644 --- a/sphinx/locale/ar/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/ar/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "", "Hide Search Matches": "", "Index": "", - "Index – %(key)s": "", + "Index – %(key)s": "", "Index pages by letter": "", "Indices and tables:": "", "Last updated on %(last_updated)s.": "", diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.mo b/sphinx/locale/ar/LC_MESSAGES/sphinx.mo index fe533f2..eb24ad6 100644 Binary files a/sphinx/locale/ar/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ar/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.po b/sphinx/locale/ar/LC_MESSAGES/sphinx.po index 9595618..cf7df2f 100644 --- a/sphinx/locale/ar/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ar/LC_MESSAGES/sphinx.po @@ -9,134 +9,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-14 04:28+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Abdullah ahmed <Alhadab@hotmail.co.uk>, 2020\n" "Language-Team: Arabic (http://app.transifex.com/sphinx-doc/sphinx-1/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: sphinx/application.py:157 +#: sphinx/application.py:179 #, python-format msgid "Cannot find source directory (%s)" msgstr "لا يمكن العثور على المجلد المصدر (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:183 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:187 msgid "Source directory and destination directory cannot be identical" msgstr "لا يمكن ان يكون المجلد المصدر والمجلد الهدف متطابقين" -#: sphinx/application.py:197 +#: sphinx/application.py:219 #, python-format msgid "Running Sphinx v%s" msgstr "تشغيل Sphinx v%s" -#: sphinx/application.py:219 +#: sphinx/application.py:241 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "يحتاج هذا المشروع على الاقل الى الاصدار %s من Sphinx وبالتالي لا يمكن بناءه باستخدام الاصدار الحالي" -#: sphinx/application.py:235 +#: sphinx/application.py:257 msgid "making output directory" msgstr "" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:262 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:268 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:303 #, python-format msgid "loading translations [%s]... " msgstr "تحميل الترجمات [ %s ]" -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:320 sphinx/util/display.py:87 msgid "done" msgstr "تم" -#: sphinx/application.py:296 +#: sphinx/application.py:322 msgid "not available for built-in messages" msgstr "غير متوفرة للرسائل الافتراضية المدمجة" -#: sphinx/application.py:310 +#: sphinx/application.py:336 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:344 #, python-format msgid "failed: %s" msgstr "فشل: %s" -#: sphinx/application.py:332 +#: sphinx/application.py:357 msgid "No builder selected, using default: html" msgstr "لم يتم اختيار نوع البناء، تم استخدام نوع البناء الافتراضي: html" -#: sphinx/application.py:365 +#: sphinx/application.py:390 msgid "succeeded" msgstr "نجح" -#: sphinx/application.py:366 +#: sphinx/application.py:391 msgid "finished with problems" msgstr "انتهى مع وجود مشاكل" -#: sphinx/application.py:370 +#: sphinx/application.py:395 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:400 #, python-format msgid "build %s, %s warning." msgstr "بناء %s، %sتحذير." -#: sphinx/application.py:377 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:406 #, python-format msgid "build %s." msgstr "بناء %s." -#: sphinx/application.py:610 +#: sphinx/application.py:641 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:720 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:742 sphinx/application.py:764 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1313 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -144,12 +144,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1317 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1320 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,75 +157,77 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1324 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1332 sphinx/application.py:1336 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "مجلد الاعدادات لا يحتوي على ملف conf.py (%s)" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -233,62 +235,62 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "قسم %s" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "جدول %s" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r لتم يتم العثور عليه، لهذا تم تجاهلة" -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -489,190 +491,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "بناء [mo]:" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:615 +#: sphinx/builders/__init__.py:642 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "جميع ملفات المصدر" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "بناء [%s]" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "التحقق من التوافق" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "تحديث البيئة:" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:590 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:599 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "تجهيز المستندات" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:602 msgid "copying assets" msgstr "" @@ -681,7 +835,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:757 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "نسخ الصور..." @@ -691,7 +845,7 @@ msgstr "نسخ الصور..." msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:765 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -816,7 +970,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1184 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -849,7 +1003,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:480 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:691 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -934,7 +1093,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1135 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -960,164 +1119,169 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "صفحة الHTML موجودة في %(outdir)s" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:390 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/builders/html/__init__.py:485 sphinx/builders/latex/__init__.py:189 #: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:504 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "الفهرس العام" -#: sphinx/builders/html/__init__.py:506 +#: sphinx/builders/html/__init__.py:504 msgid "index" msgstr "الفهرس" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:553 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:578 msgid "next" msgstr "التالي" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:587 msgid "previous" msgstr "السابق" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:683 msgid "generating indices" msgstr "إنشاء الفهرس" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:698 msgid "writing additional pages" msgstr "كتابة صفحات إضافية " -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:775 msgid "copying downloadable files... " msgstr "نسخ الملفات القابلة للتحميل للنسخ..." -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:783 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "غير قادر على نسخ الملفات القابلة للتحميل %r : %s" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:816 sphinx/builders/html/__init__.py:828 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:849 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:865 #, python-format msgid "cannot copy static file %r" msgstr "غير قادر على نسخ الملف الثابت %r" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:870 msgid "copying extra files" msgstr "نسخ ملفات إضافية" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:876 #, python-format msgid "cannot copy extra file %r" msgstr "غير قادر على نسخ المف الإضافي %r" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:883 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:932 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:976 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1118 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1151 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1159 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1207 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1238 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1246 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1259 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1263 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1272 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "ملف الشعار %r غير موجود" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1281 #, python-format msgid "favicon file %r does not exist" msgstr "ملف الايقونة %r غير موجود" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1288 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "" @@ -1143,19 +1307,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "" @@ -1213,18 +1379,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1232,27 +1390,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1264,7 +1401,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1353,7 +1490,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1364,7 +1501,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1646,12 +1783,12 @@ msgstr "إنشاء Makefile ؟ (نعم / لا)" msgid "Create Windows command file? (y/n)" msgstr "إنشاء ملف أوامر للويندوز؟ (نعم/لا)" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1760,12 +1897,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1797,11 +1934,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1829,85 +1966,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "مؤلف القسم:" -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "كاتب الكود:" -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "المؤلف" @@ -1915,7 +2052,7 @@ msgstr "المؤلف" msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1965,7 +2102,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1980,7 +2117,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -1989,52 +2126,52 @@ msgstr "" msgid "Arguments" msgstr "" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 #: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 msgid "Returns" msgstr "" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 #: sphinx/domains/python/_object.py:177 msgid "Return type" msgstr "" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "كائن" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2044,7 +2181,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2274 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2081,169 +2218,178 @@ msgstr "متغير بيئة العمل" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 #: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "متغير" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "نوع" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr "" @@ -2255,158 +2401,171 @@ msgstr "متغيرات" msgid "Raises" msgstr "" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "صفحة البحث" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:373 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:472 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:614 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:748 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:784 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2426,7 +2585,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "" @@ -2462,17 +2621,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:235 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2484,149 +2643,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "%s ليس مجلد." +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2667,7 +2848,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2743,7 +2924,7 @@ msgstr "" msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2751,7 +2932,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2761,99 +2942,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[المصدر]" @@ -3029,23 +3150,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3053,46 +3174,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3100,7 +3227,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3115,36 +3242,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" @@ -3201,65 +3393,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "تنبيه" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "احتياط" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "خطر" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "خطأ" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "تلميح" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "مهم" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "ملاحظة" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "شاهد أيضا" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "نصيحة" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "تحذير" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "استمرار في الصفحة التالية" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "أرقام" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "صفحة" @@ -3268,7 +3460,7 @@ msgstr "صفحة" msgid "Table of Contents" msgstr "قائمة المحتويات" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "بحث" @@ -3326,12 +3518,12 @@ msgstr "" msgid "all functions, classes, terms" msgstr "" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" +msgid "Index – %(key)s" msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3350,31 +3542,31 @@ msgstr "" msgid "Navigation" msgstr "" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "البحث ضمن %(docstitle)s" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "الحقوق" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3477,7 +3669,7 @@ msgstr "" msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr "" @@ -3486,11 +3678,11 @@ msgid "Hide Search Matches" msgstr "" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "" @@ -3566,17 +3758,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3586,11 +3778,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:80 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:85 msgid "failed" msgstr "فشل" @@ -3601,12 +3793,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3633,18 +3825,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3654,45 +3851,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:977 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3705,31 +3907,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:968 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1050 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1410 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1744 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3743,11 +3950,11 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.js b/sphinx/locale/bg/LC_MESSAGES/sphinx.js index b09ff5f..423113e 100644 --- a/sphinx/locale/bg/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/bg/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "", "Hide Search Matches": "", "Index": "", - "Index – %(key)s": "", + "Index – %(key)s": "", "Index pages by letter": "", "Indices and tables:": "", "Last updated on %(last_updated)s.": "", diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.mo b/sphinx/locale/bg/LC_MESSAGES/sphinx.mo index 41ac7db..52e5228 100644 Binary files a/sphinx/locale/bg/LC_MESSAGES/sphinx.mo and b/sphinx/locale/bg/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.po b/sphinx/locale/bg/LC_MESSAGES/sphinx.po index b130ec5..b0dd385 100644 --- a/sphinx/locale/bg/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/bg/LC_MESSAGES/sphinx.po @@ -3,138 +3,139 @@ # This file is distributed under the same license as the Sphinx project. # # Translators: +# Nikolay Stoykov <developing@mandarb.eu>, 2024 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-14 04:28+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Last-Translator: Nikolay Stoykov <developing@mandarb.eu>, 2024\n" "Language-Team: Bulgarian (http://app.transifex.com/sphinx-doc/sphinx-1/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:179 #, python-format msgid "Cannot find source directory (%s)" -msgstr "" +msgstr "Не може да се намери изходна директория (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:183 #, python-format msgid "Output directory (%s) is not a directory" -msgstr "" +msgstr "Изходната директория (%s) не е директория" -#: sphinx/application.py:165 +#: sphinx/application.py:187 msgid "Source directory and destination directory cannot be identical" -msgstr "" +msgstr "Изходната директория и целевата директория не могат да бъдат идентични" -#: sphinx/application.py:197 +#: sphinx/application.py:219 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:219 +#: sphinx/application.py:241 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:235 +#: sphinx/application.py:257 msgid "making output directory" -msgstr "" +msgstr "създаване на изходна директория" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:262 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:268 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:303 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:320 sphinx/util/display.py:87 msgid "done" msgstr "" -#: sphinx/application.py:296 +#: sphinx/application.py:322 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:310 +#: sphinx/application.py:336 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:344 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:332 +#: sphinx/application.py:357 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:390 msgid "succeeded" msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:391 msgid "finished with problems" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:395 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:400 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:377 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:406 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:610 +#: sphinx/application.py:641 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:720 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:742 sphinx/application.py:764 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1313 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1317 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1320 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,75 +156,77 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1324 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1332 sphinx/application.py:1336 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -231,62 +234,62 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -487,190 +490,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:615 +#: sphinx/builders/__init__.py:642 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:590 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:599 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:602 msgid "copying assets" msgstr "" @@ -679,7 +834,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:757 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" @@ -689,7 +844,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:765 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -814,7 +969,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1184 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -847,7 +1002,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:480 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:691 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -932,7 +1092,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1135 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -958,164 +1118,169 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:390 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/builders/html/__init__.py:485 sphinx/builders/latex/__init__.py:189 #: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:504 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:506 +#: sphinx/builders/html/__init__.py:504 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:553 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:578 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:587 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:683 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:698 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:775 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:783 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:816 sphinx/builders/html/__init__.py:828 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:849 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:865 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:870 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:876 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:883 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:932 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:976 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1118 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1151 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1159 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1207 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1238 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1246 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1259 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1263 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1272 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1281 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1288 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "" @@ -1141,19 +1306,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "" @@ -1211,18 +1378,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1230,27 +1389,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1262,7 +1400,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1351,7 +1489,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1362,7 +1500,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1644,12 +1782,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1758,12 +1896,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1795,11 +1933,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1827,85 +1965,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "" @@ -1913,7 +2051,7 @@ msgstr "" msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1963,7 +2101,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1978,7 +2116,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -1987,52 +2125,52 @@ msgstr "" msgid "Arguments" msgstr "" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 #: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 msgid "Returns" msgstr "" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 #: sphinx/domains/python/_object.py:177 msgid "Return type" msgstr "" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2042,7 +2180,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2274 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2079,169 +2217,178 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 #: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr "" @@ -2253,158 +2400,171 @@ msgstr "" msgid "Raises" msgstr "" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:373 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:472 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:614 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:748 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:784 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2424,7 +2584,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "" @@ -2460,17 +2620,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:235 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2482,149 +2642,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2665,7 +2847,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2741,7 +2923,7 @@ msgstr "" msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2749,7 +2931,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2759,99 +2941,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" @@ -3027,23 +3149,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3051,46 +3173,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3098,7 +3226,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3113,36 +3241,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" @@ -3199,65 +3392,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "" @@ -3266,7 +3459,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "" @@ -3324,12 +3517,12 @@ msgstr "" msgid "all functions, classes, terms" msgstr "" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" +msgid "Index – %(key)s" msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3348,31 +3541,31 @@ msgstr "" msgid "Navigation" msgstr "" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3475,7 +3668,7 @@ msgstr "" msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr "" @@ -3484,11 +3677,11 @@ msgid "Hide Search Matches" msgstr "" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "" @@ -3564,17 +3757,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3584,11 +3777,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:80 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:85 msgid "failed" msgstr "" @@ -3599,12 +3792,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3631,18 +3824,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3652,45 +3850,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:977 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3703,31 +3906,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:968 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1050 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1410 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1744 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3741,11 +3949,11 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.js b/sphinx/locale/bn/LC_MESSAGES/sphinx.js index 93af27f..a736d06 100644 --- a/sphinx/locale/bn/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/bn/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "\u09af\u09be\u09a8", "Hide Search Matches": "\u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be\u09a8\u09c7\u09b0 \u09ae\u09cd\u09af\u09be\u099a\u0997\u09c1\u09b2\u09c7\u09be \u09b2\u09c1\u0995\u09be\u09a8", "Index": "\u0987\u09a8\u09a1\u09c7\u0995\u09cd\u09b8", - "Index – %(key)s": "\u0987\u09a8\u09a1\u09c7\u0995\u09cd\u09b8 – %(key)s", + "Index – %(key)s": "", "Index pages by letter": "\u09ac\u09b0\u09cd\u09a3\u09be\u09a8\u09c1\u09b8\u09be\u09b0\u09c7 \u0987\u09a8\u09a1\u09c7\u0995\u09cd\u09b8 \u09aa\u09be\u09a4\u09be", "Indices and tables:": "\u0987\u09a8\u09a1\u09c7\u0995\u09cd\u09b8 \u0993 \u099f\u09c7\u09ac\u09bf\u09b2 \u09b8\u09ae\u09c2\u09b9:", "Last updated on %(last_updated)s.": "%(last_updated)s \u09b8\u09b0\u09cd\u09ac\u09b6\u09c7\u09b7 \u09aa\u09b0\u09bf\u09ac\u09b0\u09cd\u09a4\u09a8 \u0995\u09b0\u09be \u09b9\u09df\u09c7\u099b\u09c7\u0964", diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo index 8d956d3..07751cc 100644 Binary files a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo and b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.po b/sphinx/locale/bn/LC_MESSAGES/sphinx.po index bbb50c8..aa1aa01 100644 --- a/sphinx/locale/bn/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/bn/LC_MESSAGES/sphinx.po @@ -8,134 +8,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-14 04:28+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FIRST AUTHOR <EMAIL@ADDRESS>, 2009\n" "Language-Team: Bengali (http://app.transifex.com/sphinx-doc/sphinx-1/language/bn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: bn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:179 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:183 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:187 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:197 +#: sphinx/application.py:219 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:219 +#: sphinx/application.py:241 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:235 +#: sphinx/application.py:257 msgid "making output directory" msgstr "" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:262 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:268 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:303 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:320 sphinx/util/display.py:87 msgid "done" msgstr "" -#: sphinx/application.py:296 +#: sphinx/application.py:322 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:310 +#: sphinx/application.py:336 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:344 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:332 +#: sphinx/application.py:357 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:390 msgid "succeeded" msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:391 msgid "finished with problems" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:395 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:400 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:377 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:406 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:610 +#: sphinx/application.py:641 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:720 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:742 sphinx/application.py:764 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1313 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1317 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1320 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,75 +156,77 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1324 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1332 sphinx/application.py:1336 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -232,62 +234,62 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -488,190 +490,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:615 +#: sphinx/builders/__init__.py:642 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:590 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:599 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:602 msgid "copying assets" msgstr "" @@ -680,7 +834,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:757 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" @@ -690,7 +844,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:765 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -815,7 +969,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1184 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -848,7 +1002,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:480 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:691 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -933,7 +1092,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1135 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -959,164 +1118,169 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:390 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/builders/html/__init__.py:485 sphinx/builders/latex/__init__.py:189 #: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:504 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "সাধারণ ইনডেক্স" -#: sphinx/builders/html/__init__.py:506 +#: sphinx/builders/html/__init__.py:504 msgid "index" msgstr "ইনডেক্স" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:553 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:578 msgid "next" msgstr "পরবর্তী" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:587 msgid "previous" msgstr "পূর্ববর্তী" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:683 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:698 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:775 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:783 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:816 sphinx/builders/html/__init__.py:828 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:849 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:865 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:870 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:876 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:883 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:932 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:976 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1118 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1151 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1159 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1207 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1238 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1246 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1259 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1263 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1272 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1281 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1288 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "" @@ -1142,19 +1306,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "ইনডেক্স" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "রিলিজ" @@ -1212,18 +1378,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1231,27 +1389,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1263,7 +1400,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1352,7 +1489,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1363,7 +1500,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1645,12 +1782,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1759,12 +1896,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1796,11 +1933,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1828,85 +1965,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "অনুচ্ছেদ লেখক:" -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "মডিউল লেখক:" -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "লেখক:" @@ -1914,7 +2051,7 @@ msgstr "লেখক:" msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1964,7 +2101,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (বিল্ট-ইন ফাংশন)" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s মেথড)" @@ -1979,7 +2116,7 @@ msgstr "%s() (ক্লাসে)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s এ্যট্রিবিউট)" @@ -1988,52 +2125,52 @@ msgstr "%s (%s এ্যট্রিবিউট)" msgid "Arguments" msgstr "" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 #: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 msgid "Returns" msgstr "রিটার্নস" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 #: sphinx/domains/python/_object.py:177 msgid "Return type" msgstr "রিটার্ন টাইপ" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "%s (মডিউল)" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "ফাংশন" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "মেথড" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "ক্লাস" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "ডাটা" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "এ্যট্রিবিউট" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "মডিউল" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2043,7 +2180,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2274 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2080,169 +2217,178 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 #: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "প্যারামিটার" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s মডিউলে)" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "%s (%s মডিউলে)" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "%s (বিল্ট-ইন ভ্যারিয়েবল)" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "%s (বিল্ট-ইন ক্লাস)" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "%s (%s ক্লাসে)" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s ক্লাস মেথড)" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s স্ট্যাটিক মেথড)" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "মডিউল সমূহ" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "ডেপ্রিকেটেড" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "এক্সেপশন" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "ক্লাস মেথড" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "স্ট্যাটিক মেথড" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr "" @@ -2254,158 +2400,171 @@ msgstr "" msgid "Raises" msgstr "রেইজেস" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "এনভায়রনমেন্ট ভ্যারিয়েবল; %s" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "শব্দকোষ" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "ব্যকরণ টোকেন" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "এনভায়রনমেন্ট ভ্যারিয়েবল" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "প্রোগ্রাম অপশন" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "মডিউল ইনডেক্স" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "অনুসন্ধান পাতা" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:373 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:472 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:614 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:748 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:784 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2425,7 +2584,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "" @@ -2461,17 +2620,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:235 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2483,149 +2642,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2666,7 +2847,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2742,7 +2923,7 @@ msgstr "" msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2750,7 +2931,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2760,99 +2941,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" @@ -3028,23 +3149,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3052,46 +3173,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3099,7 +3226,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3114,36 +3241,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" @@ -3200,65 +3392,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "দৃষ্টি আকর্ষণ" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "সতর্কীকরণ" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "বিপজ্জনক" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "ভুল (এরর)" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "আভাস" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "গুরুত্বপূর্ণ" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "নোট" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "আরও দেখুন" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "পরামর্শ" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "সতর্কতা" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "পূর্ববর্তী পাতা হতে চলমান" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "" @@ -3267,7 +3459,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "অনুসন্ধান" @@ -3325,12 +3517,12 @@ msgstr "সকল মডিউলে দ্রুত প্রবেশ" msgid "all functions, classes, terms" msgstr "সকল ফাংশন, ক্লাস, টার্ম" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" -msgstr "ইনডেক্স – %(key)s" +msgid "Index – %(key)s" +msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3349,31 +3541,31 @@ msgstr "খুব বড় হতে পারে" msgid "Navigation" msgstr "নেভিগেশন" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "%(docstitle)s এর মধ্যে খুঁজুন" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "এই ডকুমেন্ট সম্পর্কে" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "কপিরাইট" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "%(last_updated)s সর্বশেষ পরিবর্তন করা হয়েছে।" -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3476,7 +3668,7 @@ msgstr "" msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr "" @@ -3485,11 +3677,11 @@ msgid "Hide Search Matches" msgstr "অনুসন্ধানের ম্যাচগুলো লুকান" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "" @@ -3565,17 +3757,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3585,11 +3777,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:80 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:85 msgid "failed" msgstr "" @@ -3600,12 +3792,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3632,18 +3824,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3653,45 +3850,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:977 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3704,31 +3906,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:968 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "পাদটীকা" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1050 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1410 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1744 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3742,11 +3949,11 @@ msgstr "" msgid "[image]" msgstr "[ছবি]" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.js b/sphinx/locale/ca/LC_MESSAGES/sphinx.js index da37e54..14079c4 100644 --- a/sphinx/locale/ca/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/ca/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "Ves a", "Hide Search Matches": "Oculta els resultats de cerca", "Index": "\u00cdndex", - "Index – %(key)s": "\u00cdndex – %(key)s", + "Index – %(key)s": "", "Index pages by letter": "P\u00e0gines d'\u00edndex per lletra", "Indices and tables:": "\u00cdndexs i taules:", "Last updated on %(last_updated)s.": "Darrera actualitzaci\u00f3 el %(last_updated)s.", diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.mo b/sphinx/locale/ca/LC_MESSAGES/sphinx.mo index 7f15bee..5139ace 100644 Binary files a/sphinx/locale/ca/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ca/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.po b/sphinx/locale/ca/LC_MESSAGES/sphinx.po index 0b66ddd..740ccf1 100644 --- a/sphinx/locale/ca/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ca/LC_MESSAGES/sphinx.po @@ -11,134 +11,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-14 04:28+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Antoni Bella Pérez <antonibella5@yahoo.com>, 2023-2024\n" "Language-Team: Catalan (http://app.transifex.com/sphinx-doc/sphinx-1/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:179 #, python-format msgid "Cannot find source directory (%s)" msgstr "No es pot trobar el directori d'origen (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:183 #, python-format msgid "Output directory (%s) is not a directory" msgstr "El directori de sortida (%s) no és un directori" -#: sphinx/application.py:165 +#: sphinx/application.py:187 msgid "Source directory and destination directory cannot be identical" msgstr "El directori d'origen i el de destinació no poden ser idèntics" -#: sphinx/application.py:197 +#: sphinx/application.py:219 #, python-format msgid "Running Sphinx v%s" msgstr "S'està executant Sphinx versió %s" -#: sphinx/application.py:219 +#: sphinx/application.py:241 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Aquest projecte almenys necessita Sphinx versió %s i, per tant, no es pot crear amb aquesta versió." -#: sphinx/application.py:235 +#: sphinx/application.py:257 msgid "making output directory" msgstr "es crea el directori de sortida" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:262 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "mentre es configura l'extensió %s:" -#: sphinx/application.py:246 +#: sphinx/application.py:268 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "«setup» tal com es defineix actualment a conf.py no és una crida de Python. Modifiqueu la seva definició per a convertir-la en una funció que es pugui cridar. Això és necessari perquè conf.py es comporti com a una extensió de Sphinx." -#: sphinx/application.py:277 +#: sphinx/application.py:303 #, python-format msgid "loading translations [%s]... " msgstr "s'estan carregant les traduccions [%s]..." -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:320 sphinx/util/display.py:87 msgid "done" msgstr "fet" -#: sphinx/application.py:296 +#: sphinx/application.py:322 msgid "not available for built-in messages" msgstr "no està disponible per a missatges integrats" -#: sphinx/application.py:310 +#: sphinx/application.py:336 msgid "loading pickled environment" msgstr "s'està carregant l'entorn preparat" -#: sphinx/application.py:318 +#: sphinx/application.py:344 #, python-format msgid "failed: %s" msgstr "ha fallat: %s" -#: sphinx/application.py:332 +#: sphinx/application.py:357 msgid "No builder selected, using default: html" msgstr "No s'ha seleccionat cap constructor, s'usa el predeterminat: html" -#: sphinx/application.py:365 +#: sphinx/application.py:390 msgid "succeeded" msgstr "ha tingut èxit" -#: sphinx/application.py:366 +#: sphinx/application.py:391 msgid "finished with problems" msgstr "ha acabat amb problemes" -#: sphinx/application.py:370 +#: sphinx/application.py:395 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "construcció %s, %s avís (amb els avisos tractats com a errors)." -#: sphinx/application.py:372 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "construcció %s, %s avisos (amb els avisos tractats com a errors)." -#: sphinx/application.py:375 +#: sphinx/application.py:400 #, python-format msgid "build %s, %s warning." msgstr "construcció %s, %s avís." -#: sphinx/application.py:377 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warnings." msgstr "construcció %s, %s avisos." -#: sphinx/application.py:381 +#: sphinx/application.py:406 #, python-format msgid "build %s." msgstr "construcció %s." -#: sphinx/application.py:610 +#: sphinx/application.py:641 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "la classe del node %r ja està registrada, els seus visitants seran anul·lats" -#: sphinx/application.py:689 +#: sphinx/application.py:720 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "la directiva %r ja està registrada, s'anul·larà" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:742 sphinx/application.py:764 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "el rol %r ja està registrat, s'anul·larà" -#: sphinx/application.py:1282 +#: sphinx/application.py:1313 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -146,12 +146,12 @@ msgid "" "explicit" msgstr "l'extensió %s no declara si és segur per a la lectura en paral·lel, suposant que no ho sigui, demaneu a l'autor de l'extensió que ho comprovi i faci que sigui explícit" -#: sphinx/application.py:1286 +#: sphinx/application.py:1317 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "l'extensió %s no és segura per a la lectura en paral·lel" -#: sphinx/application.py:1289 +#: sphinx/application.py:1320 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -159,75 +159,77 @@ msgid "" "explicit" msgstr "l'extensió %s no declara si és segur per a l'escriptura en paral·lel, suposant que no ho sigui, demaneu a l'autor de l'extensió que ho comprovi i faci que sigui explícit" -#: sphinx/application.py:1293 +#: sphinx/application.py:1324 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "l'extensió %s no és segura per a l'escriptura en paral·lel" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1332 sphinx/application.py:1336 #, python-format msgid "doing serial %s" msgstr "s'està executant %s en sèrie" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "el directori de configuració no conté un fitxer conf.py (%s)" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "S'ha trobat un valor de configuració no vàlid: «language = None». Actualitzeu la vostra configuració a un codi d'idioma vàlid. Es torna «en» (anglès)." -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "no s'ha pogut substituir l'ajust de la configuració del diccionari %r, s'ignora (useu %r per a establir elements individuals)" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "nombre no vàlid %r del valor de configuració %r, s'ignora" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "no s'ha pogut substituir l'ajust de la configuració %r amb tipus no compatibles, s'ignora" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "valor de configuració desconegut %r en substituir, s'ignora" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "Aquest valor de configuració no existeix: %r" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "El valor de configuració %r ja està present" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" -msgstr "no es pot emmagatzemar a la memòria cau un valor de configuració no seleccionable: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" +msgstr "no es pot emmagatzemar a la memòria cau el valor de configuració no seleccionable: %r (perquè conté una funció, classe o objecte de mòdul)" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Hi ha un error de sintaxi en el fitxer de configuració: %s\n" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "El fitxer de configuració (o un dels mòduls que s'importen) ha cridat «sys.exit()»" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -235,62 +237,62 @@ msgid "" "%s" msgstr "Hi ha un error programable en el fitxer de configuració:\n\n%s" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "Ha fallat en convertir %r en un conjunt o tupla" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "El valor de configuració «source_suffix» espera una cadena, una llista de cadenes o un diccionari. Però s'ha donat «%r»." -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "Secció %s" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "Fig. %s" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "Taula %s" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "Llistat %s" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "El valor de configuració «{name}» ha de ser un de {candidates}, però s'ha donat «{current}»." -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "El valor de configuració «{name}» té el tipus «{current.__name__}», s'espera {permitted}." -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "El valor de configuració «{name}» té el tipus «{current.__name__}», el valor predeterminat és «{default.__name__}»." -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "no s'ha trobat primary_domain %r, s'ignora." -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -491,190 +493,342 @@ msgstr "número de PEP no vàlid %s" msgid "invalid RFC number %s" msgstr "número de RFC no vàlid %s" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "No s'admeten les seccions de configuració del tema que no siguin [theme] ni [options], les quals retornen el valor predeterminat (s'ha intentat obtenir un valor de %r)" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "configuració %s. %s no es produeix en cap de les configuracions de temes cercats" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "opció de tema no admesa, s'ha donat %r" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "el fitxer %r en el camí de temes no és un fitxer ZIP vàlid ni conté cap tema" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "no s'ha trobat cap tema anomenat %r (manca theme.toml?)" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "El tema %r té una herència circular" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "El tema %r hereta des de %r, el qual no és un tema que estigui carregat. Els temes carregats són: %s" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "El tema %r té massa avantpassats" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "no s'ha trobat cap fitxer de configuració del tema a %r" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "el tema %r no té la taula «theme»." -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "La taula del tema %r «[theme]» no és una taula" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "El tema %r ha de definir la configuració «theme.inherit»." -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "La taula del tema %r «[options]» no és una taula" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "La configuració de «theme.pygments_style» ha de ser una taula. Consell: «%s»" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "Ús:" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "{0} [OPCIONS] <COMMAND> [<ARGS>]" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "El generador de documentació Sphinx." + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "Ordres:" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "Opcions" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "Per a més informació, visiteu https://www.sphinx-doc.org/en/master/man/." + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "{0}: error: {1}\nPer a informació executeu «{0} --help»" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr " Gestiona la documentació amb Sphinx." + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "Mostra la versió i surt." + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "Mostra aquest missatge i surt." + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "Registre" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "Augmenta la verbositat (es pot repetir)" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "Imprimeix només els errors i els avisos." + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "Cap sortida en absolut" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "<command>" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "Vegeu «sphinx --help».\n" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "S'ha produït una excepció, iniciant el depurador:" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "S'ha interromput!" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "Error de marcatge en el reStructuredText:" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "Error de codificació:" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "Error de recursivitat:" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "Es pot produir amb fitxers molt grans o profundament imbricats. Podeu augmentar amb cura el límit predeterminat de la recursivitat de 1000 en el fitxer conf.py, amb, per exemple:" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "S'ha produït una excepció:" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "S'ha desat la traça completa a:" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "Per a informar d'aquest error als desenvolupadors, obriu un problema a <https://github.com/sphinx-doc/sphinx/issues/>. Gràcies!" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "Informeu-ho també si es tractava d'un error d'usuari, de manera que la pròxima vegada es pugui proporcionar un missatge d'error millor." + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "no s'ha trobat una imatge adequada per al constructor %s: %s (%s)" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "no s'ha trobat una imatge adequada per al constructor %s: %s" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "s'estan construint [mo]:" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:615 +#: sphinx/builders/__init__.py:642 msgid "writing output... " msgstr "s'està escrivint la sortida..." -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "tots els %d fitxers PO" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "objectius per als %d fitxers PO que s'han especificat" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "objectius per als %d fitxers PO que estan desfasats" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "tots els fitxers font" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "el fitxer %r proporcionat a la línia d'ordres no existeix, " -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "el fitxer %r proporcionat a la línia d'ordres no es troba sota el directori d'origen, s'ignora" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "el fitxer %r proporcionat a la línia d'ordres no és un document vàlid, s'ignora" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "%d fitxers font proporcionats a la línia d'ordres" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "els objectius per a %d fitxers font que estan desfasats" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "s'està construint [%s]: " -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "s'està cercant per fitxers sense actualitzar... " -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "s'han trobat %d" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "no se n'ha trobat cap" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "s'està preparant l'ambient" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "s'està comprovant la coherència" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "no hi ha cap objectiu desfasat." -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "s'està actualitzant l'entorn: " -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s afegits, %s canviats, %s eliminats" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "s'estan llegint les fonts... " -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:590 #, python-format msgid "docnames to write: %s" msgstr "els docname que s'escriuran: %s" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:599 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "s'estan preparant els documents" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:602 msgid "copying assets" msgstr "s'estan copiant els recursos" @@ -683,7 +837,7 @@ msgstr "s'estan copiant els recursos" msgid "duplicated ToC entry found: %s" msgstr "s'ha trobat una entrada ToC duplicada: %s" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:757 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "s'estan copiant les imatges... " @@ -693,7 +847,7 @@ msgstr "s'estan copiant les imatges... " msgid "cannot read image file %r: copying it instead" msgstr "no s'ha pogut llegir el fitxer d'imatge %r: en el seu lloc, es copia" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:765 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -818,7 +972,7 @@ msgstr "el valor de configuració «epub_identifier» no pot estar buit per a EP msgid "conf value \"version\" should not be empty for EPUB3" msgstr "el valor de configuració «version» no pot estar buit per a EPUB3" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1184 #, python-format msgid "invalid css_file: %r, ignored" msgstr "css_file no vàlid: %r, s'ignora" @@ -851,7 +1005,12 @@ msgstr "Cerqueu qualsevol error a la sortida anterior o en el fitxer %(outdir)s/ msgid "broken link: %s (%s)" msgstr "enllaç trencat: %s (%s)" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:480 +#, python-format +msgid "Anchor '%s' not found" +msgstr "No s'ha trobat l'àncora «%s»" + +#: sphinx/builders/linkcheck.py:691 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "Ha fallat en compilar expressions regulars a linkcheck_allowed_redirects: %r %s" @@ -936,7 +1095,7 @@ msgstr "error en escriure el fitxer Makefile: %s" msgid "The text files are in %(outdir)s." msgstr "Els fitxers de text es troben a %(outdir)s." -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1135 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -962,164 +1121,169 @@ msgstr "el fitxer d'informació de la compilació està trencat: %r" msgid "The HTML pages are in %(outdir)s." msgstr "Les pàgines en HTML es troben a %(outdir)s." -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:390 #, python-format msgid "Failed to read build info file: %r" msgstr "Ha fallat en llegir el fitxer d'informació de la construcció: %r" -#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/builders/html/__init__.py:485 sphinx/builders/latex/__init__.py:189 #: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%-d %b, %Y" -#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:504 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Índex general" -#: sphinx/builders/html/__init__.py:506 +#: sphinx/builders/html/__init__.py:504 msgid "index" msgstr "índex" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:553 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:578 msgid "next" msgstr "següent" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:587 msgid "previous" msgstr "anterior" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:683 msgid "generating indices" msgstr "s'estan generant els índexs" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:698 msgid "writing additional pages" msgstr "s'estan escrivint les pàgines addicionals" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:775 msgid "copying downloadable files... " msgstr "s'estan copiant els fitxers que es poden baixar... " -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:783 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "no s'ha pogut copiar el fitxer que es podia baixar %r: %s" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:816 sphinx/builders/html/__init__.py:828 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "Ha fallat en copiar un fitxer a html_static_file: %s: %r" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:849 msgid "copying static files" msgstr "s'estan copiant els fitxers estàtics" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:865 #, python-format msgid "cannot copy static file %r" msgstr "no s'ha pogut copiar el fitxer estàtic %r" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:870 msgid "copying extra files" msgstr "s'estan copiant els fitxers addicionals" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:876 #, python-format msgid "cannot copy extra file %r" msgstr "no s'ha pogut copiar el fitxer addicional %r" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:883 #, python-format msgid "Failed to write build info file: %r" msgstr "Ha fallat en escriure el fitxer d'informació de la construcció: %r" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:932 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "no s'ha pogut carregar l'índex de cerca, i no es construiran tots els documents: l'índex estarà incomplet." -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:976 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "la pàgina %s coincideix amb dos patrons a html_sidebars: %r i %r" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1118 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "s'ha produït un error d'Unicode en representar la pàgina %s. Assegureu-vos que tots els valors de configuració que contenen contingut que no és ASCII són cadenes Unicode." -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "S'ha produït un error en representar la pàgina %s.\nMotiu: %r" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1151 msgid "dumping object inventory" msgstr "s'està bolcant l'inventari d'objectes" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1159 #, python-format msgid "dumping search index in %s" msgstr "s'està bolcant l'índex de cerca a %s" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1207 #, python-format msgid "invalid js_file: %r, ignored" msgstr "js_file no vàlid: %r, s'ignora" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "S'han enregistrat molts math_renderer. Però no s'ha seleccionat math_renderer." -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1238 #, python-format msgid "Unknown math_renderer %r is given." msgstr "S'ha donat un math_renderer %r desconegut." -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1246 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "l'entrada html_extra_path %r no existeix" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "l'entrada html_extra_path %r es col·loca dins del directori de sortida" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1259 #, python-format msgid "html_static_path entry %r does not exist" msgstr "l'entrada html_static_path %r no existeix" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1263 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "l'entrada html_static_path %r es col·loca dins del directori de sortida" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1272 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "el fitxer de logotip %r no existeix" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1281 #, python-format msgid "favicon file %r does not exist" msgstr "el fitxer icona de web %r no existeix" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1288 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "HTML 4 ja no és compatible amb Sphinx. (s'ha detectat «html4_writer=true» a les opcions de configuració)" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "%s %s documentació" @@ -1145,19 +1309,21 @@ msgstr "no s'ha trobat el valor de configuració «latex_documents»: no s'escri msgid "\"latex_documents\" config value references unknown document %s" msgstr "El valor de configuració «latex_documents» fa referència a un document %s desconegut" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "Índex" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "Versió" @@ -1215,18 +1381,10 @@ msgstr "No s'ha trobat cap nota a peu de pàgina per al node de referència %r d msgid "Exception occurred while building, starting debugger:" msgstr "S'ha produït una excepció en construir, s'està iniciant el depurador:" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "S'ha interromput!" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "Error de marcatge reST:" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "Error de codificació:" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1234,27 +1392,6 @@ msgid "" "the developers." msgstr "La traça completa s'ha guardat a %s, si voleu informar del problema als desenvolupadors." -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "Error de recursivitat:" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "Es pot produir amb fitxers molt grans o profundament imbricats. Podeu augmentar amb cura el límit predeterminat de la recursivitat de 1000 en el fitxer conf.py, amb, per exemple:" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "S'ha produït una excepció:" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "Informeu-ho també si es tractava d'un error d'usuari, de manera que la pròxima vegada es pugui proporcionar un missatge d'error millor." - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1266,7 +1403,7 @@ msgid "job number should be a positive number" msgstr "el número de treball hauria de ser un nombre positiu" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "Per a més informació, visiteu <https://www.sphinx-doc.org/>." @@ -1355,8 +1492,8 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "defineix l'etiqueta: inclou blocs «only» amb TAG" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" -msgstr "mode exigent: avisa de totes les referències que manquen" +msgid "nitpicky mode: warn about all missing references" +msgstr "" #: sphinx/cmd/build.py:184 msgid "console output options" @@ -1366,7 +1503,7 @@ msgstr "opcions de sortida de la consola" msgid "increase verbosity (can be repeated)" msgstr "augmenta la loquacitat (es pot repetir)" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "sense sortida a la sortida estàndard, només avisos a la sortida d'error estàndard" @@ -1648,12 +1785,12 @@ msgstr "Voleu crear el Makefile? (s/n)" msgid "Create Windows command file? (y/n)" msgstr "Voleu crear el fitxer d'ordres de Windows? (s/n)" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "S'està creant el fitxer %s." -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "El fitxer %s ja existeix, se salta." @@ -1762,12 +1899,12 @@ msgstr "usa epub" msgid "Extension options" msgstr "Opcions de l'extensió" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "habilita l'extensió %s" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "habilita les extensions arbitràries" @@ -1799,11 +1936,11 @@ msgstr "usa el mode make per a Makefile/make.bat" msgid "do not use make-mode for Makefile/make.bat" msgstr "no usis el mode make per a Makefile/make.bat" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "Plantilles de projecte" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "directori de plantilles per als fitxers de plantilla" @@ -1831,85 +1968,85 @@ msgstr "«sphinx-quickstart» només generarà dins d'un directori buit. Especif msgid "Invalid template variable: %s" msgstr "Variable no vàlida de plantilla: %s" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "cap espai en blanc eliminat en disminuir el sagnat" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "Subtítol no vàlid: %s" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "l'especificació del número de línia queda fora de l'interval (1-%d): %r" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "No es poden usar ambdues opcions «%s» i «%s»" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "El fitxer inclòs %r no s'ha trobat o s'ha fallat en llegir-lo" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "La codificació %r usada per a la lectura del fitxer inclòs %r sembla estar malament, intenteu donar una opció «:encoding:»" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "L'objecte anomenat %r no es troba en el fitxer inclòs %r" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "No podeu usar «lineno-match» amb un conjunt desarticulat de «línies»" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "Línia específica %r: No hi ha cap línia llançada des del fitxer inclòs %r" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "El patró global toctree %r no coincideix amb cap document" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "el toctree conté una referència cap al document exclòs %r" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "el toctree conté una referència cap al document %r, el qual no existeix" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "s'ha trobat una entrada duplicada en el toctree: %s" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "Autor de la secció:" -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "Autor del mòdul: " -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "Autor del codi: " -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "Autor: " @@ -1917,7 +2054,7 @@ msgstr "Autor: " msgid ".. acks content is not a list" msgstr "... el contingut dels reconeixements no és una llista" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "... el contingut de l'historial no és una llista" @@ -1967,7 +2104,7 @@ msgstr "No es fa referència a la citació [%s]." msgid "%s() (built-in function)" msgstr "%s() (funció interna)" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "%s() (mètode %s)" @@ -1982,7 +2119,7 @@ msgstr "%s() (classe)" msgid "%s (global variable or constant)" msgstr "%s (variable global o constant)" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" @@ -1991,52 +2128,52 @@ msgstr "%s (atribut %s)" msgid "Arguments" msgstr "Arguments" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "Llançaments" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 #: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 msgid "Returns" msgstr "Retorna" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 #: sphinx/domains/python/_object.py:177 msgid "Return type" msgstr "Tipus de retorn" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "%s (mòdul)" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "funció" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "mètode" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "classe" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "dades" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "atribut" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "mòdul" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "descripció %s duplicada de %s, una altra %s a %s" @@ -2046,7 +2183,7 @@ msgstr "descripció %s duplicada de %s, una altra %s a %s" msgid "duplicate label of equation %s, other instance in %s" msgstr "etiqueta duplicada de l'equació %s, una altra instància a %s" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2274 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "math_eqref_format no vàlid: %r" @@ -2083,169 +2220,178 @@ msgstr "rol" msgid "duplicate description of %s %s, other instance in %s" msgstr "descripció duplicada del %s %s, una altra instància a %s" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "%s (C %s)" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "Declaració de C duplicada, també definida a %s:%s.\nLa declaració és «.. c:%s:: %s»." -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 #: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "Paràmetres" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "Valors retornats" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "membre" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "variable" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "macro" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "estructura" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "unió" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "enumera" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "numerador" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "tipus" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "paràmetre de la funció" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "Paràmetres de la plantilla" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "Declaració de C** duplicada, també definida a %s:%s.\nLa declaració és «.. cpp:%s:: %s»." -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "concepte" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "paràmetre de la plantilla" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "%s() (al mòdul %s)" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "%s (al mòdul %s)" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "%s (variable interna)" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "%s (classe interna)" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "%s (classe a %s)" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "%s() (mètode de classe %s)" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "%s() (mètode estàtic %s)" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "%s (propietat %s)" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "Índex de mòduls en Python" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "mòduls" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "Obsolet" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "excepció" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "mètode de classe" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "mètode estàtic" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "propietat" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "descripció de l'objecte duplicat de %s, una altra instància a %s, ús «:no-index:» per a un d'ells" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "s'ha trobat més d'un objectiu per a la referència creuada %r: %s" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr " (obsolet)" @@ -2257,158 +2403,171 @@ msgstr "Variables" msgid "Raises" msgstr "Llença" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "variable d'entorn; %s" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "Descripció de l'opció amb format incorrecte %r, s'ha de veure com «opt», «-opt args», «--opt args», «/opt args» o «+opt args»" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "opció de la línia d'ordres %s" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "opció de la línia d'ordres" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "el terme del glossari ha d'estar precedit per una línia buida" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "els termes del glossari no han d'estar separats per línies buides" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "el glossari sembla estar mal formatat, verifiqueu el sagnat" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "terme del glossari" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "gramàtica simbòlica" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "etiqueta de referència" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "variable d'entorn" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "opció del programa" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "document" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "Índex de mòduls" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Pàgina de cerca" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "etiqueta duplicada %s, una altra instància a %s" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "descripció %s duplicada del %s, una altra instància a %s" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "«numfig» està desactivat. :numref: s'ignora." -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "Ha fallat en crear una referència creuada. No s'assigna cap número: %s" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "l'enllaç no té cap subtítol: %s" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "numfig_format no vàlid: %s (%r)" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "numfig_format no vàlid: %s" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "etiqueta sense definir: %r" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "Ha fallat en crear una referència creuada. No es troba un títol o subtítol: %r" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "configuració nova" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "configuració modificada" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "extensions modificades" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "la versió de l'entorn de compilació no és actual" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "el directori d'origen ha estat modificat" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:373 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "Aquest entorn és incompatible amb el constructor seleccionat, trieu un altre directori doctree." -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:472 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "Ha fallat en escanejar els documents a %s: %r" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:614 #, python-format msgid "Domain %r is not registered" msgstr "El domini %r no està registrat" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:748 msgid "document isn't included in any toctree" msgstr "el document no està inclòs en cap toctree" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:784 msgid "self referenced toctree found. Ignored." msgstr "S'ha trobat un toctree autoreferenciat. S'ignora." @@ -2428,7 +2587,7 @@ msgid "unknown index entry type %r" msgstr "tipus d'entrada %r amb un índex desconegut" #: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "Símbols" @@ -2464,17 +2623,17 @@ msgstr "el fitxer d'imatge %s no es pot llegir: %s" msgid "download file not readable: %s" msgstr "el fitxer de baixada no es pot llegir: %s" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:235 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "%s ja té assignats números de secció (toctree amb numeració imbricada?)" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "S'hauria de crear el fitxer %s." -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2486,149 +2645,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "\nMireu recursivament a <MODULE_PATH> per als mòduls i paquets de Python\ni creeu un fitxer reST amb les directives «automodule» per paquet en el <OUTPUT_PATH>.\n\nEls <EXCLUDE_PATTERN> poden ser fitxers i/o patrons de directori que seran\nexclosos de la generació.\n\nNota: De manera predeterminada, aquest script no sobreescriurà els fitxers que ja s'han creat." -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "camí cap al mòdul que es documenta" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "fitxer d'estil fnmatch i/o patrons de directori que s'exclouran de la generació" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "directori per a col·locar tota la sortida" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "profunditat màxima dels submòduls que es mostraran a la TOC (predeterminada: 4)" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "sobreescriu els fitxers existents" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "seguir els enllaços simbòlics. Potent quan es combina amb el paquet collective.recipe.omelette." -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "executa l'script sense crear els fitxers" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "posa la documentació per a cada mòdul a la seva pròpia pàgina" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "inclou «_private» en els mòduls" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "nom de fitxer de la taula de contingut (predeterminat: mòduls)" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "no crea un fitxer de taula de contingut" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "no crea capçaleres per als paquets del mòdul/paquet (p. ex., quan les cadenes de documentació ja les contenen)" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "posa la documentació del mòdul abans de la documentació del submòdul" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "interpreta els camins dels mòduls segons l'especificació d'espais de noms implícits al PEP-0420" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "sufix del fitxer (predeterminat: rst)" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "genera un projecte complet amb «sphinx-quickstart»" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "afegeix module_path a sys.path, s'usa quan s'indica el paràmetre «--full»" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "nom del projecte (predeterminat: nom del mòdul arrel)" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "autoria del projecte, s'usa quan s'indica el paràmetre «--full»" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "versió del projecte, s'usa quan s'indica el paràmetre «--full»" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "llançament del projecte, s'usa quan s'indica el paràmetre «--full», predeterminat a «--doc-version»" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "opcions de l'extensió" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "%s no és cap directori." +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "la secció «%s» s'etiqueta com a «%s»" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "expressions regulars no vàlides %r a %s" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "el mòdul %s no s'ha pogut importar: %s" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "Proves de cobertura en les fonts acabades, mireu el resultat a %(outdir)spython.txt." -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "expressions regulars no vàlides %r a coverage_c_regexes" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "API de C sense documentar: %s [ %s] en el fitxer %s" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "el mòdul %s no s'ha pogut importar: %s" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "funció de Python sense documentar: %s :: %s" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "classe de Python sense documentar: %s :: %s" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "mètode de Python sense documentar: %s :: %s :: %s" @@ -2669,7 +2850,7 @@ msgstr "no hi ha codi/sortida en el bloc %s a %s:%s" msgid "ignoring invalid doctest code: %r" msgstr "s'ignora el codi doctest no vàlid: %r" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "==================== durades de lectura més lentes =====================" @@ -2745,7 +2926,7 @@ msgstr "[gràfica: %s]" msgid "[graph]" msgstr "[gràfica]" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2753,7 +2934,7 @@ msgid "" "Traceback: %s" msgstr "No es pot executar l'ordre de conversió d'imatges %r. «sphinx.ext.imgconverter» requereix de manera predeterminada ImageMagick. Assegureu-vos que està instal·lat o configureu l'opció «image_converter» a una ordre de conversió personalitzada.\n\nTraça: %s" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2763,99 +2944,39 @@ msgid "" "%r" msgstr "«convert» ha sortit amb un error:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "l'ordre «convert» %r no s'ha pogut executar, comproveu la configuració d'«image_converter»" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "l'ordre de LaTeX %r no s'ha pogut executar (necessària per a la visualització matemàtica), comproveu la configuració d'«imgmath_latex»" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "%s l'ordre de %r no s'ha pogut executar (necessària per a la visualització matemàtica), comproveu la configuració d'«imgmath_%s»" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "visualització de latex %r: %s" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "latex inclòs %r: %s" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "Enllaça amb aquesta equació" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "l'inventari intersphinx s'ha mogut: %s -> %s" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "s'està carregant l'inventari intersphinx des de %s..." - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "s'han trobat alguns problemes amb alguns dels inventaris, però tenien alternatives funcionals:" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "s'ha fallat en arribar a cap dels inventaris amb els problemes següents:" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "(a %s versió %s)" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "(a %s)" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "no es troba l'inventari per a la referència creuada externa: %r" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "no es troba l'inventari per a la referència creuada externa: %r" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "no es troba el domini per a la referència creuada externa: %r" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "%s externa: no es troba la destinació de la referència %s: %s" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "l'identificador %r d'intersphinx no és una cadena. S'ignora" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "Ha fallat en llegir intersphinx_mapping[%s], s'ignora: %r" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[font]" @@ -3031,23 +3152,23 @@ msgstr "Ha fallat en actualitzar la signatura per a %r: no es troba el paràmetr msgid "Failed to parse type_comment for %r: %s" msgstr "Ha fallat en analitzar type_comment per a %r: %s" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "referències autosummary excloses del document %r. S'ignora." -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "autosummary: no s'ha trobat el fitxer stub %r. Verifiqueu la vostra configuració autosummary_generate." -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "Un resum automàtic amb subtítols requereix l'opció «:toctree:». S'ignora." -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3055,46 +3176,52 @@ msgid "" "%s" msgstr "autosummary: ha fallat en importar %s.\nPossibles pistes:\n%s" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "ha fallat en analitzar el nom %s" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "ha fallat en importar l'objecte %s" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: no s'ha trobat el fitxer: %s" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "«autosummary» genera internament els fitxers «.rst». Però el vostre source_suffix no conté cap «.rst». S'omet." -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "autosummary: ha fallat en determinar %r que s'ha de documentar, s'ha plantejat l'excepció següent:\n%s" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[autosummary] s'està generant autosummary per a: %s" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "[autosummary] s'està escrivint a %s" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3102,7 +3229,7 @@ msgid "" "%s" msgstr "[autosummary]: ha fallat en importar %s.\nPossibles pistes:\n%s" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3117,36 +3244,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\nGenera ReStructuredText mitjançant directrius de resum automàtic «autosummary».\n\n«sphinx-autogen» és un frontal per a sphinx.ext.autosummary.generate.\nGenera els fitxers en reStructuredText des de les directrius d'autosummary\ncontingudes en els fitxers d'entrada indicats.\n\nEl format de les directrius d'autosummary està documentat en el mòdul\n``sphinx.ext.autosummary`` de Python i es pot llegir mitjançant l'ordre següent::\n\npydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "fitxers font per a generar els fitxers rST per a" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "directori per a col·locar tota la sortida a" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "sufix predeterminat per als fitxers (predeterminat: %(default)s)" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "directori de plantilles personalitzades (predeterminat: %(default)s)" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "document de membres importats (predeterminat: %(default)s)" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "documenta exactament els membres en l'atribut __all__ del mòdul. (predeterminat: %(default)s)" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "l'identificador %r d'intersphinx no és una cadena. S'ignora" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "Ha fallat en llegir intersphinx_mapping[%s], s'ignora: %r" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "s'han trobat alguns problemes amb alguns dels inventaris, però tenien alternatives funcionals:" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "s'ha fallat en arribar a cap dels inventaris amb els problemes següents:" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "l'inventari intersphinx s'ha mogut: %s -> %s" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "(a %s versió %s)" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "(a %s)" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "no es troba l'inventari per a la referència creuada externa: %r" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "no es troba l'inventari per a la referència creuada externa: %r" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "no es troba el domini per a la referència creuada externa: %r" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "%s externa: no es troba la destinació de la referència %s: %s" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "Arguments de paraules clau" @@ -3203,65 +3395,65 @@ msgstr "Cadena incorrecta literal (manquen les cometes de tancament): %s" msgid "malformed string literal (missing opening quote): %s" msgstr "Cadena incorrecta literal (manquen les cometes d'obertura): %s" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "Atenció" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "Compte" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "Perill" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "Error" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "Suggeriment" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "Important" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "Nota" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "Vegeu també" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "Truc" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "Avís" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "ve de la pàgina anterior" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "continua a la pàgina següent" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "No alfabètic" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "Números" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "pàgina" @@ -3270,7 +3462,7 @@ msgstr "pàgina" msgid "Table of Contents" msgstr "Taula de continguts" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Cerca" @@ -3328,12 +3520,12 @@ msgstr "accés ràpid a tots els mòduls" msgid "all functions, classes, terms" msgstr "totes les funcions, classes, termes" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" -msgstr "Índex – %(key)s" +msgid "Index – %(key)s" +msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3352,31 +3544,31 @@ msgstr "pot ser gegant" msgid "Navigation" msgstr "Navegació" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "Cerca dins de %(docstitle)s" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "Quant a aquests documents" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "Copyright" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "© %(copyright_prefix)s %(copyright)s." -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Darrera actualització el %(last_updated)s." -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3479,7 +3671,7 @@ msgstr "S'està cercant" msgid "Preparing search..." msgstr "S'està preparant la cerca..." -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr ", a " @@ -3488,11 +3680,11 @@ msgid "Hide Search Matches" msgstr "Oculta els resultats de cerca" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "Redueix la barra lateral" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "Expandeix la barra lateral" @@ -3568,17 +3760,17 @@ msgstr "%s:%s no es troba la destinació de la referència: %s" msgid "%r reference target not found: %s" msgstr "%r no es troba la destinació de la referència: %s" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "No s'ha pogut recuperar la imatge remota: %s [%d]" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "No s'ha pogut recuperar la imatge remota: %s [%s]" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "Format d'imatge desconegut: %s..." @@ -3588,11 +3780,11 @@ msgstr "Format d'imatge desconegut: %s..." msgid "undecodable source characters, replacing with \"?\": %r" msgstr "caràcters font no codificables, substituint per «?»: %r" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:80 msgid "skipped" msgstr "s'omet" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:85 msgid "failed" msgstr "ha fallat" @@ -3603,12 +3795,12 @@ msgid "" "not in the domain." msgstr "Problema en el domini %s: se suposa que el camp usa el rol «%s», però no es troba en el domini." -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "directiva o nom de rol desconegut: %s:%s" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "tipus de node desconegut: %r" @@ -3635,18 +3827,23 @@ msgid "" "it directly: %s" msgstr "Format de data no vàlid. Citeu la cadena amb cometes senzilles si voleu generar-la directament: %s" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "%r està en desús per a les entrades d'índex (des de l'entrada %r). En el seu lloc useu «pair: %s»." -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "el toctree conté una referència cap al fitxer %r que no existeix" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "excepció mentre només s'avaluava l'expressió directiva: %s" @@ -3656,45 +3853,50 @@ msgstr "excepció mentre només s'avaluava l'expressió directiva: %s" msgid "default role %s not found" msgstr "no s'ha trobat el rol predeterminat %s" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "Enllaça amb aquesta definició" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "numfig_format no s'ha definit per a %s" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "Qualsevol ID no assignat per al node %s" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "Enllaça amb aquest terme" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "Enllaça amb aquesta capçalera" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "Enllaça amb aquesta taula" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:977 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "Enllaça amb aquest codi" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "Enllaça amb aquesta imatge" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "Enllaça amb aquest toctree" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "No s'ha pogut obtenir la mida de la imatge. S'ignora l'opció «:scale:»." @@ -3707,31 +3909,36 @@ msgstr "%r toplevel_sectioning desconegut per a la classe %r" msgid "too large :maxdepth:, ignored." msgstr ":maxdepth: massa gran, s'ignora." -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "el títol del document no és només un node de text" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "el node del títol no s'ha trobat en la secció, tema, taula, advertiment o nota al marge" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:968 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "Notes al peu" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1050 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "s'indiquen tant les columnes tabulars com l'opció «:widths:». S'ignora l'opció «:widths:»." -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1410 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "la unitat de dimensió %s no és vàlida. S'ignora." -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1744 #, python-format msgid "unknown index entry type %s found" msgstr "s'ha trobat el tipus d'entrada %s amb un índex desconegut" @@ -3745,11 +3952,11 @@ msgstr "[imatge: %s]" msgid "[image]" msgstr "[imatge]" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "el subtítol no es troba dins d'una figura." -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "tipus de node sense implementar: %r" diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.js b/sphinx/locale/cak/LC_MESSAGES/sphinx.js index a334f37..7a2fd6f 100644 --- a/sphinx/locale/cak/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/cak/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "", "Hide Search Matches": "", "Index": "Cholwuj", - "Index – %(key)s": "", + "Index – %(key)s": "", "Index pages by letter": "", "Indices and tables:": "", "Last updated on %(last_updated)s.": "", diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.mo b/sphinx/locale/cak/LC_MESSAGES/sphinx.mo index 708a4e1..0dcdff8 100644 Binary files a/sphinx/locale/cak/LC_MESSAGES/sphinx.mo and b/sphinx/locale/cak/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.po b/sphinx/locale/cak/LC_MESSAGES/sphinx.po index ba6e6ef..024f369 100644 --- a/sphinx/locale/cak/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cak/LC_MESSAGES/sphinx.po @@ -8,134 +8,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-14 04:28+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Julien Malard <julien.malard@mail.mcgill.ca>, 2019\n" "Language-Team: Kaqchikel (http://app.transifex.com/sphinx-doc/sphinx-1/language/cak/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: cak\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:179 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:183 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:187 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:197 +#: sphinx/application.py:219 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:219 +#: sphinx/application.py:241 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:235 +#: sphinx/application.py:257 msgid "making output directory" msgstr "" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:262 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:268 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:303 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:320 sphinx/util/display.py:87 msgid "done" msgstr "xk'isïk" -#: sphinx/application.py:296 +#: sphinx/application.py:322 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:310 +#: sphinx/application.py:336 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:344 #, python-format msgid "failed: %s" msgstr "sachoj: %s" -#: sphinx/application.py:332 +#: sphinx/application.py:357 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:390 msgid "succeeded" msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:391 msgid "finished with problems" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:395 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:400 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:377 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:406 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:610 +#: sphinx/application.py:641 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:720 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:742 sphinx/application.py:764 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1313 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1317 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1320 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,75 +156,77 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1324 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1332 sphinx/application.py:1336 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -232,62 +234,62 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "Ruwachib'äl %s" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "Kik'ajtz'ïk %s" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -488,190 +490,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "Rusachoj nuk'unem:" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "Rusachoj kamulunem:" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:615 +#: sphinx/builders/__init__.py:642 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:590 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:599 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:602 msgid "copying assets" msgstr "" @@ -680,7 +834,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:757 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" @@ -690,7 +844,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:765 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -815,7 +969,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1184 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -848,7 +1002,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:480 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:691 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -933,7 +1092,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1135 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -959,164 +1118,169 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:390 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/builders/html/__init__.py:485 sphinx/builders/latex/__init__.py:189 #: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:504 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Konojel cholwuj" -#: sphinx/builders/html/__init__.py:506 +#: sphinx/builders/html/__init__.py:504 msgid "index" msgstr "cholwuj" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:553 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:578 msgid "next" msgstr "jun chïk" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:587 msgid "previous" msgstr "chi rij kan" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:683 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:698 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:775 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:783 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:816 sphinx/builders/html/__init__.py:828 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:849 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:865 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:870 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:876 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:883 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:932 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:976 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1118 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1151 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1159 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1207 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1238 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1246 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1259 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1263 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1272 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1281 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1288 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "" @@ -1142,19 +1306,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "Cholwuj" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "" @@ -1212,18 +1378,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "Rusachoj nuk'unem:" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1231,27 +1389,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "Rusachoj kamulunem:" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1263,7 +1400,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1352,7 +1489,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1363,7 +1500,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1645,12 +1782,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1759,12 +1896,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1796,11 +1933,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1828,85 +1965,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "" @@ -1914,7 +2051,7 @@ msgstr "" msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1964,7 +2101,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1979,7 +2116,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -1988,52 +2125,52 @@ msgstr "" msgid "Arguments" msgstr "" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 #: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 msgid "Returns" msgstr "" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 #: sphinx/domains/python/_object.py:177 msgid "Return type" msgstr "" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "Ruwäch" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2043,7 +2180,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2274 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2080,169 +2217,178 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 #: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "Jalajöj" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "retal jalöj" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr "" @@ -2254,158 +2400,171 @@ msgstr "Retal jalöj" msgid "Raises" msgstr "" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "wuj" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:373 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:472 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:614 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:748 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:784 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2425,7 +2584,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "" @@ -2461,17 +2620,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:235 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2483,149 +2642,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2666,7 +2847,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2742,7 +2923,7 @@ msgstr "" msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2750,7 +2931,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2760,99 +2941,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "(chupam %s)" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" @@ -3028,23 +3149,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3052,46 +3173,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3099,7 +3226,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3114,36 +3241,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "(chupam %s)" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" @@ -3200,65 +3392,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "Sachoj" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "Tatz'u chuqa'" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "Ajilanïk" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "" @@ -3267,7 +3459,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "" @@ -3325,12 +3517,12 @@ msgstr "" msgid "all functions, classes, terms" msgstr "" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" +msgid "Index – %(key)s" msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3349,31 +3541,31 @@ msgstr "" msgid "Navigation" msgstr "" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3476,7 +3668,7 @@ msgstr "" msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr ", pa" @@ -3485,11 +3677,11 @@ msgid "Hide Search Matches" msgstr "" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "" @@ -3565,17 +3757,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3585,11 +3777,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:80 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:85 msgid "failed" msgstr "" @@ -3600,12 +3792,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3632,18 +3824,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3653,45 +3850,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:977 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3704,31 +3906,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:968 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1050 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1410 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1744 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3742,11 +3949,11 @@ msgstr "[wachib'äl: %s]" msgid "[image]" msgstr "[wachib'äl]" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.js b/sphinx/locale/cs/LC_MESSAGES/sphinx.js index 6423fdf..eea59ee 100644 --- a/sphinx/locale/cs/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/cs/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "OK", "Hide Search Matches": "Skr\u00fdt v\u00fdsledky vyhled\u00e1v\u00e1n\u00ed", "Index": "Rejst\u0159\u00edk", - "Index – %(key)s": "Rejst\u0159\u00edk – %(key)s", + "Index – %(key)s": "", "Index pages by letter": "Rejst\u0159\u00edk podle p\u00edsmene", "Indices and tables:": "Rejst\u0159\u00edky a tabulky:", "Last updated on %(last_updated)s.": "Aktualizov\u00e1no dne %(last_updated)s.", diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.mo b/sphinx/locale/cs/LC_MESSAGES/sphinx.mo index ab15ff4..31d264a 100644 Binary files a/sphinx/locale/cs/LC_MESSAGES/sphinx.mo and b/sphinx/locale/cs/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.po b/sphinx/locale/cs/LC_MESSAGES/sphinx.po index 562d028..21d71df 100644 --- a/sphinx/locale/cs/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cs/LC_MESSAGES/sphinx.po @@ -9,134 +9,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-14 04:28+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Vilibald W. <vilibald.wanca@gmail.com>, 2014-2015\n" "Language-Team: Czech (http://app.transifex.com/sphinx-doc/sphinx-1/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: cs\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" -#: sphinx/application.py:157 +#: sphinx/application.py:179 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:183 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:187 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:197 +#: sphinx/application.py:219 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:219 +#: sphinx/application.py:241 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:235 +#: sphinx/application.py:257 msgid "making output directory" msgstr "" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:262 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:268 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:303 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:320 sphinx/util/display.py:87 msgid "done" msgstr "" -#: sphinx/application.py:296 +#: sphinx/application.py:322 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:310 +#: sphinx/application.py:336 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:344 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:332 +#: sphinx/application.py:357 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:390 msgid "succeeded" msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:391 msgid "finished with problems" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:395 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:400 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:377 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:406 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:610 +#: sphinx/application.py:641 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:720 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:742 sphinx/application.py:764 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1313 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -144,12 +144,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1317 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1320 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,75 +157,77 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1324 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1332 sphinx/application.py:1336 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -233,62 +235,62 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "Obr. %s" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "Tabulka %s" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "Výpis %s" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -489,190 +491,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:615 +#: sphinx/builders/__init__.py:642 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:590 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:599 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:602 msgid "copying assets" msgstr "" @@ -681,7 +835,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:757 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" @@ -691,7 +845,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:765 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -816,7 +970,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1184 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -849,7 +1003,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:480 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:691 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -934,7 +1093,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1135 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -960,164 +1119,169 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:390 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/builders/html/__init__.py:485 sphinx/builders/latex/__init__.py:189 #: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%d.%m.%Y" -#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:504 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Obecný rejstřík" -#: sphinx/builders/html/__init__.py:506 +#: sphinx/builders/html/__init__.py:504 msgid "index" msgstr "rejstřík" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:553 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:578 msgid "next" msgstr "další" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:587 msgid "previous" msgstr "předchozí" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:683 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:698 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:775 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:783 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:816 sphinx/builders/html/__init__.py:828 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:849 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:865 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:870 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:876 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:883 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:932 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:976 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1118 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1151 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1159 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1207 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1238 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1246 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1259 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1263 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1272 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1281 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1288 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "Dokumentace pro %s %s" @@ -1143,19 +1307,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "Rejstřík" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "Vydání" @@ -1213,18 +1379,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1232,27 +1390,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1264,7 +1401,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1353,7 +1490,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1364,7 +1501,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1646,12 +1783,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1760,12 +1897,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1797,11 +1934,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1829,85 +1966,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "Autor sekce: " -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "Autor modulu: " -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "Autor kódu:" -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "Autor: " @@ -1915,7 +2052,7 @@ msgstr "Autor: " msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1965,7 +2102,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (vestavěná funkce)" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "%s() (metoda %s)" @@ -1980,7 +2117,7 @@ msgstr "%s() (třída)" msgid "%s (global variable or constant)" msgstr "%s (globální proměnná nebo konstanta)" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" @@ -1989,52 +2126,52 @@ msgstr "%s (atribut %s)" msgid "Arguments" msgstr "Argumenty" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "Vyvolá" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 #: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 msgid "Returns" msgstr "Vrací" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 #: sphinx/domains/python/_object.py:177 msgid "Return type" msgstr "Typ návratové hodnoty" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "funkce" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "metoda" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "třída" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "atribut" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "modul" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2044,7 +2181,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2274 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2081,169 +2218,178 @@ msgstr "role" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 #: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "Parametry" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "člen" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "proměnná" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "makro" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "typ" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "%s() (v modulu %s)" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "%s (v modulu %s)" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "%s (vestavěná proměnná)" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "%s (vestavěná třída)" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "%s (třída v %s)" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "%s() (třídní metoda %s)" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statická metoda %s)" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "Rejstřík modulů Pythonu" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "moduly" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "Zastaralé" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "výjimka" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "třídní metoda" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "statická metoda" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr " (zastaralé)" @@ -2255,158 +2401,171 @@ msgstr "Proměnné" msgid "Raises" msgstr "Vyvolá" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "proměnná prostředí; %s" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "termín v glosáři" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "token gramatiky" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "referenční návěstí" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "proměnná prostředí" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "volba programu" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "Rejstřík modulů" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Vyhledávací stránka" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:373 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:472 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:614 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:748 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:784 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2426,7 +2585,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "Symboly" @@ -2462,17 +2621,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:235 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2484,149 +2643,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2667,7 +2848,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2743,7 +2924,7 @@ msgstr "[graf: %s]" msgid "[graph]" msgstr "[graf]" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2751,7 +2932,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2761,99 +2942,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "(v %s v%s)" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[zdroj]" @@ -3029,23 +3150,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3053,46 +3174,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3100,7 +3227,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3115,36 +3242,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "(v %s v%s)" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" @@ -3201,65 +3393,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "Výstraha" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "Upozornění" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "Nebezpečí" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "Chyba" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "Rada" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "Důležité" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "Poznámka" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "Viz také" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "Tip" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "Varování" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "pokračujte na předchozí stránce" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "" @@ -3268,7 +3460,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Vyhledávání" @@ -3326,12 +3518,12 @@ msgstr "rychlý přístup ke všem modulům" msgid "all functions, classes, terms" msgstr "všechny funkce, třídy, termíny" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" -msgstr "Rejstřík – %(key)s" +msgid "Index – %(key)s" +msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3350,31 +3542,31 @@ msgstr "může být obrovský" msgid "Navigation" msgstr "Navigace" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "Prohledat %(docstitle)s" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "O těchto dokumentech" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "Veškerá práva vyhrazena" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Aktualizováno dne %(last_updated)s." -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3477,7 +3669,7 @@ msgstr "Probíhá vyhledání" msgid "Preparing search..." msgstr "Vyhledávání se připravuje..." -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr ", v " @@ -3486,11 +3678,11 @@ msgid "Hide Search Matches" msgstr "Skrýt výsledky vyhledávání" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "Sbalit boční lištu" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "Rozbalit boční lištu" @@ -3566,17 +3758,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3586,11 +3778,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:80 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:85 msgid "failed" msgstr "" @@ -3601,12 +3793,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3633,18 +3825,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3654,45 +3851,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:977 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3705,31 +3907,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:968 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "Poznámky pod čarou" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1050 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1410 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1744 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3743,11 +3950,11 @@ msgstr "[obrázek: %s]" msgid "[image]" msgstr "[obrázek]" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.js b/sphinx/locale/cy/LC_MESSAGES/sphinx.js index 887b9fa..4a3c58d 100644 --- a/sphinx/locale/cy/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/cy/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "Ewch", "Hide Search Matches": "Cuddio Canlyniadau Chwilio", "Index": "Indecs", - "Index – %(key)s": "Indecs – %(key)s", + "Index – %(key)s": "", "Index pages by letter": "Indecs tudalennau gan lythyren", "Indices and tables:": "Indecsau a tablau:", "Last updated on %(last_updated)s.": "Diweddarwyd yn ddiwethaf ar %(last_updated)s.", diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.mo b/sphinx/locale/cy/LC_MESSAGES/sphinx.mo index 1bfcdd3..84f8887 100644 Binary files a/sphinx/locale/cy/LC_MESSAGES/sphinx.mo and b/sphinx/locale/cy/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.po b/sphinx/locale/cy/LC_MESSAGES/sphinx.po index d4ef801..e8f2792 100644 --- a/sphinx/locale/cy/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cy/LC_MESSAGES/sphinx.po @@ -9,134 +9,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-14 04:28+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Geraint Palmer <palmer.geraint@googlemail.com>, 2016\n" "Language-Team: Welsh (http://app.transifex.com/sphinx-doc/sphinx-1/language/cy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: cy\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" -#: sphinx/application.py:157 +#: sphinx/application.py:179 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:183 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:187 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:197 +#: sphinx/application.py:219 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:219 +#: sphinx/application.py:241 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:235 +#: sphinx/application.py:257 msgid "making output directory" msgstr "" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:262 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:268 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:303 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:320 sphinx/util/display.py:87 msgid "done" msgstr "" -#: sphinx/application.py:296 +#: sphinx/application.py:322 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:310 +#: sphinx/application.py:336 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:344 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:332 +#: sphinx/application.py:357 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:390 msgid "succeeded" msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:391 msgid "finished with problems" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:395 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:400 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:377 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:406 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:610 +#: sphinx/application.py:641 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:720 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:742 sphinx/application.py:764 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1313 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -144,12 +144,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1317 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1320 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,75 +157,77 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1324 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1332 sphinx/application.py:1336 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -233,62 +235,62 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "Ffig. %s" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "Tabl %s" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "Listing %s" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -489,190 +491,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:615 +#: sphinx/builders/__init__.py:642 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:590 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:599 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:602 msgid "copying assets" msgstr "" @@ -681,7 +835,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:757 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" @@ -691,7 +845,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:765 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -816,7 +970,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1184 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -849,7 +1003,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:480 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:691 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -934,7 +1093,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1135 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -960,164 +1119,169 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:390 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/builders/html/__init__.py:485 sphinx/builders/latex/__init__.py:189 #: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:504 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Indecs cyffredinol" -#: sphinx/builders/html/__init__.py:506 +#: sphinx/builders/html/__init__.py:504 msgid "index" msgstr "indecs" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:553 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:578 msgid "next" msgstr "nesaf" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:587 msgid "previous" msgstr "blaenorol" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:683 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:698 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:775 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:783 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:816 sphinx/builders/html/__init__.py:828 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:849 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:865 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:870 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:876 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:883 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:932 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:976 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1118 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1151 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1159 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1207 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1238 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1246 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1259 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1263 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1272 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1281 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1288 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "Dogfennaeth %s %s " @@ -1143,19 +1307,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "Indecs" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "Rhyddhad" @@ -1213,18 +1379,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1232,27 +1390,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1264,7 +1401,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1353,7 +1490,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1364,7 +1501,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1646,12 +1783,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1760,12 +1897,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1797,11 +1934,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1829,85 +1966,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "Awdur yr adran:" -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "Awdur y fodiwl:" -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "Awdur y cod:" -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "Awdur:" @@ -1915,7 +2052,7 @@ msgstr "Awdur:" msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1965,7 +2102,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1980,7 +2117,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "%s (newidyn byd-eang neu cysonyn)" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -1989,52 +2126,52 @@ msgstr "" msgid "Arguments" msgstr "" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 #: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 msgid "Returns" msgstr "" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 #: sphinx/domains/python/_object.py:177 msgid "Return type" msgstr "" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "ffwythiant" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "modiwl" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2044,7 +2181,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2274 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2081,169 +2218,178 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 #: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "Paramedrau" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "aelod" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr "" @@ -2255,158 +2401,171 @@ msgstr "" msgid "Raises" msgstr "" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "Indecs Modiwlau" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Tudalen Chwilio" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:373 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:472 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:614 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:748 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:784 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2426,7 +2585,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "Symbolau" @@ -2462,17 +2621,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:235 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2484,149 +2643,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2667,7 +2848,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2743,7 +2924,7 @@ msgstr "[graff: %s]" msgid "[graph]" msgstr "[graff]" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2751,7 +2932,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2761,99 +2942,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "(yn %s v%s)" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[ffynhonnell]" @@ -3029,23 +3150,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3053,46 +3174,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3100,7 +3227,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3115,36 +3242,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "(yn %s v%s)" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" @@ -3201,65 +3393,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "Sylw" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "Gofal" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "Perygl" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "Gwall" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "Awgrym" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "Pwysig" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "Nodyn" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "Gweler hefyd" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "Awgrym" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "Rhybudd" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "wedi'i barhau o'r tudalen blaenorol" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "" @@ -3268,7 +3460,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Chwilio" @@ -3326,12 +3518,12 @@ msgstr "mynediad cloi i bob modiwl" msgid "all functions, classes, terms" msgstr "holl ffwythiannau, dosbarthau a thermau" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" -msgstr "Indecs – %(key)s" +msgid "Index – %(key)s" +msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3350,31 +3542,31 @@ msgstr "gall fod yn enfawr" msgid "Navigation" msgstr "Llywio" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "Chwilio o fewn %(docstitle)s" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "Ynglŷn â'r dogfennau hyn" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "Hawlfraint" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Diweddarwyd yn ddiwethaf ar %(last_updated)s." -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3477,7 +3669,7 @@ msgstr "Yn chwilio" msgid "Preparing search..." msgstr "Paratoi chwilio..." -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr ", yn " @@ -3486,11 +3678,11 @@ msgid "Hide Search Matches" msgstr "Cuddio Canlyniadau Chwilio" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "Cyfangu'r bar ochr" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "Ehangu'r bar ochr" @@ -3566,17 +3758,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3586,11 +3778,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:80 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:85 msgid "failed" msgstr "" @@ -3601,12 +3793,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3633,18 +3825,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3654,45 +3851,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:977 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3705,31 +3907,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:968 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "Troednodiadau" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1050 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1410 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1744 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3743,11 +3950,11 @@ msgstr "[delwedd: %s]" msgid "[image]" msgstr "[delwedd]" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.js b/sphinx/locale/da/LC_MESSAGES/sphinx.js index 4a0a13f..b44fc38 100644 --- a/sphinx/locale/da/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/da/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "S\u00f8g", "Hide Search Matches": "Skjul s\u00f8geresultater", "Index": "Indeks", - "Index – %(key)s": "Indeks – %(key)s", + "Index – %(key)s": "", "Index pages by letter": "Indeks\u00e9r sider efter bogstav", "Indices and tables:": "Indeks og tabeller:", "Last updated on %(last_updated)s.": "Sidst opdateret %(last_updated)s.", diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.mo b/sphinx/locale/da/LC_MESSAGES/sphinx.mo index 613650f..712a4e4 100644 Binary files a/sphinx/locale/da/LC_MESSAGES/sphinx.mo and b/sphinx/locale/da/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.po b/sphinx/locale/da/LC_MESSAGES/sphinx.po index 3fbfa41..0504a6f 100644 --- a/sphinx/locale/da/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/da/LC_MESSAGES/sphinx.po @@ -11,134 +11,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-14 04:28+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>, 2021\n" "Language-Team: Danish (http://app.transifex.com/sphinx-doc/sphinx-1/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:179 #, python-format msgid "Cannot find source directory (%s)" msgstr "Kan ikke finde kildemappen (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:183 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:187 msgid "Source directory and destination directory cannot be identical" msgstr "Kildemappe og destinationsmappe kan ikke være identiske" -#: sphinx/application.py:197 +#: sphinx/application.py:219 #, python-format msgid "Running Sphinx v%s" msgstr "Kører Sphinx v%s" -#: sphinx/application.py:219 +#: sphinx/application.py:241 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Dette projekt kræver mindst Sphinx v%s og kan derfor ikke bygges med denne version." -#: sphinx/application.py:235 +#: sphinx/application.py:257 msgid "making output directory" msgstr "" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:262 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:268 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:303 #, python-format msgid "loading translations [%s]... " msgstr "indlæser oversættelser [%s] ..." -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:320 sphinx/util/display.py:87 msgid "done" msgstr "færdig" -#: sphinx/application.py:296 +#: sphinx/application.py:322 msgid "not available for built-in messages" msgstr "ikke tilgængelig for indbyggede beskeder" -#: sphinx/application.py:310 +#: sphinx/application.py:336 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:344 #, python-format msgid "failed: %s" msgstr "fejlede: %s" -#: sphinx/application.py:332 +#: sphinx/application.py:357 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:390 msgid "succeeded" msgstr "lykkedes" -#: sphinx/application.py:366 +#: sphinx/application.py:391 msgid "finished with problems" msgstr "færdig med problemer" -#: sphinx/application.py:370 +#: sphinx/application.py:395 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:400 #, python-format msgid "build %s, %s warning." msgstr "kompilering %s, %s advarsel." -#: sphinx/application.py:377 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:406 #, python-format msgid "build %s." msgstr "kompilering %s." -#: sphinx/application.py:610 +#: sphinx/application.py:641 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:720 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:742 sphinx/application.py:764 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1313 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -146,12 +146,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1317 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1320 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -159,75 +159,77 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1324 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1332 sphinx/application.py:1336 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "konfigurationsmappe indeholder ikke en conf.py-fil (%s)" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "Konfigurationsværdien %r er allerede til stede" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -235,62 +237,62 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "figur %s" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "tabel %s" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "Kildekode %s" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r blev ikke fundet, ignorerer." -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -491,190 +493,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "Kodningsfejl:" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:615 +#: sphinx/builders/__init__.py:642 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "læser kilder ..." -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:590 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:599 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "forbereder dokumenter" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:602 msgid "copying assets" msgstr "" @@ -683,7 +837,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:757 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" @@ -693,7 +847,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:765 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -818,7 +972,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1184 #, python-format msgid "invalid css_file: %r, ignored" msgstr "ugyldig css_file: %r, ignoreret" @@ -851,7 +1005,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:480 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:691 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -936,7 +1095,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1135 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -962,164 +1121,169 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "HTML-siderne er i %(outdir)s." -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:390 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/builders/html/__init__.py:485 sphinx/builders/latex/__init__.py:189 #: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%d. %b, %Y" -#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:504 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Generelt indeks" -#: sphinx/builders/html/__init__.py:506 +#: sphinx/builders/html/__init__.py:504 msgid "index" msgstr "indeks" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:553 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:578 msgid "next" msgstr "næste" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:587 msgid "previous" msgstr "forrige" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:683 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:698 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:775 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:783 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:816 sphinx/builders/html/__init__.py:828 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:849 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:865 #, python-format msgid "cannot copy static file %r" msgstr "kan ikke kopiere statisk fil %r" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:870 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:876 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:883 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:932 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:976 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1118 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1151 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1159 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1207 #, python-format msgid "invalid js_file: %r, ignored" msgstr "udgyldig js_file: %r, ignoreret" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1238 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1246 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1259 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1263 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1272 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1281 #, python-format msgid "favicon file %r does not exist" msgstr "favicon-filen %r findes ikke" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1288 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "%s %s dokumentation" @@ -1145,19 +1309,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "Indeks" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "Udgave" @@ -1215,18 +1381,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "Kodningsfejl:" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1234,27 +1392,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1266,7 +1403,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1355,7 +1492,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1366,7 +1503,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1648,12 +1785,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "Filen %s findes allerede, udelader." @@ -1762,12 +1899,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1799,11 +1936,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "skabelonmappe for skabelonfiler" @@ -1831,85 +1968,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "Afsnitsforfatter: " -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "Modulforfatter: " -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "Kodeforfatter: " -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "Forfatter: " @@ -1917,7 +2054,7 @@ msgstr "Forfatter: " msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1967,7 +2104,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (indbygget funktion)" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "%s() (metode i %s)" @@ -1982,7 +2119,7 @@ msgstr "%s() (klasse)" msgid "%s (global variable or constant)" msgstr "%s (global variabel eller konstant)" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "%s (attribut i %s)" @@ -1991,52 +2128,52 @@ msgstr "%s (attribut i %s)" msgid "Arguments" msgstr "Parametre" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "Kaster" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 #: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 msgid "Returns" msgstr "Returnerer" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 #: sphinx/domains/python/_object.py:177 msgid "Return type" msgstr "Returtype" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "funktion" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "metode" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "klasse" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "attribut" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "modul" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2046,7 +2183,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2274 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2083,169 +2220,178 @@ msgstr "rolle" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 #: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "Parametre" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "medlem" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "variabel" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "makro" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "optæl" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "optælling" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "type" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "Template-parametre" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "koncept" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "%s() (i modulet %s)" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "%s (i modulet %s)" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "%s (indbygget variabel)" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "%s (indbygget klasse)" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "%s (klasse i %s)" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "%s() (klassemetode i %s)" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statisk metode i %s)" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "Python-modulindeks" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "moduler" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "Forældet" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "undtagelse" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "klassemetode" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "statisk metode" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr " (forældet)" @@ -2257,158 +2403,171 @@ msgstr "Variable" msgid "Raises" msgstr "Rejser" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "miljøvariabel; %s" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "begreb i ordliste" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "grammatisk element" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "referenceetiket" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "miljøvariabel" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "programtilvalg" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "dokument" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "Modulindeks" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Søgeside" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "ny konfiguration" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "udvidelser ændret" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "kildemappe er ændret" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:373 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:472 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:614 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:748 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:784 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2428,7 +2587,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "Symboler" @@ -2464,17 +2623,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:235 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2486,149 +2645,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "overskriv eksisterende filer" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "%s er ikke en mappe" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2669,7 +2850,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2745,7 +2926,7 @@ msgstr "[graf: %s]" msgid "[graph]" msgstr "[graf]" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2753,7 +2934,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2763,99 +2944,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "(i %s v%s)" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[kilde]" @@ -3031,23 +3152,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3055,46 +3176,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3102,7 +3229,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3117,36 +3244,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "(i %s v%s)" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "Nøgleordsargumenter" @@ -3203,65 +3395,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "Vær opmærksom" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "Forsigtig" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "Fare" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "Fejl" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "Fif" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "Vigtigt" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "Bemærk" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "Se også" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "Tip" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "Advarsel" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "fortsat fra forrige side" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "fortsætter på næste side" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "side" @@ -3270,7 +3462,7 @@ msgstr "side" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Søg" @@ -3328,12 +3520,12 @@ msgstr "hurtig adgang til alle moduler" msgid "all functions, classes, terms" msgstr "alle funktioner, klasser, begreber" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" -msgstr "Indeks – %(key)s" +msgid "Index – %(key)s" +msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3352,31 +3544,31 @@ msgstr "kan være enormt" msgid "Navigation" msgstr "Navigation" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "Søg i %(docstitle)s" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "Om disse dokumenter" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "Ophavsret" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Sidst opdateret %(last_updated)s." -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3479,7 +3671,7 @@ msgstr "Søger" msgid "Preparing search..." msgstr "Forbereder søgning..." -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr ", i" @@ -3488,11 +3680,11 @@ msgid "Hide Search Matches" msgstr "Skjul søgeresultater" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "Sammenfold sidebjælke" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "Udfold sidebjælke" @@ -3568,17 +3760,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3588,11 +3780,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:80 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:85 msgid "failed" msgstr "" @@ -3603,12 +3795,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3635,18 +3827,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3656,45 +3853,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:977 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3707,31 +3909,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:968 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "Fodnoter" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1050 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1410 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1744 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3745,11 +3952,11 @@ msgstr "[billede: %s]" msgid "[image]" msgstr "[billede]" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.js b/sphinx/locale/de/LC_MESSAGES/sphinx.js index 2106c7d..e711619 100644 --- a/sphinx/locale/de/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/de/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "Los", "Hide Search Matches": "Suchergebnisse ausblenden", "Index": "Stichwortverzeichnis", - "Index – %(key)s": "Stichwortverzeichnis – %(key)s", + "Index – %(key)s": "", "Index pages by letter": "Stichwortverzeichnis nach Anfangsbuchstabe", "Indices and tables:": "Verzeichnisse und Tabellen:", "Last updated on %(last_updated)s.": "Zuletzt aktualisiert am %(last_updated)s.", diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.mo b/sphinx/locale/de/LC_MESSAGES/sphinx.mo index 5b9cb88..6429f0c 100644 Binary files a/sphinx/locale/de/LC_MESSAGES/sphinx.mo and b/sphinx/locale/de/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.po b/sphinx/locale/de/LC_MESSAGES/sphinx.po index 2782028..30ca08d 100644 --- a/sphinx/locale/de/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/de/LC_MESSAGES/sphinx.po @@ -11,134 +11,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-14 04:28+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Jean-François B. <jfbu@free.fr>, 2018\n" "Language-Team: German (http://app.transifex.com/sphinx-doc/sphinx-1/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:179 #, python-format msgid "Cannot find source directory (%s)" msgstr "Kann Quellverzeichnis nicht finden (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:183 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:187 msgid "Source directory and destination directory cannot be identical" msgstr "Quellverzeichnis und Zielverzeichnis können nicht identisch sein" -#: sphinx/application.py:197 +#: sphinx/application.py:219 #, python-format msgid "Running Sphinx v%s" msgstr "Sphinx v%s in Verwendung" -#: sphinx/application.py:219 +#: sphinx/application.py:241 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Dieses Projekt benötigt Version %s oder später und kann daher nicht gebaut werden." -#: sphinx/application.py:235 +#: sphinx/application.py:257 msgid "making output directory" msgstr "" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:262 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:268 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:303 #, python-format msgid "loading translations [%s]... " msgstr "Lade Übersetzungen [%s]…" -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:320 sphinx/util/display.py:87 msgid "done" msgstr "erledigt" -#: sphinx/application.py:296 +#: sphinx/application.py:322 msgid "not available for built-in messages" msgstr "nicht verfügbar für vordefinierte Nachrichten" -#: sphinx/application.py:310 +#: sphinx/application.py:336 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:344 #, python-format msgid "failed: %s" msgstr "Fehlgeschlagen: %s" -#: sphinx/application.py:332 +#: sphinx/application.py:357 msgid "No builder selected, using default: html" msgstr "Kein builder ausgewählt, verwende 'html' per default" -#: sphinx/application.py:365 +#: sphinx/application.py:390 msgid "succeeded" msgstr "abgeschlossen" -#: sphinx/application.py:366 +#: sphinx/application.py:391 msgid "finished with problems" msgstr "mit Problemen beendet" -#: sphinx/application.py:370 +#: sphinx/application.py:395 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:400 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:377 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:406 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:610 +#: sphinx/application.py:641 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:720 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:742 sphinx/application.py:764 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1313 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -146,12 +146,12 @@ msgid "" "explicit" msgstr "Die Erweiterung %s gibt nicht an ob paralleles Datenlesen fehlerfrei möglich ist, es wird daher nicht davon ausgegangen - bitte kontaktiere den Erweiterungsautor zur Überprüfung und Angabe" -#: sphinx/application.py:1286 +#: sphinx/application.py:1317 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1320 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -159,75 +159,77 @@ msgid "" "explicit" msgstr "Die Erweiterung %s gibt nicht an ob paralleles Datenschreiben fehlerfrei möglich ist, es wird daher nicht davon ausgegangen - bitte kontaktiere den Erweiterungsautor zur Überprüfung und Angabe" -#: sphinx/application.py:1293 +#: sphinx/application.py:1324 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1332 sphinx/application.py:1336 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "Konfigurationsverzeichnis enthält keine conf.py Datei (%s)" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "Ungültige Nummer %r for Konfiguration %r, wird ignoriert" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "Konfigurationswert %r bereits gesetzt" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -235,62 +237,62 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "Abschnitt %s" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "Abb. %s" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "Tab. %s" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "Quellcode %s" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r nicht gefunden, daher ignoriert." -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -491,190 +493,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:615 +#: sphinx/builders/__init__.py:642 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:590 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:599 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:602 msgid "copying assets" msgstr "" @@ -683,7 +837,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:757 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" @@ -693,7 +847,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:765 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -818,7 +972,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1184 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -851,7 +1005,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:480 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:691 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -936,7 +1095,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1135 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -962,164 +1121,169 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:390 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/builders/html/__init__.py:485 sphinx/builders/latex/__init__.py:189 #: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%d.%m.%Y" -#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:504 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Stichwortverzeichnis" -#: sphinx/builders/html/__init__.py:506 +#: sphinx/builders/html/__init__.py:504 msgid "index" msgstr "Index" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:553 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:578 msgid "next" msgstr "weiter" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:587 msgid "previous" msgstr "zurück" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:683 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:698 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:775 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:783 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:816 sphinx/builders/html/__init__.py:828 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:849 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:865 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:870 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:876 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:883 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:932 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:976 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1118 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1151 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1159 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1207 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1238 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1246 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1259 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1263 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1272 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1281 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1288 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "%s %s Dokumentation" @@ -1145,19 +1309,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "Stichwortverzeichnis" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "Release" @@ -1215,18 +1381,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1234,27 +1392,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1266,7 +1403,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1355,7 +1492,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1366,7 +1503,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1648,12 +1785,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1762,12 +1899,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1799,11 +1936,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1831,85 +1968,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "Autor des Abschnitts: " -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "Autor des Moduls: " -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "Autor des Quellcode: " -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "Autor: " @@ -1917,7 +2054,7 @@ msgstr "Autor: " msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1967,7 +2104,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (Standard-Funktion)" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "%s() (Methode von %s)" @@ -1982,7 +2119,7 @@ msgstr "%s() (Klasse)" msgid "%s (global variable or constant)" msgstr "%s (globale Variable oder Konstante)" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "%s (Attribut von %s)" @@ -1991,52 +2128,52 @@ msgstr "%s (Attribut von %s)" msgid "Arguments" msgstr "Parameter" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "Wirft" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 #: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 msgid "Returns" msgstr "Rückgabe" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 #: sphinx/domains/python/_object.py:177 msgid "Return type" msgstr "Rückgabetyp" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "%s (Modul)" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "Funktion" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "Methode" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "Klasse" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "Wert" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "Attribut" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "Modul" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2046,7 +2183,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2274 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2083,169 +2220,178 @@ msgstr "Rolle" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 #: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "Parameter" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "Member" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "Variable" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "Makro" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "Aufzählung" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "Enumerator" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "Typ" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "Template Parameter" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "%s() (im Modul %s)" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "%s (in Modul %s)" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "%s (Standard-Variable)" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "%s (Builtin-Klasse)" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "%s (Klasse in %s)" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "%s() (Klassenmethode von %s)" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statische Methode von %s)" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "Python-Modulindex" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "Module" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "Veraltet" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "Exception" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "Klassenmethode" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "statische Methode" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr " (veraltet)" @@ -2257,158 +2403,171 @@ msgstr "Variablen" msgid "Raises" msgstr "Verursacht" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "Umgebungsvariable; %s" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "Glossareintrag" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "Grammatik-Token" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "Referenz-Label" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "Umgebungsvariable" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "Programmoption" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "Modulindex" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Suche" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:373 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:472 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:614 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:748 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:784 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2428,7 +2587,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "Sonderzeichen" @@ -2464,17 +2623,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:235 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2486,149 +2645,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2669,7 +2850,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2745,7 +2926,7 @@ msgstr "[Diagramm: %s]" msgid "[graph]" msgstr "[Diagramm]" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2753,7 +2934,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2763,99 +2944,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "(in %s v%s)" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[Quellcode]" @@ -3031,23 +3152,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3055,46 +3176,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3102,7 +3229,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3117,36 +3244,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "(in %s v%s)" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" @@ -3203,65 +3395,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "Achtung" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "Vorsicht" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "Gefahr" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "Fehler" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "Hinweis" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "Wichtig" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "Bemerkung" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "Siehe auch" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "Tipp" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "Warnung" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "Fortsetzung der vorherigen Seite" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "Fortsetzung auf der nächsten Seite" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "Seite" @@ -3270,7 +3462,7 @@ msgstr "Seite" msgid "Table of Contents" msgstr "Inhaltsverzeichnis" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Suche" @@ -3328,12 +3520,12 @@ msgstr "schneller Zugriff auf alle Module" msgid "all functions, classes, terms" msgstr "alle Funktionen, Klassen, Begriffe" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" -msgstr "Stichwortverzeichnis – %(key)s" +msgid "Index – %(key)s" +msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3352,31 +3544,31 @@ msgstr "kann groß sein" msgid "Navigation" msgstr "Navigation" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "Suche in %(docstitle)s" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "Über dieses Dokument" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "Copyright" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Zuletzt aktualisiert am %(last_updated)s." -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3479,7 +3671,7 @@ msgstr "Suchen" msgid "Preparing search..." msgstr "Suche wird vorbereitet..." -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr ", in " @@ -3488,11 +3680,11 @@ msgid "Hide Search Matches" msgstr "Suchergebnisse ausblenden" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "Seitenleiste einklappen" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "Seitenleiste ausklappen" @@ -3568,17 +3760,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3588,11 +3780,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:80 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:85 msgid "failed" msgstr "" @@ -3603,12 +3795,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3635,18 +3827,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3656,45 +3853,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:977 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3707,31 +3909,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:968 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "Fußnoten" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1050 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1410 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1744 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3745,11 +3952,11 @@ msgstr "[Bild: %s]" msgid "[image]" msgstr "[Bild]" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/de_DE/LC_MESSAGES/sphinx.js b/sphinx/locale/de_DE/LC_MESSAGES/sphinx.js index c8fa40e..ea709ae 100644 --- a/sphinx/locale/de_DE/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/de_DE/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "", "Hide Search Matches": "", "Index": "", - "Index – %(key)s": "", + "Index – %(key)s": "", "Index pages by letter": "", "Indices and tables:": "", "Last updated on %(last_updated)s.": "", diff --git a/sphinx/locale/de_DE/LC_MESSAGES/sphinx.mo b/sphinx/locale/de_DE/LC_MESSAGES/sphinx.mo index 14c3e25..6e973e2 100644 Binary files a/sphinx/locale/de_DE/LC_MESSAGES/sphinx.mo and b/sphinx/locale/de_DE/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/de_DE/LC_MESSAGES/sphinx.po b/sphinx/locale/de_DE/LC_MESSAGES/sphinx.po index b105edb..8321b59 100644 --- a/sphinx/locale/de_DE/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/de_DE/LC_MESSAGES/sphinx.po @@ -7,134 +7,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-14 04:28+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: German (Germany) (http://app.transifex.com/sphinx-doc/sphinx-1/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:179 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:183 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:187 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:197 +#: sphinx/application.py:219 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:219 +#: sphinx/application.py:241 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:235 +#: sphinx/application.py:257 msgid "making output directory" msgstr "" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:262 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:268 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:303 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:320 sphinx/util/display.py:87 msgid "done" msgstr "" -#: sphinx/application.py:296 +#: sphinx/application.py:322 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:310 +#: sphinx/application.py:336 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:344 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:332 +#: sphinx/application.py:357 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:390 msgid "succeeded" msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:391 msgid "finished with problems" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:395 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:400 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:377 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:406 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:610 +#: sphinx/application.py:641 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:720 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:742 sphinx/application.py:764 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1313 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1317 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1320 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,75 +155,77 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1324 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1332 sphinx/application.py:1336 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -231,62 +233,62 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -487,190 +489,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:615 +#: sphinx/builders/__init__.py:642 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:590 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:599 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:602 msgid "copying assets" msgstr "" @@ -679,7 +833,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:757 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" @@ -689,7 +843,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:765 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -814,7 +968,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1184 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -847,7 +1001,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:480 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:691 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -932,7 +1091,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1135 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -958,164 +1117,169 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:390 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/builders/html/__init__.py:485 sphinx/builders/latex/__init__.py:189 #: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:504 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:506 +#: sphinx/builders/html/__init__.py:504 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:553 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:578 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:587 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:683 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:698 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:775 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:783 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:816 sphinx/builders/html/__init__.py:828 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:849 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:865 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:870 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:876 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:883 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:932 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:976 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1118 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1151 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1159 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1207 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1238 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1246 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1250 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1259 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1263 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1272 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1281 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1288 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "" @@ -1141,19 +1305,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "" @@ -1211,18 +1377,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1230,27 +1388,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1262,7 +1399,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1351,7 +1488,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1362,7 +1499,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1644,12 +1781,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1758,12 +1895,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1795,11 +1932,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1827,85 +1964,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "" @@ -1913,7 +2050,7 @@ msgstr "" msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1963,7 +2100,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1978,7 +2115,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -1987,52 +2124,52 @@ msgstr "" msgid "Arguments" msgstr "" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 #: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 msgid "Returns" msgstr "" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 #: sphinx/domains/python/_object.py:177 msgid "Return type" msgstr "" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2042,7 +2179,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2274 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2079,169 +2216,178 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 #: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr "" @@ -2253,158 +2399,171 @@ msgstr "" msgid "Raises" msgstr "" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:373 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:472 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:614 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:748 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:784 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2424,7 +2583,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "" @@ -2460,17 +2619,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:235 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2482,149 +2641,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2665,7 +2846,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2741,7 +2922,7 @@ msgstr "" msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2749,7 +2930,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2759,99 +2940,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" @@ -3027,23 +3148,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3051,46 +3172,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3098,7 +3225,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3113,36 +3240,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" @@ -3199,65 +3391,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "" @@ -3266,7 +3458,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "" @@ -3324,12 +3516,12 @@ msgstr "" msgid "all functions, classes, terms" msgstr "" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" +msgid "Index – %(key)s" msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3348,31 +3540,31 @@ msgstr "" msgid "Navigation" msgstr "" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3475,7 +3667,7 @@ msgstr "" msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr "" @@ -3484,11 +3676,11 @@ msgid "Hide Search Matches" msgstr "" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "" @@ -3564,17 +3756,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3584,11 +3776,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:80 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:85 msgid "failed" msgstr "" @@ -3599,12 +3791,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3631,18 +3823,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3652,45 +3849,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:977 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3703,31 +3905,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:968 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1050 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1410 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1744 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3741,11 +3948,11 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.js b/sphinx/locale/el/LC_MESSAGES/sphinx.js index 008356c..f9a92ca 100644 --- a/sphinx/locale/el/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/el/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "\u03a0\u03ac\u03bc\u03b5", "Hide Search Matches": "\u0391\u03c0\u03cc\u03ba\u03c1\u03c5\u03c8\u03b7 \u0395\u03c5\u03c1\u03b5\u03b8\u03ad\u03bd\u03c4\u03c9\u03bd \u0391\u03bd\u03b1\u03b6\u03b7\u03c4\u03ae\u03c3\u03b5\u03c9\u03bd", "Index": "\u0395\u03c5\u03c1\u03b5\u03c4\u03ae\u03c1\u03b9\u03bf", - "Index – %(key)s": "\u0395\u03c5\u03c1\u03b5\u03c4\u03ae\u03c1\u03b9\u03bf – %(key)s", + "Index – %(key)s": "", "Index pages by letter": "\u03a3\u03b5\u03bb\u03af\u03b4\u03b5\u03c2 \u03b5\u03c5\u03c1\u03b5\u03c4\u03b7\u03c1\u03af\u03bf\u03c5 \u03b1\u03bd\u03ac \u03b3\u03c1\u03ac\u03bc\u03bc\u03b1", "Indices and tables:": "\u0395\u03c5\u03c1\u03b5\u03c4\u03ae\u03c1\u03b9\u03b1 \u03ba\u03b1\u03b9 \u03c0\u03af\u03bd\u03b1\u03ba\u03b5\u03c2:", "Last updated on %(last_updated)s.": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c3\u03c4\u03b9\u03c2 %(last_updated)s.", diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.mo b/sphinx/locale/el/LC_MESSAGES/sphinx.mo index 465cda1..63c4a42 100644 Binary files a/sphinx/locale/el/LC_MESSAGES/sphinx.mo and b/sphinx/locale/el/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.po b/sphinx/locale/el/LC_MESSAGES/sphinx.po index bed9e88..74afd00 100644 --- a/sphinx/locale/el/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/el/LC_MESSAGES/sphinx.po @@ -10,134 +10,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>, 2021\n" "Language-Team: Greek (http://app.transifex.com/sphinx-doc/sphinx-1/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "Δεν είναι δυνατή η εύρεση του καταλόγου πηγής (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "Ο κατάλογος πηγής και ο κατάλογος προορισμού δεν είναι δυνατό να είναι ίδιοι" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "Εκτέλεση Sphinx έκδοση %s" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Αυτό το έργο απαιτεί Sphinx έκδοσης τουλάχιστον %s και επομένως δεν είναι δυνατή η μεταγλωτισση με αυτή την έκδοση." -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "δημιουργία καταλόγου εξόδου" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "κατά τον καθορισμό της επέκτασης %s" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "η 'παραμετροποίηση' σύμφωνα με τον τρέχοντα ορισμό στο conf.py δεν αποτελεί καλέσιμο. Παρακαλείσθε να τροποποιήσετε τον ορισμό ώστε να το κάνετε μία καλέσιμη συνάρτηση. Αυτό απαιτείται προκειμένου το conf.py να συμπεριφέρεται ως μία επέκταση Sphinx." -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "φόρτωση μεταφράσεων [%s]..." -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "ολοκλήρωση" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "δεν είναι διαθέσιμο για εσωτερικά μηνύματα" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "φόρτωση πακτωμένου περιβάλλοντος" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "αποτυχία: %s" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "Δεν επιλέχθηκε μεταγλωττιστής, θα χρησιμοποιηθεί ο προεπιλεγμένος: html" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "επιτυχία" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "ολοκλήρωση με προβλήματα" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "μεταγλώττιση %s, %s προειδοποίηση" -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "μεταγλώττιση %s." -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "η κλάση κόμβου %r έχει ήδη καταχωρηθεί, οι επισκέπτες της θα υπερσκελιστούν" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "η οδηγία %r έει ήδη καταχωρηθεί, θα υπερσκελιστεί" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "ο ρόλος %r έχει ήδη καταχωρηθεί, θα υπερσκελιστεί" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -145,12 +145,12 @@ msgid "" "explicit" msgstr "η επέκταση %s δεν καθορίζει αν είναι ασφαλής η παράλληλη ανάγνωση, υποθέτοντας ότι δεν είναι - παρακαλείσθε να ζητήσετε από το δημιουργό της επέκτασης να το ελέγχει και να το κάνει σαφές" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -158,75 +158,77 @@ msgid "" "explicit" msgstr "η επέκταση %s δεν καθορίζει αν είναι ασφαλής η παράλληλη ανάγνωση, υποθέτοντας ότι δεν είναι - παρακαλείσθε να ζητήσετε το δημιουργό της επέκτασης να το ελέγξει και να το κάνει σαφές" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "εκτέλεση σειριακής %s" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "ο κατάλογος παραμετροποίησης δεν περιλαμβάνει κανένα αρχείο conf.py (%s)" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "δεν είναι δυνατή η υπερσκέλιση της ρύθμισης παραμετροποίησης καταλόγου %r, θα αγνοηθεί (χρησιμοποιήστε το %r για να καθορίσετε τα επιμέρους στοιχεία)" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "ανέγκυρος αριθμός %r για τιμή παραμετροποίησης %r, θα αγνοηθεί" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "δεν είναι δυνατή η υπερσκέλιση της ρύθμισης παραμετροποίησης %r με τύπο ο οποίος δεν υποστηρίζεται, θα αγνοηθεί" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "άγνωστη τιμή παραμετροποίσης %r στην υπερσκέλιση, θα αγνοηθεί" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "Η τιμή παραμετροποίησης %r υφίσταται ήδη." -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Υπάρχει ένα συντακτικό λάθος στο αρχείο παραμετροποίησής σας: %s\n" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Το αρχείο παραμετροποίησης (ή ένα από τα στοιχεία που εισάγει) κάλεσε την sys.exit()" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -234,78 +236,78 @@ msgid "" "%s" msgstr "Υπάρχει ένα προγραμματιστικό λάθος στο αρχείο παραμετροποίησής σας:\n\n%s" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "Η τιμή παραμτετροποίησης 'source_suffix' αναμένει στοιχειοσειρά, στοιχειοσειρά καταλόγου, ή λεξικό. Αλλά παραδόθηκε %r." -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "Τομέας %s" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "Εικ. %s" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "Πίνακας %s" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "Λίστα %s" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "Η τιμή παραμετροποίησης '{name}' πρέπει να λαμβάνει μία από τις {candidates} αλλά εκχωρήθηκε η '{current}'." -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "Η τιμή παραμετροποίησης '{name]' έχει τύπο '[current__name__}'; αναμενόμενη {permitted}." -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "Η τιμή παραμετροποίησης '{name}' έχει τύπο '{current__name__}', αρχικοποίηση σε '{default__name__}'." -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "το primary_domain %r δεν βρέθηκε, θα αγνοηθεί." -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "Το συμβάν %r υπάρχει ήδη" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "Άγνωστο όνομα συμβάντος: %s" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" @@ -490,190 +492,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "η ρύθμιση %s.%s δεν εμφανίζεται από τις παραμετροποιήσεις θέματος που αναζητήθηκαν" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "δόθηκε μη υποστηριζόμενη επιλογή θέματος %r" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "το αρχείο %r στο μονοπάτι θέματος δεν αποτελεί ένα έγκυρο zipfile ή δεν περιλαμβάνει ένα θέμα" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "Σφάλμα κωδικοποίησης:" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "Σφάλμα αναδρομής:" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "Εμφανίστηκε εξαίρεση:" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "Παρακαλείστε να το αναφέρετε αν ήταν ένα σφάλμα χρήσης, ώστε ένα καλύτερο μήνυμα σφάλματος να δοθεί την επόμενη φορά." + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "δεν βρέθηκε μία κατάλληλη εικόνα για τον μεταγλωττιστή %s: %s (%s)" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "δεν βρέθηκε μία κατάλληλη εικόνα για τον μεταγλωττιστή %s: %s" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "μεταγλώττιση [mo]:" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "εγγραφή εξόδου..." -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "όλα τα αρχεία po του %d" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "στόχοι για τα αρχεία po του %d οι οποίοι έχουν καθοριστεί" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "στόχοι για τα αρχεία po του %d τα οποία είναι ξεπερασμένα" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "όλα τα αρχεία πηγής" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "το αρχείο %r που δόθηκε στη γραμμή εντολής δεν βρίσκεται κάτω από τον κατάλογο πηγής, θα αγνοηθεί" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "τα αρχεία πηγής %d που δόθηκαν στη γραμμή εντολής" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "στόχοι για τα αρχεία πηγής %d τα οποία είναι ξεπερασμένα" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "μεταγλώττιση [%s]:" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "αναζήτηση για νεοξεπερασμένα αρχεία..." -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "βρέθηκε %d" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "δεν βρέθηκε κανένα" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "Περιβάλλον μετατροπής αντικειμένων Python σε ροή bytes" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "έλεγχος συνοχής" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "κανένας στόχος δεν είναι ξεπερασμένος." -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "αναβάθμιση περιβάλλοντος:" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s προστέθηκε, %s άλλαξε, %s απομακρύνθηκε" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "ανάγνωση πηγών..." -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "docname προς εγγραφή: %s" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "προετοιμασία κειμένων" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -682,7 +836,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "βρέθηκε διπλότυπη εγγραφή ToC: %s" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "αντιγραφή εικόνων..." @@ -692,7 +846,7 @@ msgstr "αντιγραφή εικόνων..." msgid "cannot read image file %r: copying it instead" msgstr "δεν είναι δυνατή η ανάγωνση αρχείου εικόνας %r: αντί αυτού θα αντιγραφεί" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -707,28 +861,28 @@ msgstr "δεν είναι δυνατή η εγγραφή αρχείου %r: %s" msgid "Pillow not found - copying image files" msgstr "Το pillow δεν βρέθηκε - αντιγραφή αρχείων εικόνας" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "άγνωστο mimetype για %s, θα ανγοηθεί" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "εγγραφή %s αρχείου..." @@ -817,7 +971,7 @@ msgstr "η τιμή παραμετροποίησης \"epub_identifier\" δεν msgid "conf value \"version\" should not be empty for EPUB3" msgstr "η τιμή παραμετροποίησης \"version\" δεν πρέπει να είναι κενή για EPUB3" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "ανέγκυρο css_file: %r, θα αγνοηθεί" @@ -845,12 +999,17 @@ msgstr "εγγραφή καταλόγων μηνύματος..." msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "Αναζητήστε οποιαδήποτε λάθη στο παραπάνω αποτέλεσμα ή σε %(outdir)s/output.txt" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "λανθασμένος σύνδεσμος: %s (%s)" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "Δεν βρέθηκε το anchor '%s'" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -935,7 +1094,7 @@ msgstr "σφάλμα κατά την εγγραφή του αρχείου Makefi msgid "The text files are in %(outdir)s." msgstr "Τα αρχεία κειένου βρίσκονται σε %(outdir)s." -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -961,13 +1120,13 @@ msgstr "το αρχείο πληροφοριών μεταγλώττισης εί msgid "The HTML pages are in %(outdir)s." msgstr "Οι σελίδες HTML βρίσκονται σε %(outdir)s." -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "Αδυναμία ανάγνωσης αρχείου πληροφοριών μεταγλώττισης: %r" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -981,144 +1140,149 @@ msgstr "Κεντρικό Ευρετήριοο" msgid "index" msgstr "ευρετήριο" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "επόμενο" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "προηγούμενο" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "αντιγραφή αρχείων μεταφόρτωσης..." -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "δεν είναι δυνατή η αντιγραφή του μεταφορτωμένου αρχείου %r: %s" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "δεν είναι δυνατή η αντιγραφή στατικού αρχείου %r" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "δεν είναι δυνατή η αντιγραφή του επιπλέον αρχείου %r" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "Αδυναμία εγγραφής του αρχείου πληροφοριών μεταγλώττισης: %r" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "ο κατάλογος εύρεσης δεν ήταν δυνατό να φορτωθεί, αλλά δε θα μεταγλωττιστούν όλα τα έγγραφα: ο κατάλογος δε θα είναι πλήρης." -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "η σελιδα %s ταιριάζει δύο σχέδια στo html_sidebars: %r and %r" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "ένα σφάλμα Unicode παρουσιάστηκε κατά τη δημιουργία της σελίδας %s. Παρακαλείστε να επιβεβαιώσετε ότι όλες οι τιμές παραμετροποίησης οι οποίες περιλαμβάνουν μη-ASCII περιεχόμενο είναι στοιχειοσειρές Unicode." -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "Ένα σφάλμα συνέβη κατά τη σύνθεση της σελίδας %s.\n\nΑιτία %r " -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "ανέγκυρο js_file: %r, θα αγνοηθεί" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "Πολλά math_renderers έχουν καταγραφεί. Αλλά δεν έχει επιλεγεί κανένα math_renderer." -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "Δόθηκε άγνωστο math_renderer %r." -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "Η εγγραφή html_extra_path %r δεν υπάρχει" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "η εγγραφή html_static_path %r δεν υπάρχει" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "το αρχείο logo %r δεν υπάρχει" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "το αρχείο favicon %r δεν υπάρχει" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "Τεκμηρίωση του %s - %s" @@ -1144,19 +1308,21 @@ msgstr "δεν βρέθηκε τιμή παραμετροποίησης \"latex_ msgid "\"latex_documents\" config value references unknown document %s" msgstr "η τιμή παραμετροποίησης \"latex_documents\" κάνει αναφορά το άγνωστο κείμενο %s" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "Ευρετήριο" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "Δημοσίευση" @@ -1214,18 +1380,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "Παρουσιάστηκε εξαίρεση κατά τη μεταγλώττιση, εκκίνηση αποσφαλματιστή: " -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "σφάλμα reST markup:" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "Σφάλμα κωδικοποίησης:" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1233,27 +1391,6 @@ msgid "" "the developers." msgstr "Το πλήρες ιστορικό έχει αποθηκευτεί σε %s, σε περίπτωση που επιθυμείτε να αναφέρετε το ζήτημα στους προγραμματιστές." -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "Σφάλμα αναδρομής:" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "Εμφανίστηκε εξαίρεση:" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "Παρακαλείστε να το αναφέρετε αν ήταν ένα σφάλμα χρήσης, ώστε ένα καλύτερο μήνυμα σφάλματος να δοθεί την επόμενη φορά." - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1265,7 +1402,7 @@ msgid "job number should be a positive number" msgstr "ο αριθμός εργασίας θα πρέπει να είναι θετικός αριθμός" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1354,7 +1491,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "ορίστε ετικέτα: συμπεριλάβατε \"only\" τμήματα με TAG" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1365,7 +1502,7 @@ msgstr "επιλογές εξόδου κονσόλας" msgid "increase verbosity (can be repeated)" msgstr "αυξήστε τον βερμπαλισμό (μπορεί να επαναληφθεί)" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "καμία έξοδος στο stdout, μόνο προειδοποιήσεις στο stderr" @@ -1647,12 +1784,12 @@ msgstr "Δημιουργία Makefile; (y/n)" msgid "Create Windows command file? (y/n)" msgstr "Δημιουργία αρχείου εντολών Windows; (y/n)" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "Δημιουργία αρχείου %s." -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "Το αρχείο %s υπάρχει ήδη, παραλείπεται." @@ -1761,12 +1898,12 @@ msgstr "χρηση epub" msgid "Extension options" msgstr "Επιλογές επέκτασης" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "ενεργοποίηση της επέκτασης %s" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "ενεργοποίηση αυθαίρετων επεκτάσεων" @@ -1798,11 +1935,11 @@ msgstr "χρησιμοποιήστε το make-mode για το Makefile/make.ba msgid "do not use make-mode for Makefile/make.bat" msgstr "μην χρησιμοποιείτε make-mode για Makefile/make.bat" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "Προτυποποίηση έργου" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "πρότυπος κατάλογος για πρότυπα αρχεία" @@ -1830,85 +1967,85 @@ msgstr "Το sphinx-quickstart δημιουργεί μόνο εντός ενός msgid "Invalid template variable: %s" msgstr "Ανέγκυρη μεταβλητή προτύπου: %s" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "Ανέγκυρη λεζάντα: %s" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "η προδιαγραφή αριθμού σειράς είναι εκτός e;yroyw (1-%d): %r" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "Δεν είναι δυνατή η ταυτόχρονη χρήση των επιλογών \"%s\" και \"%s\"" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "Το συμπεριληφθέν αρχείο %r δεν βρέθηκε ή απέτυχε η ανάγνωσή του" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "Η κωδικοποίηση %r που χρησιμοποιήθηκε για την ανάγνωση του συμπεριληφθέντος αρχείου %r φαίνεται να είναι λανθασμένη, προσπαθήστε να δώσετε μία επιλογή :encoding:" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "Το αντικείμενο με όνομα %r δεν βρέθηκε στο συμπεριληφθέν αρχείο %r" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "Δεν είναι δυνατή η χρήση \"leneno-match\" με ένα κομματιασμένο σετ απο \"lines\"" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "Προσδιορισμός γραμμής %r: δεν ελήφθησαν γραμμές από το συμπεριληφθέν αρχείο %r" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "Το toctree περιλαμβάνει αναφορά στο αποκλεισμένο κείμενο %r" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "το toctree περιλαμβάνει αναφορά στο μη υπαρκτό έγγραφο %r" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "Συντάκτης τμήματος: " -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "Συντάκτης μονάδας: " -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "Συντάκτης κώδικα: " -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "Συντάκτης: " @@ -1916,7 +2053,7 @@ msgstr "Συντάκτης: " msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1966,7 +2103,7 @@ msgstr "Η παραπομπή [%s] δεν αναφέρεται." msgid "%s() (built-in function)" msgstr "%s() (ενσωματωμένη συνάρτηση)" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "%s() (μέθοδος της %s)" @@ -1981,7 +2118,7 @@ msgstr "%s() (κλάση)" msgid "%s (global variable or constant)" msgstr "%s (καθολική μεταβλητή ή σταθερά)" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "%s (ιδιότητα της %s)" @@ -1990,52 +2127,52 @@ msgstr "%s (ιδιότητα της %s)" msgid "Arguments" msgstr "Παράμετροι" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "Προκαλεί" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "Επιστρέφει" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "Επιστρεφόμενος τύπος" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "%s (μονάδα)" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "συνάρτηση" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "μέθοδος" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "κλάση" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "δεδομένα" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "ιδιότητα" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "μονάδα" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2045,7 +2182,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "διπλότυπη ετικέτα της εξίσωσης %s, άλλη εμφάνιση στο %s" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "Ανέγκυρο math_eqref_format: %r" @@ -2082,352 +2219,374 @@ msgstr "ρόλος" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "Παράμετροι" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "μέλος" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "μεταβλητή" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "μακροεντολή" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "ένωση" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "enum" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "τύπος" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "Παράμετροι Προτύπου" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "έννοια" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "%s() (στη μονάδα %s)" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "%s (στη μονάδα %s)" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "%s (ενσωματωμένη μεταβλητή)" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "%s (ενσωματωμένη κλάση)" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "%s (κλάση σε %s)" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "%s() (μέθοδος κλάσης της %s)" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "%s() (στατική μέθοδος της %s)" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "Ευρετήριο Μονάδων της Python" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "μονάδες" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "Αποσύρθηκε" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "εξαίρεση" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "μέθοδος της κλάσης" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "στατική μέθοδος" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "περισσότεροι από έναν στόχοι βρέθηκα για την παραπομπή %r: %s" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr " (αποσύρθηκε)" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "Μεταβλητές" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "Προκαλεί" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "μεταβλητή περιβάλλοντος; %s" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "Λανθασμένη περιγραφή επιλογής %r, θα πρέπει να μοιάζει με \"opt\", \"-opt args\", \"--opt args\", \"/opt args\" ή \"+opt args\"" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "γλωσσάρι" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "γραμματική ένδειξη" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "ετικέτα αναφοράς" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "μεταβλητή περιβάλλοντος" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "επιλογή προγράμματος" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "έγγραφο" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "Ευρετήριο μονάδων" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Σελίδα αναζήτησης" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "διπλότυπη ετικέτα %s, άλλη εμφάνιση στο %s" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "το numfig έχει απενεργοποιηθεί. Το :numref: θα ανγοηθεί." -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "ο σύνδεσμος δεν έχει λεζάντα: %s" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "ανέγκυρο numfig_format: %s (%r)" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "ανέγκυρο numfig_format: %s" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "νέα παραμετροποίηση" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "η παραμετροποίηση άλλαξε" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "αλλαγμένες επεκτάσεις" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "η έκδοση του περιβάλλοντος μεταλώττισης δεν είναι η τρέχουσα" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "ο πηγαίος κατάλογος έχει αλλάξει" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "Το περιβάλλον δεν είναι συμβατό με τον επιλεγμένο μεταγλωττιστή, παρακαλείστε να επιλέξετε ένα διαφορετικό κατάλογο toctree." -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "Αδυναμία σάρωσης εγγράφων σε %s: %r" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "Ο τομέας %r δεν είναι καταχωρημένος" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "το έγγραφο δεν συμπεριλαμβάνεται σε κανένα toctree" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "Βρέθηκε αυτοαναφερόμενο toctree. Θα αγνοηθεί." -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "δείτε %s" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "δείτε επίσης %s" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "άγνωστος τύπος εγγραφής ευρετηρίου %r" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "Σύμβολα" @@ -2463,17 +2622,17 @@ msgstr "το αρχείο εικόνας %s δεν είναι αναγνώσιμ msgid "download file not readable: %s" msgstr "το μεταφορτωμένο αρχείο δεν είναι αναγνώσιμο: %s" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "στο %s έχουν ήδη ανατεθεί αριθμοί τομέα (εμφωλιασμένο αριθμημένο toctree;)" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "Θα δημιουργούσε το αρχείο %s." -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2485,149 +2644,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "\nΑναζητήστε αναδρομικα σε <MODULE_PATH>για δομοστοιχεία Python και πακέτα και δημιουργήστε \nένα αρχείο reST με οδηγίες automodule για κάθε πακέτο στο <OUTPUT_PATH>.\n\nΤα <EXCLUDE_PATTERN>μπορεί να αποτελούν αρχεία ή/και σχέδια καταλόγων τα οποία θα \nεκτελεστούν κατά τη δημιουργία.\n\nΣημείωση: από προεπιλογή αυτό το σενάριο δεν θα αντικαταστήσει τα ήδη δημιουργημένα αρχεία." -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "μονοπάτι για το δομοστοιχείο για το έγγραφο" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "αρχεία fnmatch-style και/ή υποδείγματα καταλόγου που θα εξαιρεθούν από τη δημιουργία" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "κατάλογο για τοποθέτηση όλων των προϊόντων" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "μέγιστο βάθος από υποδομοστοιχεία για απεικόνιση στο TOC (προεπιλογή: 4)" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "αντικατάσταση υπάρχοντων αρχείων" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "ακολουθία συμβολικών συνδέσμων. Ισχυρό όταν συνδυάζεται με το collective.recipe.omelette." -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "εκτελέστε το σενάριο χωρίς τη δημιουργία αρχείων" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "τοποθετήστε βιβλιογραφία για κάθε δομοστοιχείο στη δικής της σελίδα" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "να συμπεριληφθούν τα δομοστοιχεία \"_private\"" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "όνομα αρχείου του πίνακα περιεχομένων (προεπιλογή: δομοστοιχεία)" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "να μη δημιουργηθεί αρχείο με πίνακα περιεχομένων" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "μη δημιουργείτε κεφαλίδες για πακέτα δομοστοιχείων/πακέτων (π.χ. όταν τα docstrings τα περιλαμβάνουν ήδη)" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "τοποθέτηση βιβλιογραφίας δομοστοιχείου πριν από την βιβλιογραφία υπόδομοστοιχείου" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "ερμηνεία μονοπατιών δομοστοιχείων σύμφωνα με την προδιαγραφή POP-0420 αυτονόητων namespaces" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "επέκταση αρχείου (προεπιλογή: rst)" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "δημιουργία ενός πλήρους έργου με το sphinx-quickstart" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "η προσθήκη του module_path στο sys.path, χρησιμοποιείται όταν δίδεται το --full" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "όνομα έργου (προεπιλογή: όνομα ριζικού δομοστοιχείου)" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "συγγραφέας(εις) έργου, χρησιμοποιείται όταν δίδεται το --full" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "έκδοση έργου, χρησιμοποιείται όταν δίνεται το --full" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "έκδοση έργου, χρησιμοποιείται όταν δίδεται το --full, προεπιλογή σε --doc-version" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "επιλογές επέκτασης" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "το %s δεν είναι κατάλογος." +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "ανέγκυρο regex %r σε %s" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "το δομοστοιχείο %s δεν ήταν δυνατό να εισαχθεί: %s" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "Η δοκιμή της κάλυψης στις πηγές ολοκληρώθηκε, δείτε τα αποτελέσματα στο %(outdir)s python.txt." -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "ανέγκυρο regex %r στο coverage_c_regexes" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "το δομοστοιχείο %s δεν ήταν δυνατό να εισαχθεί: %s" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2668,7 +2849,7 @@ msgstr "δεν υπάρχει κώδικας/αποτέλεσμα στο τμή msgid "ignoring invalid doctest code: %r" msgstr "Ο ανέγκυρος κώδικας doctest θα αγνοηθεί: %r" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2744,7 +2925,7 @@ msgstr "[γράφημα: %s]" msgid "[graph]" msgstr "[γράφημα]" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2752,7 +2933,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2762,99 +2943,39 @@ msgid "" "%r" msgstr "η μετατροπή ολοκλήρωσε με σφάλμα:[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "Η εντολή LaTex %r δεν είναι δυνατό να εκτελεστεί (απαιτείται για απεικόνιση μαθηματικών), ελέγξτε τη ρύθμιση imgmath_latex" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "%s η εντολή %r δεν είναι δυνατό να εκτελεστεί (απαιτείται για μαθηματική απεικόνιση), ελέγξτε τη ρύθμιση imgmath_%s" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "απεικόνιση latex %r: %s" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "σε σειρά latex %r: %s" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "το απόθεμα intersphinx έχει μεταφερθεί: %s->%s" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "φότωση του αποθέματος intersphinx από %s..." - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "παρουσιάστηκαν κάποια ζητήματα με μερικά απο τα αποθέματα, αλλά υπήρξαν λειτουργικές εναλλακτικές:" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "αδυναμία προσέγγισης οποιασδήποτε αποθήκης με τα ακόλουθα ζητήματα:" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "(στη %s έκδοση %s)" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "(στο %s)" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "το αναγνωριστικό intersphinx %r δεν είναι στοιχειοσειρά. Θα αγνοηθεί" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[πηγή]" @@ -3030,23 +3151,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3054,46 +3175,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "αδυναμία ανάλυσης ονόματος %s" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "αδυναμία εισαγωγής αντικειμένου %s" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[autosummary] δημιουργία autosummary για: %s" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "[αυτόματη περίληψη] εγγραφή στο %s" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3101,7 +3228,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3116,36 +3243,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\nΔημιουργία ReStrucuredText χρησιμοποιώντας τις οδηγίες autosummary.\n\nΤο sphinx-autogen αποτελεί ένα πρόσθιο εργαλείο για το sphinx.ext.autosummary.generate. Δημιουργεί \nτα αρχεία reStructuredText από τις οδηγίες autosummary οι οποίες περιλαμβάνονται στα \nπαραδοθέντα αρχεία εισόδου.\n\nΗ μορφή της οδηγίας autosummary τεκμηρειώνεται στο \nδομοστοιχείο ``sphinx.ext.autosummary`` της Python και μπορεί να αναγνωστεί χρησιμοποιώντας το :: \n\npydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "αρχεία πηγής για να δημιουργηθούν τα αρχεία reST" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "ο κατάλογος που θα τοποθετεί όλο το αποτέλεσμα εξόδου" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "προεπιλεγμένη επέκταση για αρχεία (προεπιλογή: %(default)s)" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "προσαρμοσμένος κατάλογος προτύπου (προεπιλογή: %(default)s)" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "μέλη εισαγμένα στο έγγραφο (προεπιλογή: %(default)s)" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "το αναγνωριστικό intersphinx %r δεν είναι στοιχειοσειρά. Θα αγνοηθεί" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "παρουσιάστηκαν κάποια ζητήματα με μερικά απο τα αποθέματα, αλλά υπήρξαν λειτουργικές εναλλακτικές:" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "αδυναμία προσέγγισης οποιασδήποτε αποθήκης με τα ακόλουθα ζητήματα:" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "το απόθεμα intersphinx έχει μεταφερθεί: %s->%s" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "(στη %s έκδοση %s)" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "(στο %s)" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "Ορίσματα λέξης-κλειδί" @@ -3202,65 +3394,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "Προσοχή" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "Προσοχή" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "Κίνδυνος" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "Σφάλμα" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "Συμβουλή" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "Σημαντικό" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "Σημείωση" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "Δείτε επίσης" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "Πρακτική συμβουλή" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "Προειδοποίηση" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "συνεχίζεται από την προηγούμενη σελίδα" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "συνέχεια στην επόμενη σελίδα" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "μη-αλφαβιτικά" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "Αριιθμοί" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "σελίδα" @@ -3269,7 +3461,7 @@ msgstr "σελίδα" msgid "Table of Contents" msgstr "Πίνακας περιεχομένων" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Αναζήτηση" @@ -3327,12 +3519,12 @@ msgstr "γρήγορη πρόσβαση σε όλες τις μονάδες" msgid "all functions, classes, terms" msgstr "όλες οι συναρτήσεις, κλάσεις, όροι" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" -msgstr "Ευρετήριο – %(key)s" +msgid "Index – %(key)s" +msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3351,31 +3543,31 @@ msgstr "μπορεί να είναι τεράστιο" msgid "Navigation" msgstr "Πλοήγηση" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "Αναζήτηση στο %(docstitle)s" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "Σχετικά με αυτά τα κείμενα" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "Copyright" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Τελευταία ενημέρωση στις %(last_updated)s." -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3478,7 +3670,7 @@ msgstr "Εκτελείται η αναζήτηση" msgid "Preparing search..." msgstr "Προετοιμασία αναζήτησης..." -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr ", στο " @@ -3487,11 +3679,11 @@ msgid "Hide Search Matches" msgstr "Απόκρυψη Ευρεθέντων Αναζητήσεων" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "Κλείσιμο πλαϊνής μπάρας" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "Άνοιγμα πλαϊνής μπάρας" @@ -3499,26 +3691,26 @@ msgstr "Άνοιγμα πλαϊνής μπάρας" msgid "Contents" msgstr "Περιεχόμενα" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "βρέθηκε ευρετήριο βασιζόμενο σε 4 στήλες. Μπορεί να αποτελεί σφάλμα της επέκτασης που χρησιμοποιείτε: %r" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "Δεν υπάρχει αναφορά για την υποσημείωση [%s]." -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "Η υποσημείωση [#] δεν αναφέρεται." @@ -3567,17 +3759,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "Δεν ήταν δυνατή η λήψη απομακρυσμένης εικόνας: %s [%d]" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "Δεν ήταν δυνατή η λήψη απομακρυσμένης εικόνας: %s [%s]" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "Άγνωστος τύπος αρχείου: %s..." @@ -3587,11 +3779,11 @@ msgstr "Άγνωστος τύπος αρχείου: %s..." msgid "undecodable source characters, replacing with \"?\": %r" msgstr "μη κωδικοποιήσιμοι χαρακτήρες πηγής, θα αντικατασταθούν με \"?\": %r" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "παράβλεψη" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "αποτυχία" @@ -3602,12 +3794,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "άγνωστος τύπος κόμβου: %r" @@ -3634,18 +3826,23 @@ msgid "" "it directly: %s" msgstr "Ανέγκυρος τύπος ημερομηνίας. Τοποθετείστε στη στοιχειοσειρά μονά εισαγωγικά εάν θέλετε να το εξάγετε απευθείας: %s" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "το toctree περιλαμβάνει αναφορά σε άγνωστο αρχείο %r" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "εξαίρεση κατά την αξιολόγηση μόνο της έκφρασης οδηγίας: %s" @@ -3655,45 +3852,50 @@ msgstr "εξαίρεση κατά την αξιολόγηση μόνο της έ msgid "default role %s not found" msgstr "ο προεπιλεγμένος ρόλος %s δεν βρέθηκε" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "δεν έχει καθοριστεί numfig_format για το %s" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "Κανένα ID δεν έχει ανατεθεί στο κόμβο %s" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "Δεν ήταν δυνατή η λήψη του μεγέθους της εικόνας. Η επιλογή :scale: θα αγνοηθεί." @@ -3706,31 +3908,36 @@ msgstr "άγνωστο toplevel_sectioning %r για την κλάσση %r" msgid "too large :maxdepth:, ignored." msgstr "πολύ μεγάλο :maxdepth:, θα αγνοηθεί." -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "ο τίτλος του εγγράφου δεν είναι μονός κόμβος κειμένου" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "ο ανακαλυφθέν τίτλος κόμβος δεν βρίσκεται σε τομέα, θέμα, πίνακα, προειδοποίηση ή πλαϊνή μπάρα" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "Σημειώσεις υποσέλιδου" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "τόσο η επιλογή για tabularcolumns όσο και για :widths: δίνονται. Η επιλογή :widths: θα αγνοηθεί." -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "η μονάδα διάστασης %s δεν είναι έγκυρη. Θα αγνοηθεί." -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "βρέθηκε άγνωστος τύπος εγγραφής ευρετηρίου %s" @@ -3744,11 +3951,11 @@ msgstr "[εικόνα: %s]" msgid "[image]" msgstr "[εικόνα]" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "η λεζάντα δεν βρίσκεται εντός μίας εικόνας." -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "μη υλοποιημένος τύπος κόμβου: %r" diff --git a/sphinx/locale/en_DE/LC_MESSAGES/sphinx.js b/sphinx/locale/en_DE/LC_MESSAGES/sphinx.js index 86ed65e..cb49662 100644 --- a/sphinx/locale/en_DE/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/en_DE/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "", "Hide Search Matches": "", "Index": "", - "Index – %(key)s": "", + "Index – %(key)s": "", "Index pages by letter": "", "Indices and tables:": "", "Last updated on %(last_updated)s.": "", diff --git a/sphinx/locale/en_DE/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_DE/LC_MESSAGES/sphinx.mo index 3241b32..a40f256 100644 Binary files a/sphinx/locale/en_DE/LC_MESSAGES/sphinx.mo and b/sphinx/locale/en_DE/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/en_DE/LC_MESSAGES/sphinx.po b/sphinx/locale/en_DE/LC_MESSAGES/sphinx.po index e56ba7b..23b2f7c 100644 --- a/sphinx/locale/en_DE/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_DE/LC_MESSAGES/sphinx.po @@ -7,134 +7,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: English (Germany) (http://app.transifex.com/sphinx-doc/sphinx-1/language/en_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: en_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,75 +155,77 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -231,78 +233,78 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" @@ -487,190 +489,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -679,7 +833,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" @@ -689,7 +843,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -704,28 +858,28 @@ msgstr "" msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "" @@ -814,7 +968,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -842,12 +996,17 @@ msgstr "" msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -932,7 +1091,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -958,13 +1117,13 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -978,144 +1137,149 @@ msgstr "" msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "" @@ -1141,19 +1305,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "" @@ -1211,18 +1377,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1230,27 +1388,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1262,7 +1399,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1351,7 +1488,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1362,7 +1499,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1644,12 +1781,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1758,12 +1895,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1795,11 +1932,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1827,85 +1964,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "" @@ -1913,7 +2050,7 @@ msgstr "" msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1963,7 +2100,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1978,7 +2115,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -1987,52 +2124,52 @@ msgstr "" msgid "Arguments" msgstr "" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2042,7 +2179,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2079,352 +2216,374 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr "" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "" @@ -2460,17 +2619,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2482,149 +2641,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2665,7 +2846,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2741,7 +2922,7 @@ msgstr "" msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2749,7 +2930,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2759,99 +2940,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" @@ -3027,23 +3148,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3051,46 +3172,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3098,7 +3225,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3113,36 +3240,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" @@ -3199,65 +3391,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "" @@ -3266,7 +3458,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "" @@ -3324,12 +3516,12 @@ msgstr "" msgid "all functions, classes, terms" msgstr "" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" +msgid "Index – %(key)s" msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3348,31 +3540,31 @@ msgstr "" msgid "Navigation" msgstr "" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3475,7 +3667,7 @@ msgstr "" msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr "" @@ -3484,11 +3676,11 @@ msgid "Hide Search Matches" msgstr "" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "" @@ -3496,26 +3688,26 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "" @@ -3564,17 +3756,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3584,11 +3776,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "" @@ -3599,12 +3791,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3631,18 +3823,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3652,45 +3849,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3703,31 +3905,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3741,11 +3948,11 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.js b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.js index b61b563..c7eba16 100644 --- a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "", "Hide Search Matches": "", "Index": "", - "Index – %(key)s": "", + "Index – %(key)s": "", "Index pages by letter": "", "Indices and tables:": "", "Last updated on %(last_updated)s.": "", diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo index 3dcf4c2..0617f90 100644 Binary files a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo and b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po index 4a0b32a..060b9d5 100644 --- a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po @@ -7,134 +7,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: English (France) (http://app.transifex.com/sphinx-doc/sphinx-1/language/en_FR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: en_FR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,75 +155,77 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -231,78 +233,78 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" @@ -487,190 +489,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -679,7 +833,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" @@ -689,7 +843,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -704,28 +858,28 @@ msgstr "" msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "" @@ -814,7 +968,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -842,12 +996,17 @@ msgstr "" msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -932,7 +1091,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -958,13 +1117,13 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -978,144 +1137,149 @@ msgstr "" msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "" @@ -1141,19 +1305,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "" @@ -1211,18 +1377,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1230,27 +1388,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1262,7 +1399,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1351,7 +1488,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1362,7 +1499,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1644,12 +1781,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1758,12 +1895,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1795,11 +1932,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1827,85 +1964,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "" @@ -1913,7 +2050,7 @@ msgstr "" msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1963,7 +2100,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1978,7 +2115,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -1987,52 +2124,52 @@ msgstr "" msgid "Arguments" msgstr "" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2042,7 +2179,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2079,352 +2216,374 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr "" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "" @@ -2460,17 +2619,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2482,149 +2641,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2665,7 +2846,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2741,7 +2922,7 @@ msgstr "" msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2749,7 +2930,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2759,99 +2940,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" @@ -3027,23 +3148,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3051,46 +3172,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3098,7 +3225,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3113,36 +3240,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" @@ -3199,65 +3391,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "" @@ -3266,7 +3458,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "" @@ -3324,12 +3516,12 @@ msgstr "" msgid "all functions, classes, terms" msgstr "" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" +msgid "Index – %(key)s" msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3348,31 +3540,31 @@ msgstr "" msgid "Navigation" msgstr "" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3475,7 +3667,7 @@ msgstr "" msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr "" @@ -3484,11 +3676,11 @@ msgid "Hide Search Matches" msgstr "" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "" @@ -3496,26 +3688,26 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "" @@ -3564,17 +3756,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3584,11 +3776,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "" @@ -3599,12 +3791,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3631,18 +3823,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3652,45 +3849,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3703,31 +3905,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3741,11 +3948,11 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.js b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.js index b079762..6001682 100644 --- a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "Go", "Hide Search Matches": "Hide Search Matches", "Index": "Index", - "Index – %(key)s": "Index – %(key)s", + "Index – %(key)s": "", "Index pages by letter": "Index pages by letter", "Indices and tables:": "Indices and tables:", "Last updated on %(last_updated)s.": "Last updated on %(last_updated)s.", diff --git a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo index bc40a08..e8796ae 100644 Binary files a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo and b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po index 032185a..0062fe6 100644 --- a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po @@ -8,134 +8,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Adam Turner, 2022-2023\n" "Language-Team: English (United Kingdom) (http://app.transifex.com/sphinx-doc/sphinx-1/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "Cannot find source directory (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "Output directory (%s) is not a directory" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "Source directory and destination directory cannot be identical" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "Running Sphinx v%s" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "This project needs at least Sphinx v%s and therefore cannot be built with this version." -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "making output directory" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "while setting up extension %s:" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' as currently defined in conf.py isn't a Python callable. Please modify its definition to make it a callable function. This is needed for conf.py to behave as a Sphinx extension." -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "loading translations [%s]... " -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "done" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "not available for built-in messages" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "loading pickled environment" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "failed: %s" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "No builder selected, using default: html" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "succeeded" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "finished with problems" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "build %s, %s warning (with warnings treated as errors)." -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "build %s, %s warnings (with warnings treated as errors)." -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "build %s, %s warning." -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "build %s, %s warnings." -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "build %s." -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "node class %r is already registered, its visitors will be overridden" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "directive %r is already registered, it will be overridden" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "role %r is already registered, it will be overridden" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "the %s extension does not declare if it is safe for parallel reading, assuming it isn't - please ask the extension author to check and make it explicit" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "the %s extension is not safe for parallel reading" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,75 +156,77 @@ msgid "" "explicit" msgstr "the %s extension does not declare if it is safe for parallel writing, assuming it isn't - please ask the extension author to check and make it explicit" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "the %s extension is not safe for parallel writing" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "doing serial %s" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "config directory doesn't contain a conf.py file (%s)" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "Invalid configuration value found: 'language = None'. Update your configuration to a valid language code. Falling back to 'en' (English)." -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "cannot override dictionary config setting %r, ignoring (use %r to set individual elements)" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "invalid number %r for config value %r, ignoring" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "cannot override config setting %r with unsupported type, ignoring" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "unknown config value %r in override, ignoring" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "Config value %r already present" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "There is a syntax error in your configuration file: %s\n" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "The configuration file (or one of the modules it imports) called sys.exit()" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -232,78 +234,78 @@ msgid "" "%s" msgstr "There is a programmable error in your configuration file:\n\n%s" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "The config value `source_suffix' expects a string, list of strings, or dictionary. But `%r' is given." -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "Section %s" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "Fig. %s" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "Table %s" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "Listing %s" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "The config value `{name}` has to be a one of {candidates}, but `{current}` is given." -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "The config value `{name}' has type `{current.__name__}'; expected {permitted}." -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "The config value `{name}' has type `{current.__name__}', defaults to `{default.__name__}'." -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r not found, ignored." -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add \"root_doc = 'contents'\" to your conf.py." -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "Event %r already present" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "Unknown event name: %s" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "Handler %r for event %r threw an exception" @@ -488,190 +490,342 @@ msgstr "invalid PEP number %s" msgid "invalid RFC number %s" msgstr "invalid RFC number %s" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "setting %s.%s occurs in none of the searched theme configs" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "unsupported theme option %r given" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "file %r on theme path is not a valid zipfile or contains no theme" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "Interrupted!" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "Encoding error:" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "Recursion error:" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "This can happen with very large or deeply nested source files. You can carefully increase the default Python recursion limit of 1000 in conf.py with e.g.:" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "Exception occurred:" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "Please also report this if it was a user error, so that a better error message can be provided next time." + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "a suitable image for %s builder not found: %s (%s)" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "a suitable image for %s builder not found: %s" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "building [mo]: " -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "writing output... " -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "all of %d po files" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "targets for %d po files that are specified" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "targets for %d po files that are out of date" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "all source files" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "file %r given on command line does not exist, " -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "file %r given on command line is not under the source directory, ignoring" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "file %r given on command line is not a valid document, ignoring" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "%d source files given on command line" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "targets for %d source files that are out of date" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "building [%s]: " -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "looking for now-outdated files... " -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "%d found" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "none found" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "pickling environment" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "checking consistency" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "no targets are out of date." -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "updating environment: " -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s added, %s changed, %s removed" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "reading sources... " -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "docnames to write: %s" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "preparing documents" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "copying assets" @@ -680,7 +834,7 @@ msgstr "copying assets" msgid "duplicated ToC entry found: %s" msgstr "duplicated ToC entry found: %s" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "copying images... " @@ -690,7 +844,7 @@ msgstr "copying images... " msgid "cannot read image file %r: copying it instead" msgstr "cannot read image file %r: copying it instead" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -705,28 +859,28 @@ msgstr "cannot write image file %r: %s" msgid "Pillow not found - copying image files" msgstr "Pillow not found - copying image files" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "writing mimetype file..." -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "writing META-INF/container.xml file..." -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "writing content.opf file..." -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "unknown mimetype for %s, ignoring" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "writing toc.ncx file..." -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "writing %s file..." @@ -815,7 +969,7 @@ msgstr "conf value \"epub_identifier\" should not be empty for EPUB3" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "conf value \"version\" should not be empty for EPUB3" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "invalid css_file: %r, ignored" @@ -843,12 +997,17 @@ msgstr "writing message catalogues... " msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "Look for any errors in the above output or in %(outdir)s/output.txt" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "broken link: %s (%s)" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "Anchor '%s' not found" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "Failed to compile regex in linkcheck_allowed_redirects: %r %s" @@ -933,7 +1092,7 @@ msgstr "error writing file Makefile: %s" msgid "The text files are in %(outdir)s." msgstr "The text files are in %(outdir)s." -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -959,13 +1118,13 @@ msgstr "build info file is broken: %r" msgid "The HTML pages are in %(outdir)s." msgstr "The HTML pages are in %(outdir)s." -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "Failed to read build info file: %r" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -979,144 +1138,149 @@ msgstr "General Index" msgid "index" msgstr "index" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "next" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "previous" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "generating indices" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "writing additional pages" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "copying downloadable files... " -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "cannot copy downloadable file %r: %s" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "Failed to copy a file in html_static_file: %s: %r" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "copying static files" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "cannot copy static file %r" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "copying extra files" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "cannot copy extra file %r" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "Failed to write build info file: %r" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "search index couldn't be loaded, but not all documents will be built: the index will be incomplete." -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "page %s matches two patterns in html_sidebars: %r and %r" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "a Unicode error occurred when rendering the page %s. Please make sure all config values that contain non-ASCII content are Unicode strings." -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "An error happened in rendering the page %s.\nReason: %r" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "dumping object inventory" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "dumping search index in %s" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "invalid js_file: %r, ignored" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "Many math_renderers are registered. But no math_renderer is selected." -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "Unknown math_renderer %r is given." -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "html_extra_path entry %r does not exist" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "html_extra_path entry %r is placed inside outdir" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "html_static_path entry %r does not exist" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "html_static_path entry %r is placed inside outdir" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "logo file %r does not exist" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "favicon file %r does not exist" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in configuration options)" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "%s %s documentation" @@ -1142,19 +1306,21 @@ msgstr "no \"latex_documents\" config value found; no documents will be written" msgid "\"latex_documents\" config value references unknown document %s" msgstr "\"latex_documents\" config value references unknown document %s" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "Index" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "Release" @@ -1212,18 +1378,10 @@ msgstr "No footnote was found for given reference node %r" msgid "Exception occurred while building, starting debugger:" msgstr "Exception occurred while building, starting debugger:" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "Interrupted!" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "reST markup error:" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "Encoding error:" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1231,27 +1389,6 @@ msgid "" "the developers." msgstr "The full traceback has been saved in %s, if you want to report the issue to the developers." -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "Recursion error:" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "This can happen with very large or deeply nested source files. You can carefully increase the default Python recursion limit of 1000 in conf.py with e.g.:" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "Exception occurred:" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "Please also report this if it was a user error, so that a better error message can be provided next time." - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1263,7 +1400,7 @@ msgid "job number should be a positive number" msgstr "job number should be a positive number" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "For more information, visit <https://www.sphinx-doc.org/>." @@ -1352,7 +1489,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "define tag: include \"only\" blocks with TAG" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1363,7 +1500,7 @@ msgstr "console output options" msgid "increase verbosity (can be repeated)" msgstr "increase verbosity (can be repeated)" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "no output on stdout, just warnings on stderr" @@ -1645,12 +1782,12 @@ msgstr "Create Makefile? (y/n)" msgid "Create Windows command file? (y/n)" msgstr "Create Windows command file? (y/n)" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "Creating file %s." -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "File %s already exists, skipping." @@ -1759,12 +1896,12 @@ msgstr "use epub" msgid "Extension options" msgstr "Extension options" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "enable %s extension" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "enable arbitrary extensions" @@ -1796,11 +1933,11 @@ msgstr "use make-mode for Makefile/make.bat" msgid "do not use make-mode for Makefile/make.bat" msgstr "do not use make-mode for Makefile/make.bat" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "Project templating" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "template directory for template files" @@ -1828,85 +1965,85 @@ msgstr "sphinx-quickstart only generate into a empty directory. Please specify a msgid "Invalid template variable: %s" msgstr "Invalid template variable: %s" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "non-whitespace stripped by dedent" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "Invalid caption: %s" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "line number spec is out of range(1-%d): %r" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "Cannot use both \"%s\" and \"%s\" options" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "Include file %r not found or reading it failed" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "Encoding %r used for reading included file %r seems to be wrong, try giving an :encoding: option" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "Object named %r not found in include file %r" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "Line spec %r: no lines pulled from include file %r" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "toctree glob pattern %r didn't match any documents" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "toctree contains reference to excluded document %r" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "toctree contains reference to nonexisting document %r" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "duplicated entry found in toctree: %s" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "Section author: " -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "Module author: " -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "Code author: " -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "Author: " @@ -1914,7 +2051,7 @@ msgstr "Author: " msgid ".. acks content is not a list" msgstr ".. acks content is not a list" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr ".. hlist content is not a list" @@ -1964,7 +2101,7 @@ msgstr "Citation [%s] is not referenced." msgid "%s() (built-in function)" msgstr "%s() (built-in function)" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s method)" @@ -1979,7 +2116,7 @@ msgstr "%s() (class)" msgid "%s (global variable or constant)" msgstr "%s (global variable or constant)" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribute)" @@ -1988,52 +2125,52 @@ msgstr "%s (%s attribute)" msgid "Arguments" msgstr "Arguments" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "Throws" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "Returns" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "Return type" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "%s (module)" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "function" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "method" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "class" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "attribute" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "module" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "duplicate %s description of %s, other %s in %s" @@ -2043,7 +2180,7 @@ msgstr "duplicate %s description of %s, other %s in %s" msgid "duplicate label of equation %s, other instance in %s" msgstr "duplicate label of equation %s, other instance in %s" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "Invalid math_eqref_format: %r" @@ -2080,352 +2217,374 @@ msgstr "role" msgid "duplicate description of %s %s, other instance in %s" msgstr "duplicate description of %s %s, other instance in %s" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "%s (C %s)" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "Duplicate C declaration, also defined at %s:%s.\nDeclaration is '.. c:%s:: %s'." -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "Parameters" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "Return values" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "member" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "variable" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "macro" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "struct" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "union" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "enum" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "type" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "function parameter" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "Template Parameters" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "Duplicate C++ declaration, also defined at %s:%s.\nDeclaration is '.. cpp:%s:: %s'." -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "concept" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "template parameter" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "%s() (in module %s)" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "%s (in module %s)" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "%s (built-in variable)" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "%s (built-in class)" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "%s (class in %s)" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s class method)" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s static method)" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "%s (%s property)" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "Python Module Index" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "modules" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "Deprecated" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "exception" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "class method" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "static method" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "property" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "more than one target found for cross-reference %r: %s" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr " (deprecated)" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "Variables" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "Raises" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "environment variable; %s" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "Malformed option description %r, should look like \"opt\", \"-opt args\", \"--opt args\", \"/opt args\" or \"+opt args\"" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "%s command line option" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "command line option" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "glossary term must be preceded by empty line" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "glossary terms must not be separated by empty lines" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "glossary seems to be misformatted, check indentation" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "glossary term" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "grammar token" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "reference label" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "environment variable" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "programme option" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "document" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "Module Index" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Search Page" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "duplicate label %s, other instance in %s" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "duplicate %s description of %s, other instance in %s" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig is disabled. :numref: is ignored." -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "Failed to create a cross reference. Any number is not assigned: %s" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "the link has no caption: %s" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "invalid numfig_format: %s (%r)" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "invalid numfig_format: %s" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "undefined label: %r" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "Failed to create a cross reference. A title or caption not found: %r" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "new config" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "config changed" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "extensions changed" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "build environment version not current" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "source directory has changed" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "This environment is incompatible with the selected builder, please choose another doctree directory." -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "Failed to scan documents in %s: %r" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "Domain %r is not registered" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "document isn't included in any toctree" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "self referenced toctree found. Ignored." -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "see %s" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "see also %s" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "unknown index entry type %r" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "Symbols" @@ -2461,17 +2620,17 @@ msgstr "image file %s not readable: %s" msgid "download file not readable: %s" msgstr "download file not readable: %s" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "%s is already assigned section numbers (nested numbered toctree?)" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "Would create file %s." -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2483,149 +2642,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "\nLook recursively in <MODULE_PATH> for Python modules and packages and create\none reST file with automodule directives per package in the <OUTPUT_PATH>.\n\nThe <EXCLUDE_PATTERN>s can be file and/or directory patterns that will be\nexcluded from generation.\n\nNote: By default this script will not overwrite already created files." -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "path to module to document" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "fnmatch-style file and/or directory patterns to exclude from generation" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "directory to place all output" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "maximum depth of submodules to show in the TOC (default: 4)" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "overwrite existing files" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "follow symbolic links. Powerful when combined with collective.recipe.omelette." -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "run the script without creating files" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "put documentation for each module on its own page" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "include \"_private\" modules" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "filename of table of contents (default: modules)" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "don't create a table of contents file" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "don't create headings for the module/package packages (e.g. when the docstrings already contain them)" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "put module documentation before submodule documentation" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "interpret module paths according to PEP-0420 implicit namespaces specification" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "file suffix (default: rst)" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "generate a full project with sphinx-quickstart" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "append module_path to sys.path, used when --full is given" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "project name (default: root module name)" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "project author(s), used when --full is given" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "project version, used when --full is given" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "project release, used when --full is given, defaults to --doc-version" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "extension options" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "%s is not a directory." +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "section \"%s\" gets labeled as \"%s\"" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "invalid regex %r in %s" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "module %s could not be imported: %s" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "Testing of coverage in the sources finished, look at the results in %(outdir)spython.txt." -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "invalid regex %r in coverage_c_regexes" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "undocumented c api: %s [%s] in file %s" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "module %s could not be imported: %s" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "undocumented python function: %s :: %s" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "undocumented python class: %s :: %s" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "undocumented python method: %s :: %s :: %s" @@ -2666,7 +2847,7 @@ msgstr "no code/output in %s block at %s:%s" msgid "ignoring invalid doctest code: %r" msgstr "ignoring invalid doctest code: %r" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "====================== slowest reading durations =======================" @@ -2742,7 +2923,7 @@ msgstr "[graph: %s]" msgid "[graph]" msgstr "[graph]" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2750,7 +2931,7 @@ msgid "" "Traceback: %s" msgstr "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n\nTraceback: %s" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2760,99 +2941,39 @@ msgid "" "%r" msgstr "convert exited with error:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "convert command %r cannot be run, check the image_converter setting" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "LaTeX command %r cannot be run (needed for maths display), check the imgmath_latex setting" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "%s command %r cannot be run (needed for maths display), check the imgmath_%s setting" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "display latex %r: %s" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "inline latex %r: %s" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "intersphinx inventory has moved: %s -> %s" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "loading intersphinx inventory from %s..." - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "encountered some issues with some of the inventories, but they had working alternatives:" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "failed to reach any of the inventories with the following issues:" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "(in %s v%s)" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "(in %s)" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "external %s:%s reference target not found: %s" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "intersphinx identifier %r is not string. Ignored" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "Failed to read intersphinx_mapping[%s], ignored: %r" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[source]" @@ -3028,23 +3149,23 @@ msgstr "Failed to update signature for %r: parameter not found: %s" msgid "Failed to parse type_comment for %r: %s" msgstr "Failed to parse type_comment for %r: %s" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "autosummary references excluded document %r. Ignored." -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "autosummary: stub file not found %r. Check your autosummary_generate setting." -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "A captioned autosummary requires :toctree: option. ignored." -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3052,46 +3173,52 @@ msgid "" "%s" msgstr "autosummary: failed to import %s.\nPossible hints:\n%s" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "failed to parse name %s" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "failed to import object %s" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: file not found: %s" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "autosummary: failed to determine %r to be documented, the following exception was raised:\n%s" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[autosummary] generating autosummary for: %s" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "[autosummary] writing to %s" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3099,7 +3226,7 @@ msgid "" "%s" msgstr "[autosummary] failed to import %s.\nPossible hints:\n%s" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3114,36 +3241,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\nGenerate ReStructuredText using autosummary directives.\n\nsphinx-autogen is a frontend to sphinx.ext.autosummary.generate. It generates\nthe reStructuredText files from the autosummary directives contained in the\ngiven input files.\n\nThe format of the autosummary directive is documented in the\n``sphinx.ext.autosummary`` Python module and can be read using::\n\n pydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "source files to generate rST files for" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "directory to place all output in" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "default suffix for files (default: %(default)s)" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "custom template directory (default: %(default)s)" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "document imported members (default: %(default)s)" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "document exactly the members in module __all__ attribute. (default: %(default)s)" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "intersphinx identifier %r is not string. Ignored" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "Failed to read intersphinx_mapping[%s], ignored: %r" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "encountered some issues with some of the inventories, but they had working alternatives:" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "failed to reach any of the inventories with the following issues:" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "intersphinx inventory has moved: %s -> %s" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "(in %s v%s)" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "(in %s)" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "external %s:%s reference target not found: %s" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "Keyword Arguments" @@ -3200,65 +3392,65 @@ msgstr "malformed string literal (missing closing quote): %s" msgid "malformed string literal (missing opening quote): %s" msgstr "malformed string literal (missing opening quote): %s" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "Attention" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "Caution" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "Danger" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "Error" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "Hint" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "Important" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "Note" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "See also" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "Tip" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "Warning" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "continued from previous page" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "continues on next page" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "Non-alphabetical" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "Numbers" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "page" @@ -3267,7 +3459,7 @@ msgstr "page" msgid "Table of Contents" msgstr "Table of Contents" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Search" @@ -3325,12 +3517,12 @@ msgstr "quick access to all modules" msgid "all functions, classes, terms" msgstr "all functions, classes, terms" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" -msgstr "Index – %(key)s" +msgid "Index – %(key)s" +msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3349,31 +3541,31 @@ msgstr "can be huge" msgid "Navigation" msgstr "Navigation" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "Search within %(docstitle)s" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "About these documents" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "Copyright" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "© %(copyright_prefix)s %(copyright)s." -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Last updated on %(last_updated)s." -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3476,7 +3668,7 @@ msgstr "Searching" msgid "Preparing search..." msgstr "Preparing search..." -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr ", in " @@ -3485,11 +3677,11 @@ msgid "Hide Search Matches" msgstr "Hide Search Matches" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "Collapse sidebar" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "Expand sidebar" @@ -3497,26 +3689,26 @@ msgstr "Expand sidebar" msgid "Contents" msgstr "Contents" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "4 column based index found. It might be a bug of extensions you use: %r" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "Footnote [%s] is not referenced." -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "Footnote [#] is not referenced." @@ -3565,17 +3757,17 @@ msgstr "%s:%s reference target not found: %s" msgid "%r reference target not found: %s" msgstr "%r reference target not found: %s" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "Could not fetch remote image: %s [%d]" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "Could not fetch remote image: %s [%s]" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "Unknown image format: %s..." @@ -3585,11 +3777,11 @@ msgstr "Unknown image format: %s..." msgid "undecodable source characters, replacing with \"?\": %r" msgstr "undecodable source characters, replacing with \"?\": %r" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "skipped" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "failed" @@ -3600,12 +3792,12 @@ msgid "" "not in the domain." msgstr "Problem in %s domain: field is supposed to use role '%s', but that role is not in the domain." -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "unknown directive or role name: %s:%s" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "unknown node type: %r" @@ -3632,18 +3824,23 @@ msgid "" "it directly: %s" msgstr "Invalid date format. Quote the string by single quote if you want to output it directly: %s" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "toctree contains ref to nonexisting file %r" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "exception while evaluating only directive expression: %s" @@ -3653,45 +3850,50 @@ msgstr "exception while evaluating only directive expression: %s" msgid "default role %s not found" msgstr "default role %s not found" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "numfig_format is not defined for %s" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "Any IDs not assigned for %s node" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "Could not obtain image size. :scale: option is ignored." @@ -3704,31 +3906,36 @@ msgstr "unknown %r toplevel_sectioning for class %r" msgid "too large :maxdepth:, ignored." msgstr "too large :maxdepth:, ignored." -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "document title is not a single Text node" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "encountered title node not in section, topic, table, admonition or sidebar" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "Footnotes" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "both tabularcolumns and :widths: option are given. :widths: is ignored." -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "dimension unit %s is invalid. Ignored." -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "unknown index entry type %s found" @@ -3742,11 +3949,11 @@ msgstr "[image: %s]" msgid "[image]" msgstr "[image]" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "caption not inside a figure." -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "unimplemented node type: %r" diff --git a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.js b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.js index 96761bc..705ae30 100644 --- a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "", "Hide Search Matches": "", "Index": "", - "Index – %(key)s": "", + "Index – %(key)s": "", "Index pages by letter": "", "Indices and tables:": "", "Last updated on %(last_updated)s.": "", diff --git a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo index 4ec313b..fc07fad 100644 Binary files a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo and b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po index bd446cb..9ad2239 100644 --- a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po @@ -7,134 +7,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: English (Hong Kong) (http://app.transifex.com/sphinx-doc/sphinx-1/language/en_HK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: en_HK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,75 +155,77 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -231,78 +233,78 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" @@ -487,190 +489,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -679,7 +833,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" @@ -689,7 +843,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -704,28 +858,28 @@ msgstr "" msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "" @@ -814,7 +968,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -842,12 +996,17 @@ msgstr "" msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -932,7 +1091,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -958,13 +1117,13 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -978,144 +1137,149 @@ msgstr "" msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "" @@ -1141,19 +1305,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "" @@ -1211,18 +1377,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1230,27 +1388,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1262,7 +1399,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1351,7 +1488,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1362,7 +1499,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1644,12 +1781,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1758,12 +1895,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1795,11 +1932,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1827,85 +1964,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "" @@ -1913,7 +2050,7 @@ msgstr "" msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1963,7 +2100,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1978,7 +2115,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -1987,52 +2124,52 @@ msgstr "" msgid "Arguments" msgstr "" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2042,7 +2179,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2079,352 +2216,374 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr "" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "" @@ -2460,17 +2619,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2482,149 +2641,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2665,7 +2846,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2741,7 +2922,7 @@ msgstr "" msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2749,7 +2930,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2759,99 +2940,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" @@ -3027,23 +3148,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3051,46 +3172,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3098,7 +3225,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3113,36 +3240,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" @@ -3199,65 +3391,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "" @@ -3266,7 +3458,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "" @@ -3324,12 +3516,12 @@ msgstr "" msgid "all functions, classes, terms" msgstr "" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" +msgid "Index – %(key)s" msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3348,31 +3540,31 @@ msgstr "" msgid "Navigation" msgstr "" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3475,7 +3667,7 @@ msgstr "" msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr "" @@ -3484,11 +3676,11 @@ msgid "Hide Search Matches" msgstr "" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "" @@ -3496,26 +3688,26 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "" @@ -3564,17 +3756,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3584,11 +3776,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "" @@ -3599,12 +3791,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3631,18 +3823,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3652,45 +3849,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3703,31 +3905,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3741,11 +3948,11 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.js b/sphinx/locale/eo/LC_MESSAGES/sphinx.js index 706f506..e518778 100644 --- a/sphinx/locale/eo/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/eo/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "", "Hide Search Matches": "", "Index": "", - "Index – %(key)s": "Indico – %(key)s", + "Index – %(key)s": "", "Index pages by letter": "", "Indices and tables:": "", "Last updated on %(last_updated)s.": "", diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.mo b/sphinx/locale/eo/LC_MESSAGES/sphinx.mo index 32270d2..7f03cc6 100644 Binary files a/sphinx/locale/eo/LC_MESSAGES/sphinx.mo and b/sphinx/locale/eo/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.po b/sphinx/locale/eo/LC_MESSAGES/sphinx.po index df3cb60..b45955e 100644 --- a/sphinx/locale/eo/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eo/LC_MESSAGES/sphinx.po @@ -9,134 +9,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Tatsuro YOKOTA <hidaruma@outlook.jp>, 2021\n" "Language-Team: Esperanto (http://app.transifex.com/sphinx-doc/sphinx-1/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "Ne povas trovi fontan dosierujon (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -144,12 +144,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,75 +157,77 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -233,78 +235,78 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" @@ -489,190 +491,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -681,7 +835,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" @@ -691,7 +845,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -706,28 +860,28 @@ msgstr "" msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "" @@ -816,7 +970,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -844,12 +998,17 @@ msgstr "" msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -934,7 +1093,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -960,13 +1119,13 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -980,144 +1139,149 @@ msgstr "Indico universala" msgid "index" msgstr "indico" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "sekva" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "antaŭa" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "%s %s dokumentaro" @@ -1143,19 +1307,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "" @@ -1213,18 +1379,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1232,27 +1390,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1264,7 +1401,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1353,7 +1490,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1364,7 +1501,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1646,12 +1783,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1760,12 +1897,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1797,11 +1934,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1829,85 +1966,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "Aŭtoro:" @@ -1915,7 +2052,7 @@ msgstr "Aŭtoro:" msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1965,7 +2102,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1980,7 +2117,7 @@ msgstr "%s() (klaso)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -1989,52 +2126,52 @@ msgstr "" msgid "Arguments" msgstr "" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "funkcio" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "klaso" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "datenoj" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "atributo" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2044,7 +2181,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2081,352 +2218,374 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "Parametroj" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "membro" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "nomaĵo" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "tipo" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "escepto" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr "" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "vidu %s" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "vidu ankaŭ %s" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "Simboloj" @@ -2462,17 +2621,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2484,149 +2643,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2667,7 +2848,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2743,7 +2924,7 @@ msgstr "" msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2751,7 +2932,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2761,99 +2942,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" @@ -3029,23 +3150,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3053,46 +3174,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3100,7 +3227,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3115,36 +3242,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" @@ -3201,65 +3393,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "Eraro" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "Averto" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "" @@ -3268,7 +3460,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "" @@ -3326,12 +3518,12 @@ msgstr "" msgid "all functions, classes, terms" msgstr "" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" -msgstr "Indico – %(key)s" +msgid "Index – %(key)s" +msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3350,31 +3542,31 @@ msgstr "" msgid "Navigation" msgstr "" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "Aŭtora rajto" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3477,7 +3669,7 @@ msgstr "" msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr "" @@ -3486,11 +3678,11 @@ msgid "Hide Search Matches" msgstr "" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "" @@ -3498,26 +3690,26 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "" @@ -3566,17 +3758,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3586,11 +3778,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "" @@ -3601,12 +3793,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3633,18 +3825,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3654,45 +3851,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3705,31 +3907,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3743,11 +3950,11 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.js b/sphinx/locale/es/LC_MESSAGES/sphinx.js index 26dcfb7..67415c6 100644 --- a/sphinx/locale/es/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/es/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "Ir a", "Hide Search Matches": "Ocultar coincidencias de la b\u00fasqueda", "Index": "\u00cdndice", - "Index – %(key)s": "\u00cdndice – %(key)s", + "Index – %(key)s": "", "Index pages by letter": "\u00cdndice alfab\u00e9tico de p\u00e1ginas", "Indices and tables:": "\u00cdndices y tablas:", "Last updated on %(last_updated)s.": "Actualizado por \u00faltima vez en %(last_updated)s.", diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.mo b/sphinx/locale/es/LC_MESSAGES/sphinx.mo index 53d7b2c..e6769b4 100644 Binary files a/sphinx/locale/es/LC_MESSAGES/sphinx.mo and b/sphinx/locale/es/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.po b/sphinx/locale/es/LC_MESSAGES/sphinx.po index 83d7dda..4aa6c71 100644 --- a/sphinx/locale/es/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/es/LC_MESSAGES/sphinx.po @@ -16,134 +16,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Adam Turner, 2023\n" "Language-Team: Spanish (http://app.transifex.com/sphinx-doc/sphinx-1/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: es\n" "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "No se encuentra directorio fuente (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "Directorio de salida (%s) no es un directorio" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "Directorio fuente y directorio destino no pueden ser idénticos" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "Ejecutando Sphinx v%s" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Este proyecto necesita al menos Sphinx v%s y por lo tanto no se puede construir con esta versión." -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "creando directorio de salida" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "mientras configura la extensión %s:" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' como se define actualmente en el archivo conf.py no es un Python invocable. Por favor, modifique su definición para que sea una función invocable. Esto es necesario para que el archivo conf.py se comporte como una extensión de Sphinx." -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "cargando traducciones [%s]... " -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "hecho" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "no disponible para mensajes incorporados" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "cargando el ambiente pickled" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "fallo: %s" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "Ningún constructor seleccionado, utilizando el valor predeterminado: html" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "éxitoso" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "finalizo con problemas" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "compilación %s, %sadvertencia (con advertencias tratadas como errores)." -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "compilación %s, %s advertencias (con advertencias tratadas como errores)." -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "construir %s, %s advertencia." -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "compilación %s, %s advertencias." -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "construir %s." -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "la clase de nodo %r ya está registrada, sus visitantes serán reemplazados" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "la directiva %r ya está registrada, esa se reemplazará" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "el rol %r ya está registrado, ese se reemplazará" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -151,12 +151,12 @@ msgid "" "explicit" msgstr "la extensión de %s no declara si es seguro para la lectura en paralelo, asumiendo que no es - consulte con el autor de la extensión para comprobar y hacer explícito" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "la extensión %s no es segura para lectura paralela" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -164,75 +164,77 @@ msgid "" "explicit" msgstr "la extensión %s no declara si es seguro para la escritura paralela, suponiendo que no lo sea - solicite al autor de la extensión que lo verifique y haga explicito" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "la extensión %s no es segura para escritura paralela" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "realizando serialmente %s" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "directorio de configuración no contiene un archivo conf.py (%s)" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "Se encontró un valor de configuración no válido: 'language = None'. Actualice su configuración a un código de idioma válido. Volviendo a definir 'en' (Inglés)." -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "no se puede reemplazar el ajuste de la configuración del diccionario %r, haciendo caso omiso (utilice %r para definir elementos individuales)" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "número no válido %r de valor de configuración %r, haciendo caso omiso" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "no se puede reemplazar los ajustes de configuración %r con tipo no compatible, haciendo caso omiso" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "valor de configuración desconocido %r en anulación, ignorando" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "Valor de configuración %r ya presente" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Hay un error de sintaxis en su archivo de configuración: %s\n" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "El archivo de configuración (o uno de los módulos que importa) invocó sys.exit()" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -240,78 +242,78 @@ msgid "" "%s" msgstr "Hay un error programable en su archivo de configuración:\n\n%s" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "El valor de configuración `source_suffix' espera una cadena de caracteres, una lista de cadena de caracteres o un diccionario. Pero `%r' es dado." -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "Sección %s" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "Figura %s" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "Tabla %s" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "Lista %s" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "El valor de configuración `{name}` tiene que ser uno de {candidates}, pero fue dado `{current}`." -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "El valor de configuración `{name}' tiene tipo `{current.__name__}'; esperado {permitted}." -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "El valor de configuración `{name}' tiene el tipo `{current.__name__}', el valor predeterminado es `{default.__name__}'." -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r no fue encontrado, se ignora." -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "Desde v2.0, Sphinx usa \"index\" como root_doc por defecto. Agregue \"root_doc = 'contents'\" a su archivo conf.py." -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "Evento %r ya presente" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "Nombre de evento desconocido: %s" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "Manipulador %r para el evento %r lanzó una excepción" @@ -496,190 +498,342 @@ msgstr "número de PEP inválido %s" msgid "invalid RFC number %s" msgstr "número RFC inválido %s" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "configuración de %s.%s se produce en ninguna de las configuraciones de tema buscado" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "opción de tema no soportada %r fue dada" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "archivo %r o ruta del tema no es un archivo zip válido o no contiene ningún tema" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "Opciones" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "¡Interrumpido!" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "Error de codificación:" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "Error de recursión:" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "Esto puede ocurrir con archivos de origen muy grandes o profundamente anidados. Puede aumentar cuidadosamente el límite de recurrencia predeterminado de Python de 1000 en el archivo conf.py con, por ej.:" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "Ha ocurrido una excepción:" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "Por favor, informe también esto si fue un error del usuario, de modo que la próxima vez se pueda proporcionar un mejor mensaje de error." + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "una imagen adecuada para %s constructor no encontrado: %s (%s)" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "una imagen adecuada para %s constructor no encontrado: %s" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "compilando [mo]: " -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "escribiendo salida... " -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "todos los %d archivos po" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "los objetivos para %d los archivos po que se especifican" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "los objetivos para %d los archivos po que estan desactualizados" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "todos los archivos fuente" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "archivo %r dado en la línea de comandos no está en el directorio fuente, ignorado" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "%d archivos fuente dados en la línea de comandos" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "los objetivos para %d los archivos fuentes que estan desactualizados" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "compilando [%s]: " -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "buscando por archivos no actualizados... " -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "%d encontrado" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "no encontrado" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "preparando ambiente" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "verificando consistencia" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "no hay archivos objetivo desactualizados." -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "actualizando ambiente: " -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%sañadido, %s cambiado, %s removido" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "leyendo fuentes... " -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "docnames para escribir: %s" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "preparando documentos" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -688,7 +842,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "entrada de tabla de contenido duplicada encontrada: %s" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "copiando imágenes... " @@ -698,7 +852,7 @@ msgstr "copiando imágenes... " msgid "cannot read image file %r: copying it instead" msgstr "no puede leer el archivo de imagen %r: en su lugar, lo copia" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -713,28 +867,28 @@ msgstr "no se puede escribir archivo de imagen %r: %s" msgid "Pillow not found - copying image files" msgstr "Pillow no encontrada - copiando archivos de imágenes" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "escribiendo el archivo mimetype..." -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "escribiendo el archivo META-INF/container.xml..." -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "escribiendo el archivo content.opf..." -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "mimetype desconocido para %s, ignorando" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "escribiendo el archivo toc.ncx..." -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "escribiendo archivo %s..." @@ -823,7 +977,7 @@ msgstr "el valor de configuración \"epub_identifier\" no debe estar vacío para msgid "conf value \"version\" should not be empty for EPUB3" msgstr "el valor de configuración \"version\" no debe estar vacío para EPUB3" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "css_file inválido: %r, ignorado" @@ -851,12 +1005,17 @@ msgstr "escribiendo catálogos de mensajes... " msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "Busque cualquier error en la salida anterior o en el archivo %(outdir)s/output.txt" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "enlace roto: %s (%s)" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "Ancla '%s' no encontrado" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "Error al compilar expresiones regulares en linkcheck_allowed_redirects: %r %s" @@ -941,7 +1100,7 @@ msgstr "error escribiendo archivo Makefile: %s" msgid "The text files are in %(outdir)s." msgstr "Los archivos de texto están en %(outdir)s." -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -967,13 +1126,13 @@ msgstr "el archivo de información de compilación está roto: %r" msgid "The HTML pages are in %(outdir)s." msgstr "Las páginas HTML están en %(outdir)s." -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "Error al leer la información de compilación del fichero: %r" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -987,144 +1146,149 @@ msgstr "Índice General" msgid "index" msgstr "índice" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "siguiente" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "anterior" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "generando índices" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "escribiendo páginas adicionales" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "copiando archivos descargables... " -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "no se puede copiar archivo descargable %r: %s" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "Error al copiar un archivo en html_static_file: %s: %r" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "copiar archivos estáticos" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "no se puede copiar archivo estático %r" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "copiando archivos extras" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "no se puede copiar archivo extra %r" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "Error al escribir el archivo de información de compilación: %r" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "no se pudo cargar el índice de búsqueda, pero no se crearán todos los documentos: el índice estará incompleto." -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "página %s coincide con dos patrones en html_sidebars: %r y %r" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "Se produjo un error Unicode al representar la página %s. Asegúrese de que todos los valores de configuración que contengan contenido que no sea ASCII sean cadenas Unicode." -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "Ha ocurrido un error al renderizar la pagina %s.\nRazón: %r" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "volcar inventario de objetos" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "volcar el índice de búsqueda en %s" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "js_file inválido: %r, ignorado" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "Muchos math_renderers están registrados. Pero no se ha seleccionado math_renderer." -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "Desconocido math_renderer %r es dado." -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "entrada html_extra_path %r no existe" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "entrada html_extra_path %r se coloca dentro de outdir" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "entrada html_static_path %r no existe" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "entrada html_static_path %r se coloca dentro de outdir" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "archivo de logo %r no existe" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "el archivo %r usado para el favicon no existe" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "documentación de %s - %s" @@ -1150,19 +1314,21 @@ msgstr "no se encontró el valor de configuración \"latex_documents\"; no se es msgid "\"latex_documents\" config value references unknown document %s" msgstr "valor de configuración \"latex_documents\" hace referencia a un documento desconocido %s" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "Índice" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "Versión" @@ -1220,18 +1386,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "Ha ocurrido un error al compilar, iniciando depurador:" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "¡Interrumpido!" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "error en marcado de reST:" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "Error de codificación:" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1239,27 +1397,6 @@ msgid "" "the developers." msgstr "El rastreo completo se ha guardado en %s, si desea informar el problema a los desarrolladores." -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "Error de recursión:" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "Esto puede ocurrir con archivos de origen muy grandes o profundamente anidados. Puede aumentar cuidadosamente el límite de recurrencia predeterminado de Python de 1000 en el archivo conf.py con, por ej.:" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "Ha ocurrido una excepción:" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "Por favor, informe también esto si fue un error del usuario, de modo que la próxima vez se pueda proporcionar un mejor mensaje de error." - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1271,7 +1408,7 @@ msgid "job number should be a positive number" msgstr "número de trabajo debe ser un número positivo" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "Para más información visite <https://www.sphinx-doc.org/>." @@ -1360,7 +1497,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "define la etiqueta: incluye bloques \"only\" con TAG" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1371,7 +1508,7 @@ msgstr "opciones de salida de consola" msgid "increase verbosity (can be repeated)" msgstr "aumentar la verbosidad (puede repetirse)" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "sin salida en salida estándar, solo advertencias en los mensajes de error estándar" @@ -1653,12 +1790,12 @@ msgstr "¿Crear Makefile? (y/n)" msgid "Create Windows command file? (y/n)" msgstr "¿Crear archivo de comandos para Windows? (y/n)" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "Creando archivo %s." -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "El archivo %s ya existe, omitiendo." @@ -1767,12 +1904,12 @@ msgstr "usar epub" msgid "Extension options" msgstr "Opciones de extensión" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "habilitada extensión %s" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "habilitar extensiones arbitrarias" @@ -1804,11 +1941,11 @@ msgstr "use el modo make para Makefile/make.bat" msgid "do not use make-mode for Makefile/make.bat" msgstr "no use el modo make para Makefile/make.bat" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "Plantillas de proyecto" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "directorio de plantillas para archivos de plantillas" @@ -1836,85 +1973,85 @@ msgstr "sphinx-quickstart solo se genera en un directorio vacío. Por favor, esp msgid "Invalid template variable: %s" msgstr "Variable de plantilla inválida: %s" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "no espacios en blanco eliminados por identado" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "Subtítulo inválido: %s" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "la especificación del número de línea está fuera de range(1-%d): %r" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "No puede utilizar ambas opciones \"%s\" y \"%s\"" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "Archivo incluido %r no encontrado o la lectura del mismo fallo" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "Codificación %r usado para la lectura archivo incluido %r parece estar mala, trate de darle una opción :encoding:" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "Objeto nombrado %r no encontrado en el archivo incluido %r" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "No puede utilizar a \"lineno-match\" con un conjunto desunido de \"líneas\"" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "Línea especifico %r: sin líneas tiradas desde el archivo incluido %r" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "patrón global toctree %r no coincide con ningún documento" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "toctree contiene referencia al documento excluido %r" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "toctree contiene referencias a documentos inexistentes %r" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "entrada duplicada encontrada en toctree: %s" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "Autor de la sección: " -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "Autor del módulo: " -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "Código del autor: " -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "Autor: " @@ -1922,7 +2059,7 @@ msgstr "Autor: " msgid ".. acks content is not a list" msgstr ".. contenido de los reconocimientos no es una lista" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr ".. hlist contenido no es una lista" @@ -1972,7 +2109,7 @@ msgstr "Citación [%s] no está referenciada." msgid "%s() (built-in function)" msgstr "%s() (función incorporada)" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "%s() (método de %s)" @@ -1987,7 +2124,7 @@ msgstr "%s() (clase)" msgid "%s (global variable or constant)" msgstr "%s (variable global o constante)" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "%s (atributo de %s)" @@ -1996,52 +2133,52 @@ msgstr "%s (atributo de %s)" msgid "Arguments" msgstr "Argumentos" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "Lanzamientos" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "Devuelve" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "Tipo del valor devuelto" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "%s (módulo)" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "función" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "método" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "clase" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "dato" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "atributo" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "módulo" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "duplicada %s descripción de %s, otra %s en %s" @@ -2051,7 +2188,7 @@ msgstr "duplicada %s descripción de %s, otra %s en %s" msgid "duplicate label of equation %s, other instance in %s" msgstr "etiqueta duplicada de la ecuación %s, otra instancia en %s" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "No válido math_eqref_format: %r" @@ -2088,352 +2225,374 @@ msgstr "rol" msgid "duplicate description of %s %s, other instance in %s" msgstr "descripción duplicada de %s %s, otra instancia en %s" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "%s (C %s)" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "Declaración de C duplicada, también definida en %s:%s.\nLa declaración es '.. c:%s:: %s'." -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "Parámetros" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "Valores devueltos" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "miembro" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "variable" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "macro" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "estructura" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "unión" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "enum" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "enumeración" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "tipo" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "parámetro de función" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "Parametros de Plantilla" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "Declaración de C++ duplicada, también definida en %s:%s.\nLa declaración es '.. cpp:%s:: %s'." -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "concepto" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "parámetro de plantilla" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "%s() (en el módulo %s)" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "%s (en el módulo %s)" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "%s (variable incorporada)" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "%s (clase incorporada)" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "%s (clase en %s)" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "%s() (método de clase de %s)" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "%s() (método estático de %s)" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "%s (%s propiedad)" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "Índice de Módulos Python" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "módulos" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "Obsoleto" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "excepción" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "método de la clase" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "método estático" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "propiedad" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "se encontró más de un objetivo para la referencia cruzada %r: %s" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr " (obsoleto)" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "Variables" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "Muestra" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "variables de entorno; %s" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "Descripción de la opción con formato incorrecto %r, debe verse como \"opt\", \"-opt args\", \"--opt args\", \"/opt args\" o \"+opt args\"" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "opción de línea de comando %s" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "opción de línea de comando" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "el término del glosario debe ir precedido de una línea vacía" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "los términos del glosario no deben estar separados por líneas vacías" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "el glosario parece estar mal formateado, verifique la sangría" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "termino de glosario" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "gramática simbólica" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "etiqueta de referencia" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "variables de entorno" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "opción de programa" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "documento" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "Índice de Módulos" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Página de Búsqueda" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "etiqueta duplicada %s, otra instancia en %s" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "duplicada %s descripción de %s, otra instancia en %s" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig está deshabilitado. :numref: se ignora." -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "Error al crear una referencia cruzada. No se asigna ningún número: %s" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "el enlace no tiene subtítulo: %s" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "inválido numfig_format: %s (%r)" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "inválido numfig_format: %s" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "etiqueta indefinida: %r" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "No se pudo crear una referencia cruzada. Un título o subtítulo no encontrado: %r" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "nueva configuración" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "configuración modificada" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "extensiones modificadas" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "la versión del entorno de compilación no es actual" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "directorio fuente ha cambiado" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "Este entorno es incompatible con el generador seleccionado, elija otro directorio doctree." -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "Error al escanear los documentos en %s: %r" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "Dominio %r no está registrado" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "documento no está incluido en ningún toctree" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "toctree auto referenciado encontrado. Ignorado." -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "ver %s" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "ver también %s" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "tipo de entrada de índice desconocido %r" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "Símbolos" @@ -2469,17 +2628,17 @@ msgstr "archivo de imagen %s no legible: %s" msgid "download file not readable: %s" msgstr "el archivo de descarga no es legible: %s" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "%s ya tiene asignados números de sección (¿número de árbol anidado?)" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "Debería crear archivo %s." -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2491,149 +2650,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "\nMire recursivamente en <MODULE_PATH> para módulos y paquetes de Python y cree\nun archivo reST con directivas automodule por paquete en el <OUTPUT_PATH>.\n\nLos <EXCLUDE_PATTERN>s pueden ser patrones de archivo y/o directorio que serán\nexcluidos de la generación.\n\nNota: Por defecto, este script no sobrescribirá los archivos ya creados." -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "ruta al módulo al documento" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "archivo de estilo fnmatch y/o patrones de directorio para excluir de la generación" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "directorio para colocar toda la salida" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "rofundidad máxima de submódulos para mostrar en la tabla de contenido (predeterminado: 4)" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "sobreescribir archivos existentes" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "seguir enlaces simbólicos. Potente cuando se combina con el paquete collective.recipe.omelette." -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "ejecutar la rutina sin crear archivos" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "poner documentación para cada módulo en su propia página" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "incluir \"_private\" en módulos" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "nombre de archivo de la tabla de contenido (predeterminado: módulos)" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "no crear un archivo de tabla de contenido" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "no cree encabezados para los paquetes de módulos/paquetes (por ejemplo, cuando las cadenas de documentación docstrings ya los contienen)" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "poner la documentación del módulo antes de la documentación del submódulo" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "interpretar las rutas del módulo de acuerdo con la especificación de espacios de nombres implícitos en la PEP-0420" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "sufijo de archivo (por defecto: rst)" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "generar un proyecto completo con sphinx-quickstart" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "agregue module_path al sys.path, que se usa cuando se da el parámetro --full" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "nombre del proyecto (predeterminado: nombre del módulo raíz)" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "autor(es) del proyecto, utilizado cuando se da el parámetro --full" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "versión del proyecto, utilizado cuando se da el parámetro --full" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "lanzamiento del proyecto, utilizado cuando se da el parámetro --full, por defecto es --doc-version" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "opciones de extensión" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "%s no es un directorio." +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "expresiones regulares inválidas %r en %s" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "el módulo %s no podía ser importado: %s" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "Pruebas de cobertura en las fuentes terminadas, mira los resultados en %(outdir)spython.txt." -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "expresiones regulares inválidas %r en coverage_c_regexes" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "api c indocumentado: %s [%s] en archivo %s" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "el módulo %s no podía ser importado: %s" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "función python indocumentada: %s :: %s" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "clase python indocumentada: %s :: %s" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "método python indocumentado: %s :: %s :: %s" @@ -2674,7 +2855,7 @@ msgstr "sin código/salida en el bloque %s en %s:%s" msgid "ignoring invalid doctest code: %r" msgstr "ignorando el código doctest no válido: %r" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "====================== duraciones de lectura más lentas =======================" @@ -2750,7 +2931,7 @@ msgstr "[gráfica: %s]" msgid "[graph]" msgstr "[gráfica]" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2758,7 +2939,7 @@ msgid "" "Traceback: %s" msgstr "No se puede ejecutar el comando de conversión de imagen %r. 'sphinx.ext.imgconverter' requiere ImageMagick por defecto. Asegúrese de que esté instalado o configure la opción 'image_converter' a un comando de conversión personalizado.\n\nRastrear: %s" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2768,99 +2949,39 @@ msgid "" "%r" msgstr "convert salió con error:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "el comando convert %r no puede ejecutar, compruebe el valor de configuración image_converter" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "comando LaTeX %r no se puede ejecutar (necesario para la visualización matemática), compruebe la configuración de imgmath_latex" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "comando %s %r no se puede ejecutar (necesario para la visualización matemática), verifique la configuración imgmath_%s" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "visualizar latex %r: %s" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "en línea latex %r: %s" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "el inventario intersphinx se ha movido: %s -> %s" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "cargando inventario intersphinx desde %s..." - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "encontró algunos problemas con algunos de los inventarios, pero tenían alternativas de trabajo:" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "no se pudo llegar a ninguno de los inventarios con los siguientes problemas:" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "(en %s versión %s)" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "(en %s)" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "%s externo: destino de referencia %s no encontrado: %s" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "el identificador de intersphinx %r no es una cadena. Ignorado" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "Error al leer intersphinx_mapping[%s], ignorado: %r" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[fuente]" @@ -3036,23 +3157,23 @@ msgstr "Error al actualizar la firma para %r: parámetro no encontrado: %s" msgid "Failed to parse type_comment for %r: %s" msgstr "Error al analizar type_comment para %r: %s" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "referencias autosummary excluidas documento %r. Ignorado." -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "autosummary: no se encontró el archivo stub %r. Verifique su configuración de autosummary_generate." -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "Un resumen automático con subtítulos requiere la opción :toctree: ignorado." -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3060,46 +3181,52 @@ msgid "" "%s" msgstr "autosummary: no se pudo importar %s.\nPosibles pistas:\n%s" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "fallo al analizar el nombre %s" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "fallo al importar el objeto %s" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: archivo no encontrado: %s" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "autosummary: no se pudo determinar %r que se documentará, se produjo la siguiente excepción:\n%s" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[autosummary] generar autosummary para: %s" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "[autosummary] escribiendo a %s" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3107,7 +3234,7 @@ msgid "" "%s" msgstr "[autosummary] no se pudo importar %s.\nPosibles pistas:\n%s" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3122,36 +3249,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\nGenere ReStructuredText usando directivas de resumen automático \"autosummary\".\n\nsphinx-autogen es una interfaz para sphinx.ext.autosummary.generate. Genera\nlos archivos reStructuredText de las directivas autosummary contenidas en el\nlos archivos de entrada dados.\n\nEl formato de la directiva autosummary está documentado en el módulo Python\n``sphinx.ext.autosummary`` y se puede leer usando el siguiente comando::\n\n pydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "archivos fuente para generar archivos rST para" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "directorio para colocar toda la salida en" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "sufijo predeterminado para archivos (predeterminado: %(default)s)" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "directorio de plantillas personalizadas (predeterminado: %(default)s)" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "documento importados miembros (predeterminado: %(default)s)" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "documentar exactamente los miembros en module __all__ attribute. (por defecto: %(default)s)" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "el identificador de intersphinx %r no es una cadena. Ignorado" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "Error al leer intersphinx_mapping[%s], ignorado: %r" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "encontró algunos problemas con algunos de los inventarios, pero tenían alternativas de trabajo:" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "no se pudo llegar a ninguno de los inventarios con los siguientes problemas:" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "el inventario intersphinx se ha movido: %s -> %s" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "(en %s versión %s)" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "(en %s)" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "%s externo: destino de referencia %s no encontrado: %s" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "Argumentos de palabras clave" @@ -3208,65 +3400,65 @@ msgstr "literal de cadena con formato incorrecto (falta la comilla de cierre): % msgid "malformed string literal (missing opening quote): %s" msgstr "literal de cadena con formato incorrecto (falta la comilla de apertura): %s" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "Atención" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "Prudencia" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "Peligro" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "Error" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "Consejo" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "Importante" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "Nota" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "Ver también" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "Truco" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "Advertencia" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "proviene de la página anterior" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "continúe en la próxima página" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "No alfabético" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "Números" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "página" @@ -3275,7 +3467,7 @@ msgstr "página" msgid "Table of Contents" msgstr "Tabla de contenido" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Búsqueda" @@ -3333,12 +3525,12 @@ msgstr "acceso rápido a todos los módulos" msgid "all functions, classes, terms" msgstr "todas las funciones, clases, términos" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" -msgstr "Índice – %(key)s" +msgid "Index – %(key)s" +msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3357,31 +3549,31 @@ msgstr "puede ser muy grande" msgid "Navigation" msgstr "Navegación" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "Buscar en %(docstitle)s" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "Sobre este documento" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "Copyright" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Actualizado por última vez en %(last_updated)s." -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3484,7 +3676,7 @@ msgstr "Buscando" msgid "Preparing search..." msgstr "Preparando búsqueda..." -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr ", en " @@ -3493,11 +3685,11 @@ msgid "Hide Search Matches" msgstr "Ocultar coincidencias de la búsqueda" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "Contraer barra lateral" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "Expandir barra lateral" @@ -3505,26 +3697,26 @@ msgstr "Expandir barra lateral" msgid "Contents" msgstr "Contenidos" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "Índice basado en 4 columnas encontrado. Puede ser un error de extensiones que usted usa: %r" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "Pie de página [%s] no está referenciado." -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "Pie de página [#] no está referenciado." @@ -3573,17 +3765,17 @@ msgstr "%s:%s objetivo de referencia no encontrado: %s" msgid "%r reference target not found: %s" msgstr "%r objetivo de referencia no encontrado: %s" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "No se pudo recuperar la imagen remota: %s [%d]" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "No se pudo recuperar la imagen remota: %s [%s]" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "Formato de imagen desconocido: %s..." @@ -3593,11 +3785,11 @@ msgstr "Formato de imagen desconocido: %s..." msgid "undecodable source characters, replacing with \"?\": %r" msgstr "caracteres fuente no codificables, reemplazando con \"?\": %r" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "omitido" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "fallado" @@ -3608,12 +3800,12 @@ msgid "" "not in the domain." msgstr "Problema en el dominio %s: se supone que el campo debe usar el rol '%s', pero ese rol no está en el dominio." -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "directiva desconocida o nombre de rol: %s:%s" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "tipo de nodo desconocido: %r" @@ -3640,18 +3832,23 @@ msgid "" "it directly: %s" msgstr "Formato de fecha inválido. Cite la cadena con comillas simples si desea generarla directamente: %s" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "toctree contiene referencia al archivo inexistente %r" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "excepción al evaluar solamente la expresión directiva: %s" @@ -3661,45 +3858,50 @@ msgstr "excepción al evaluar solamente la expresión directiva: %s" msgid "default role %s not found" msgstr "rol por defecto %s no encontrado" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "numfig_format no está definido para %s" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "Cualquier ID no asignado para el nodo %s" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "No se pudo obtener el tamaño de la imagen. La opción :scale: se ignora." @@ -3712,31 +3914,36 @@ msgstr "desconocida %r toplevel_sectioning para la clase %r" msgid "too large :maxdepth:, ignored." msgstr "demasiado grande :maxdepth:, ignorado." -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "título del documento no es un nodo de Texto único" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "no se encontró el nodo de título en la sección, tema, tabla, advertencia o barra lateral" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "Notas a pie de página" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "ambas columnas tabulares y la opción :widths: se dan. La opción :widths: se ignora." -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "la unidad de dimensión %s no es válida. Ignorado." -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "tipo de entrada de índice desconocido %s encontrado" @@ -3750,11 +3957,11 @@ msgstr "[imagen: %s]" msgid "[image]" msgstr "[imagen]" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "subtítulo no dentro de una figura." -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "tipo de nodo no implementado: %r" diff --git a/sphinx/locale/es_CO/LC_MESSAGES/sphinx.js b/sphinx/locale/es_CO/LC_MESSAGES/sphinx.js index 8559601..30e6924 100644 --- a/sphinx/locale/es_CO/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/es_CO/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "", "Hide Search Matches": "", "Index": "", - "Index – %(key)s": "", + "Index – %(key)s": "", "Index pages by letter": "", "Indices and tables:": "", "Last updated on %(last_updated)s.": "", diff --git a/sphinx/locale/es_CO/LC_MESSAGES/sphinx.mo b/sphinx/locale/es_CO/LC_MESSAGES/sphinx.mo index 3512934..3ea8ea6 100644 Binary files a/sphinx/locale/es_CO/LC_MESSAGES/sphinx.mo and b/sphinx/locale/es_CO/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/es_CO/LC_MESSAGES/sphinx.po b/sphinx/locale/es_CO/LC_MESSAGES/sphinx.po index 3dfa574..4e1fbce 100644 --- a/sphinx/locale/es_CO/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/es_CO/LC_MESSAGES/sphinx.po @@ -7,134 +7,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: Spanish (Colombia) (http://app.transifex.com/sphinx-doc/sphinx-1/language/es_CO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: es_CO\n" "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,75 +155,77 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -231,78 +233,78 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" @@ -487,190 +489,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -679,7 +833,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" @@ -689,7 +843,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -704,28 +858,28 @@ msgstr "" msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "" @@ -814,7 +968,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -842,12 +996,17 @@ msgstr "" msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -932,7 +1091,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -958,13 +1117,13 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -978,144 +1137,149 @@ msgstr "" msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "" @@ -1141,19 +1305,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "" @@ -1211,18 +1377,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1230,27 +1388,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1262,7 +1399,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1351,7 +1488,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1362,7 +1499,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1644,12 +1781,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1758,12 +1895,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1795,11 +1932,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1827,85 +1964,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "" @@ -1913,7 +2050,7 @@ msgstr "" msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1963,7 +2100,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1978,7 +2115,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -1987,52 +2124,52 @@ msgstr "" msgid "Arguments" msgstr "" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2042,7 +2179,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2079,352 +2216,374 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr "" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "" @@ -2460,17 +2619,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2482,149 +2641,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2665,7 +2846,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2741,7 +2922,7 @@ msgstr "" msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2749,7 +2930,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2759,99 +2940,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" @@ -3027,23 +3148,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3051,46 +3172,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3098,7 +3225,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3113,36 +3240,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" @@ -3199,65 +3391,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "" @@ -3266,7 +3458,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "" @@ -3324,12 +3516,12 @@ msgstr "" msgid "all functions, classes, terms" msgstr "" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" +msgid "Index – %(key)s" msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3348,31 +3540,31 @@ msgstr "" msgid "Navigation" msgstr "" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3475,7 +3667,7 @@ msgstr "" msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr "" @@ -3484,11 +3676,11 @@ msgid "Hide Search Matches" msgstr "" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "" @@ -3496,26 +3688,26 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "" @@ -3564,17 +3756,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3584,11 +3776,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "" @@ -3599,12 +3791,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3631,18 +3823,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3652,45 +3849,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3703,31 +3905,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3741,11 +3948,11 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.js b/sphinx/locale/et/LC_MESSAGES/sphinx.js index 970c9f2..92f99a3 100644 --- a/sphinx/locale/et/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/et/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "Otsi", "Hide Search Matches": "Varja otsingu tulemused", "Index": "Indeks", - "Index – %(key)s": "Indeks – %(key)s", + "Index – %(key)s": "", "Index pages by letter": "Indeksi lehek\u00fcljed algust\u00e4he kaupa", "Indices and tables:": "Indeksid ja tabelid:", "Last updated on %(last_updated)s.": "Viimati uuendatud %(last_updated)s.", diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.mo b/sphinx/locale/et/LC_MESSAGES/sphinx.mo index aa8b6ce..cef02e4 100644 Binary files a/sphinx/locale/et/LC_MESSAGES/sphinx.mo and b/sphinx/locale/et/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.po b/sphinx/locale/et/LC_MESSAGES/sphinx.po index e73f4dc..adcf179 100644 --- a/sphinx/locale/et/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/et/LC_MESSAGES/sphinx.po @@ -11,134 +11,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Ivar Smolin <okul@linux.ee>, 2013-2022\n" "Language-Team: Estonian (http://app.transifex.com/sphinx-doc/sphinx-1/language/et/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: et\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "Lähtekataloogi (%s) pole võimalik leida" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "Väljundkataloog (%s) ei ole kataloog" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "Lähtekataloog ja sihtkataloog ei tohi olla identsed" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "Sphinx v%s käitamine" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "See projekt vajab vähemalt Sphinxi v%s ja seetõttu pole projekti võimalik käesoleva versiooniga ehitada." -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "väljundkataloogi loomine" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "tõlgete laadimine [%s]... " -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "valmis" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "serialiseeritud keskkonna laadimine" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "tõrge: %s" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "Ehitajat pole valitud, kasutatakse vaikimisi ehitajat: html" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "oli edukas" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "lõppes probleemidega" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "ehitamine %s, %s hoiatus." -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "ehitamine %s." -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -146,12 +146,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "laiendus %s pole rööbiti lugemiseks turvaline" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -159,75 +159,77 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "laiendus %s pole rööbiti kirjutamiseks turvaline" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "seadistuste kataloog (%s) ei sisalda faili conf.py" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "vigane arv %r seadistuse väärtusele %r, eiratakse" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "Seadistuste väärtus %r on juba olemas" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Sinu seadistusfailis on süntaksi viga: %s\n" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Seadistusfail (või mõni selle poolt imporditud moodulitest) kutsus välja sys.exit()" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -235,78 +237,78 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "Sektsioon %s" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "Joonis %s" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "Tabel %s" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "Nimekiri %s" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r ei leitud, eiratakse." -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "Sündmus %r on juba olemas" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "Tundmatu sündmuse nimi: %s" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" @@ -491,190 +493,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "fail %r teemarajal pole korrektni zip-fail või ei sisalda see teemat" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "Katkestatud!" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "Rekursiooni viga:" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "Kui see oli kasutaja viga, siis anna palun sellest teada, et tulevikus oleks võimalik parem veateade väljastada." + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "ehitamine [mo]: " -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "väljundi kirjutamine... " -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "%d määratud po-faili sihtfailid" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "%d po-faili sihtfailid on aegunud" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "kõik lähtefailid" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "%d lähtefaili sihtfailid on aegunud" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "ehitamine [%s]: " -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "praeguseks aegunud failide otsimine... " -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "leitud %d" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "ei leitud" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "kooskõla kontrollimine" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "aegunud sihtfaile pole" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "keskkonna uuendamine:" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "lisatud %s, muudetud %s, eemaldatud %s" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "lähtefailide lugemine..." -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "dokumentide ettevalmistamine" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -683,7 +837,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "kujutiste kopeerimine... " @@ -693,7 +847,7 @@ msgstr "kujutiste kopeerimine... " msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -708,28 +862,28 @@ msgstr "kujutise faili %r pole võimalik kirjutada: %s" msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "faili %s kirjutamine..." @@ -818,7 +972,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "vigane css_file: %r, eiratakse" @@ -846,12 +1000,17 @@ msgstr "sõnumikataloogide kirjutamine... " msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "Otsi vigu ülalolevast väljundist või failist %(outdir)s/output.txt" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -936,7 +1095,7 @@ msgstr "viga faili Makefile kirjutamisel: %s" msgid "The text files are in %(outdir)s." msgstr "Tekstifailid asuvad kataloogis %(outdir)s." -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -962,13 +1121,13 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "HTML-lehed asuvad kataloogis %(outdir)s." -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "Viga ehitamise infofaili lugemisel: %r" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -982,144 +1141,149 @@ msgstr "Üldindeks" msgid "index" msgstr "indeks" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "järgmine" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "eelmine" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "indeksite genereerimine" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "täiendavate lehtede kirjutamine" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "allalaaditavate failide kopeerimine..." -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "staatilist faili %r pole võimalik kopeerida" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "lisafailide kopeerimine" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "lisafaili %r pole võimalik kopeerida" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "Viga ehitamise infofaili kirjutamisel: %r" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "lehe %s renderdamisel tekkis Unicode viga. Palun veendu, et kõik mitte-ASCII sisuga seadistusparameetrid on kirjeldatud Unicode stringidena." -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "otsinguindeksi tõmmise kirjutamine keelele %s" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "vigane js_file: %r, eiratakse" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "html_extra_path kirjet %r pole olemas" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "html_extra_path kirje %r asub väljaspool väljundkataloogi" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "logofaili %r pole olemas" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "favicon faili %r pole olemas" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "%s %s dokumentatsioon" @@ -1145,19 +1309,21 @@ msgstr "seadistusparameetrit \"latex_documents\" ei leitud, dokumente ei kirjuta msgid "\"latex_documents\" config value references unknown document %s" msgstr "seadistusparameeter \"latex_documents\" viitab tundmatule dokumendile %s" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "Indeks" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "Redaktsioon" @@ -1215,18 +1381,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "Katkestatud!" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1234,27 +1392,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "Rekursiooni viga:" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "Kui see oli kasutaja viga, siis anna palun sellest teada, et tulevikus oleks võimalik parem veateade väljastada." - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1266,7 +1403,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1355,7 +1492,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1366,7 +1503,7 @@ msgstr "konsooliväljundi suvandid" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1648,12 +1785,12 @@ msgstr "Kas luua Makefile? (y/n)" msgid "Create Windows command file? (y/n)" msgstr "Kas luua Windowsi käsufail? (y/n)" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "Faili %s loomine." -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "Fail %s on juba olemas ja jäetakse vahele." @@ -1762,12 +1899,12 @@ msgstr "" msgid "Extension options" msgstr "Laienduste suvandid" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "laienduse %s lubamine" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "suvaliste laienduste määramine" @@ -1799,11 +1936,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "Projekti loomine mallist" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "mallifailide kataloog" @@ -1831,85 +1968,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "Vigane mallimuutuja: %s" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "Vigane selgitustekst: %s" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "Suvandeid \"%s\" ja \"%s\" pole võimalik korraga kasutada" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "Sektsiooni autor: " -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "Mooduli autor: " -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "Koodi autor: " -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "Autor: " @@ -1917,7 +2054,7 @@ msgstr "Autor: " msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1967,7 +2104,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (sisseehitatud funktsioon)" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s meetod)" @@ -1982,7 +2119,7 @@ msgstr "%s() (klass)" msgid "%s (global variable or constant)" msgstr "%s (globaalmuutuja või konstant)" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atribuut)" @@ -1991,52 +2128,52 @@ msgstr "%s (%s atribuut)" msgid "Arguments" msgstr "Argumendid" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "Tagastab" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "Tagastustüüp" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "%s (moodul)" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "funktsioon" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "meetod" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "klass" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "andmed" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "atribuut" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "moodul" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2046,7 +2183,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "võrrandil %s on topeltsilt, teine instants on %s" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "Vigane math_eqref_format: %r" @@ -2083,352 +2220,374 @@ msgstr "roll" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "Parameetrid" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "liige" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "muutuja" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "makro" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "loend" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "tüüp" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "funktsiooni parameeter" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "Malli parameetrid" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "%s() (moodulis %s)" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "%s (moodulis %s)" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "%s (sisseehitatud muutuja)" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "%s (sisseehitatud klass)" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "%s (klass moodulis %s)" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "%s() (klassi %s meetod)" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s staatiline meetod)" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "Pythoni moodulite indeks" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "moodulid" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "Iganenud" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "erind" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "klassi meetod" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "staatiline meetod" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr " (iganenud)" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "Muutujad" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "keskkonnamuutuja; %s" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "%s käsureasuvand" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "käsureasuvand" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "sõnastiku termin" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "grammatika märk" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "viite silt" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "keskkonnamuutuja" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "programmi suvand" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "dokument" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "Mooduli indeks" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Otsinguleht" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "vigane numfig_format: %s (%r)" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "vigane numfig_format: %s" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "See keskkond pole valitud ehitajaga ühilduv, palun vali mõni teine dokumendipuu kataloog." -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "dokument pole ühegi sisukorrapuu osa" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "vaata %s" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "vaata ka %s" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "Sümbolid" @@ -2464,17 +2623,17 @@ msgstr "kujutise fail %s pole loetav: %s" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2486,149 +2645,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "laienduse suvandid" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "%s pole kataloog." +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "Lähtefailide katvustestimine on lõppenud, vaata tulemusi failist %(outdir)spython.txt." -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2669,7 +2850,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "vigase doctest koodi eiramine: %r" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2745,7 +2926,7 @@ msgstr "[joonis: %s]" msgid "[graph]" msgstr "[joonis]" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2753,7 +2934,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2763,99 +2944,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "teisendamise käsku %r pole võimalik käivitada, kontrolli image_converter sätteid" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "(projektis %s v%s)" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[lähtekood]" @@ -3031,23 +3152,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3055,46 +3176,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "tõrge objekti %s importimisel" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[autosummary] automaatkokkuvõtte genereerimine failile: %s" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "[autosummary] kirjutamine kataloogi %s" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3102,7 +3229,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3117,36 +3244,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "lähtefailid, mille kohta rST-faile genereerida" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "väljundfailide kataloog" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "failide vaikimisi järelliide (vaikimisi: %(default)s)" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "kohandatud mallide kataloog (vaikimisi: %(default)s)" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "imporditud liikmete dokumenteerimine (vaikimisi: %(default)s)" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "(projektis %s v%s)" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "Võtmesõnadega argumendid" @@ -3203,65 +3395,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "Tähelepanu" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "Ettevaatust" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "Oht" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "Viga" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "Vihje" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "Tähtis" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "Märkus" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "Vaata ka" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "Nõuanne" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "Hoiatus" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "jätk eelmisele leheküljele" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "jätkub järgmisel leheküljel" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "lehekülg" @@ -3270,7 +3462,7 @@ msgstr "lehekülg" msgid "Table of Contents" msgstr "Sisukorratabel" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Otsing" @@ -3328,12 +3520,12 @@ msgstr "kiire ligipääs kõigile moodulitele" msgid "all functions, classes, terms" msgstr "kõik funktsioonid, klassid ja terminid" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" -msgstr "Indeks – %(key)s" +msgid "Index – %(key)s" +msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3352,31 +3544,31 @@ msgstr "võib olla väga suur" msgid "Navigation" msgstr "Navigatsioon" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "Otsi %(docstitle)s piires" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "Info selle dokumentatsiooni kohta" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "Autoriõigus" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Viimati uuendatud %(last_updated)s." -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3479,7 +3671,7 @@ msgstr "Otsimine" msgid "Preparing search..." msgstr "Otsingu ettevalmistamine..." -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr "" @@ -3488,11 +3680,11 @@ msgid "Hide Search Matches" msgstr "Varja otsingu tulemused" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "Varja külgriba" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "Näita külgriba" @@ -3500,26 +3692,26 @@ msgstr "Näita külgriba" msgid "Contents" msgstr "Sisukord" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "" @@ -3568,17 +3760,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "Tundmatu pildivorming: %s..." @@ -3588,11 +3780,11 @@ msgstr "Tundmatu pildivorming: %s..." msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "" @@ -3603,12 +3795,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3635,18 +3827,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3656,45 +3853,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3707,31 +3909,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr ":maxdepth: on liiga suur ja seda eiratakse." -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "Joonealused märkused" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3745,11 +3952,11 @@ msgstr "[pilt: %s]" msgid "[image]" msgstr "[pilt]" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.js b/sphinx/locale/eu/LC_MESSAGES/sphinx.js index 429666b..4923389 100644 --- a/sphinx/locale/eu/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/eu/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "Joan", "Hide Search Matches": "Bilaketa bat-etortzeak ezkutatu", "Index": "Indizea", - "Index – %(key)s": "Indizea – %(key)s", + "Index – %(key)s": "", "Index pages by letter": "Indize orriak hizkika", "Indices and tables:": "Indizeak eta taulak:", "Last updated on %(last_updated)s.": "Azken aldaketa: %(last_updated)s.", diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.mo b/sphinx/locale/eu/LC_MESSAGES/sphinx.mo index 9a39b7a..7d271a2 100644 Binary files a/sphinx/locale/eu/LC_MESSAGES/sphinx.mo and b/sphinx/locale/eu/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.po b/sphinx/locale/eu/LC_MESSAGES/sphinx.po index 2ec3332..397b4ef 100644 --- a/sphinx/locale/eu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eu/LC_MESSAGES/sphinx.po @@ -9,134 +9,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Asier Iturralde Sarasola <asier.iturralde@gmail.com>, 2018\n" "Language-Team: Basque (http://app.transifex.com/sphinx-doc/sphinx-1/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -144,12 +144,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,75 +157,77 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -233,78 +235,78 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" @@ -489,190 +491,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -681,7 +835,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" @@ -691,7 +845,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -706,28 +860,28 @@ msgstr "" msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "" @@ -816,7 +970,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -844,12 +998,17 @@ msgstr "" msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -934,7 +1093,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -960,13 +1119,13 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -980,144 +1139,149 @@ msgstr "Indize orokorra" msgid "index" msgstr "indizea" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "hurrengoa" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "aurrekoa" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "%s %s dokumentazioa" @@ -1143,19 +1307,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "Indizea" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "Argitalpena" @@ -1213,18 +1379,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1232,27 +1390,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1264,7 +1401,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1353,7 +1490,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1364,7 +1501,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1646,12 +1783,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1760,12 +1897,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1797,11 +1934,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1829,85 +1966,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "Atalaren egilea: " -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "Moduluaren egilea: " -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "Kodearen egilea: " -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "Egilea:" @@ -1915,7 +2052,7 @@ msgstr "Egilea:" msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1965,7 +2102,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metodoa)" @@ -1980,7 +2117,7 @@ msgstr "%s() (klasea)" msgid "%s (global variable or constant)" msgstr "%s (aldagai globala edo konstantea)" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atributua)" @@ -1989,52 +2126,52 @@ msgstr "%s (%s atributua)" msgid "Arguments" msgstr "Argumentuak" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "Jaurtitzen du" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "Itzultzen du" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "Itzulketa mota" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "%s (modulua)" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "funtzioa" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "metodoa" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "klasea" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "datuak" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "atributua" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "modulua" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2044,7 +2181,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2081,352 +2218,374 @@ msgstr "rola" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "Parametroak" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "partaidea" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "aldagaia" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "makroa" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "mota" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s moduluan)" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "%s (%s moduluan)" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "%s (klasea %s-(e)n)" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klaseko metodoa)" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s metodo estatikoa)" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "Python moduluen indizea" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "moduluak" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "Zaharkitua" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "salbuespena" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "klaseko metodoa" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "metodo estatikoa" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr " (zaharkitua)" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "Aldagaiak" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "Goratzen du" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "inguruneko aldagaia; %s" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "glosarioko terminoa" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "gramatikako token-a" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "erreferentzia etiketa" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "inguruneko aldagaia" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "programako aukera" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "Moduluen indizea" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Bilaketa orria" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "%s ikusi" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "ikusi %s baita ere" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "" @@ -2462,17 +2621,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2484,149 +2643,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2667,7 +2848,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2743,7 +2924,7 @@ msgstr "" msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2751,7 +2932,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2761,99 +2942,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[iturburua]" @@ -3029,23 +3150,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3053,46 +3174,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3100,7 +3227,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3115,36 +3242,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" @@ -3201,65 +3393,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "Adi" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "Kontuz" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "Arriskua" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "Errorea" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "Argibidea" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "Garrantzitsua" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "Oharra" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "Ikusi baita ere" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "Iradokizuna" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "Kontuz" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "aurreko orritik jarraitzen du" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "" @@ -3268,7 +3460,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Bilatu" @@ -3326,12 +3518,12 @@ msgstr "modulu guztietara atzipen azkarra" msgid "all functions, classes, terms" msgstr "funtzio, klase, termino guztiak" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" -msgstr "Indizea – %(key)s" +msgid "Index – %(key)s" +msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3350,31 +3542,31 @@ msgstr "handia izan daiteke" msgid "Navigation" msgstr "Nabigazioa" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "Bilatu %(docstitle)s(e)n" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "Dokumentu hauen inguruan" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "Copyright" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Azken aldaketa: %(last_updated)s." -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3477,7 +3669,7 @@ msgstr "" msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr "" @@ -3486,11 +3678,11 @@ msgid "Hide Search Matches" msgstr "Bilaketa bat-etortzeak ezkutatu" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "Alboko barra tolestu" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "Alboko barra luzatu" @@ -3498,26 +3690,26 @@ msgstr "Alboko barra luzatu" msgid "Contents" msgstr "Edukiak" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "" @@ -3566,17 +3758,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3586,11 +3778,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "" @@ -3601,12 +3793,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3633,18 +3825,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3654,45 +3851,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3705,31 +3907,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "Oin-oharrak" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3743,11 +3950,11 @@ msgstr "" msgid "[image]" msgstr "[irudia]" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.js b/sphinx/locale/fa/LC_MESSAGES/sphinx.js index e985264..87b7593 100644 --- a/sphinx/locale/fa/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/fa/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "\u0628\u0631\u0648", "Hide Search Matches": "\u0639\u062f\u0645 \u0646\u0645\u0627\u06cc\u0634 \u0646\u062a\u0627\u06cc\u062c \u06cc\u0627\u0641\u062a \u0634\u062f\u0647", "Index": "\u0641\u0647\u0631\u0633\u062a", - "Index – %(key)s": "\u0641\u0647\u0631\u0633\u062a – %(key)s", + "Index – %(key)s": "", "Index pages by letter": "\u0641\u0647\u0631\u0633\u062a \u0635\u0641\u062d\u0627\u062a \u0628\u0631 \u0627\u0633\u0627\u0633 \u062d\u0631\u0648\u0641", "Indices and tables:": "\u0627\u06cc\u0646\u062f\u06a9\u0633 \u0647\u0627 \u0648 \u062c\u062f\u0627\u0648\u0644:", "Last updated on %(last_updated)s.": "\u0622\u062e\u0631\u06cc\u0646 \u0628\u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u062f\u0631 %(last_updated)s .", diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.mo b/sphinx/locale/fa/LC_MESSAGES/sphinx.mo index d48898d..1f76a2d 100644 Binary files a/sphinx/locale/fa/LC_MESSAGES/sphinx.mo and b/sphinx/locale/fa/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.po b/sphinx/locale/fa/LC_MESSAGES/sphinx.po index 4ff9ae1..fa18973 100644 --- a/sphinx/locale/fa/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fa/LC_MESSAGES/sphinx.po @@ -11,134 +11,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Hadi F <h_adi_f@yahoo.com>, 2020-2021\n" "Language-Team: Persian (http://app.transifex.com/sphinx-doc/sphinx-1/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "شاخه‌ی منبع(%s) پیدا نشد." -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "نشانی (%s) شاخه نیست" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "شاخه‌های مبدأ و مقصد نمی توانند یکسان باشند" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "اجرای اسفینکس نگارش %s" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "این پروژه دست که به افینکس نگارش%s نیاز دارد و برای همین با این نسخه قابل ساخت نیست." -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "ایجاد پوشه ی برون داد" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "در حال راه اندازی افزونه‌ی%s:" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' آن طور که در conf.py تعریف شده شیئ قابل فراخوانی پایتون نیست. لطفاً تعریفش را تغییر دهید تا تابع قابل فراخوان پایتون شود. این کار لازمه‌ی conf.py است تا به عنوان افزنه‌ی اسفینکس کار کند." -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "بارگذاری ترجمه ها [%s]... " -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "انجام شد" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "برای پیام‌های داخلی در دسترس نیست" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "بارگذاری محیط pckle شده" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "شکست خورد: %s" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "هیچ سازنده‌ای برگزیده نشده، استفاده از قالب خروجی پیش‌فرض: html" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "موفّقیّت‌آمیز بود" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "انجام شد ولی با مشکل" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "ساخت %s، %s هشدار (با هشدار به عنوان خطا رفتار می‌شود)." -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "ساخت %s، %s هشدار (با هشدار به عنوان خطا رفتار می‌شود)." -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "ساخت %s، %s هشدار." -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "ساخت %s، %s هشدار." -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "ساخت %s." -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "بست کلاس %r در حال حاضر ثبت نام شده است، بازدیدکنندگان این پیوند نادیده گرفته خواهد شد" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "دستور %r از قبل ثبت شده که مقدار قبلی نادیده گرفته خواهد شد" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "نقش %r از قبل ثبت شده که مقدار قبلی نادیده گرفته خواهد شد" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -146,12 +146,12 @@ msgid "" "explicit" msgstr "افزونه‌ی %s مشخّص نکرده که آیا برای خواندن موازی امن هست یا نه. که فرض می‌گیریم نیست. لطفاً از نویسنده‌ی افزونه بخواهید این موضوع را بررسی و آن را مشخّص کند" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "افزونه ی %sبرای خواندن موازی امن نیست" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -159,75 +159,77 @@ msgid "" "explicit" msgstr "افزونه‌ی %s مشخّص نکرده که آیا برای نوشتن موازی امن هست یا نه. که فرض می‌گیریم نیست. لطفاً از نویسنده‌ی افزونه بخواهید این موضوع را بررسی و آن را مشخّص کند" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "افزونه‌ی %s برای نوشتن موازی امن نیست" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "انجام چندباره‌ی %s" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "شاخه‌ی پیکربندی(%s)، پرونده‌ی conf.py را ندارد" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "امکان لغو تنظیمات پیکربندیdictionary %r ، نادیده گرفته می‌شود (برای تعیین تک تک عناصر %r را به کار ببرید)" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "شماره نامعتبر %r برای پیکربندی مقدار %r، نادیده گرفته می‌شود" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "امکان لغو تنظیمات پیکربندی %r با نوع پشتیبانی نشده نبود، نادیده گرفته می‌شود" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "مقدار پیکربندی ناشناخته %r در ابطال، نادیده گرفته شد" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "مقدار پیکربندی %r از قبل موجود است" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "خطای نحوی در پرونده‌ی پیکربندی شما وجود دارد: %s\n" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "پرونده‌ی پیکربندی (یا یکی از ماژول هایی که وارد می کند) sys.exit() را فراخواند" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -235,78 +237,78 @@ msgid "" "%s" msgstr "یک خطای قابل برنامه ریزی در پرونده‌ی پیکربندی شما وجود دارد:\n\n%s" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "مقدار پیکربندی 'source_suffix' انتظار یک رشته، لیست رشته ها، یا فرهنگ لغت را داشت. اما '%r' داده شده است." -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "بخش%s" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "شکل %s" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "جدول %s" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "فهرست %s" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "مقدار پیکربندی '{name}' باید یکی از {candidates} باشد، اما '{current}' داده شده." -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "مقدار پیکربندی '{name}' دارای نوع '{current.__name__}' است، ولی انتظار می‌رفت {permitted} می‌بود." -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "مقدار پیکربندی '{name}' دارای نوع '{current.__name__}' است، حالت پیش‌فرض {permitted} است." -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "دامنه‌ی اصلی %r یافت نشد، نادیده گرفته می‌شوند." -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "از زمان نسخه‌ی ۲ تا به حال، اسفیکنس به صورت پیش فرض از \"index\" به عنوان ریشه‌ی سند(root_doc) استفاده می‌کند. لطفاً \"root_doc = 'contents'\" را به پرونده conf.py تان اضافه کنید." -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "رویداد %r در حال حاضر موجود است" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "نوع اتفاق نامشخّص است: %s" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "مدیر %r برای رویداد %r یک باعث ایراد شد" @@ -491,190 +493,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "تنظیمات %s. %s در هیچ یک از پیکربندی‌های جستجو شده رخ نمی‌دهد" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "گزینه‌ی پشتیبانی نشده‌ی زمینه %r داده شده" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "پرونده‌ی %r که مسیر زمینه به آن اشاره دارد یا پرونده زیپ معتبری نیست یا هیچ زمینه‌ای درونش ندارد" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "قطع شد!" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "خطای کدگذاری نویسه:" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "خطای بازگشتی:" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "این اتّفاق ممکن است برای پرونده‌های بسیار تو در توی منبع بیافتد. شما می‌توانید محدودیّت ۱۰۰۰ تایی مقدار پیش‌فرض اجرای بازگشت پایتون را در conf.py زیاد کنید، مثلاً با:" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "ایراد رخ داد:" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "لطفاً اگر این مورد خطای کاربر بوده، آن را گزارش دهید تا برای بارهای بعدی پیام خطای بهتری بتواند ارائه شود." + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "تصویر مناسبی برای سازنده‌ی %s پیدا نشد: %s (%s)" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "تصویر مناسبی برای سازنده‌ی %s پیدا نشد: %s" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "ساخت پرونده‌ی [mo]: " -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "نوشتن برون‌داد... " -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "همه‌ی پرونده‌های %d po" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "اهداف برای %d پرونده‌های poی که مشخّص شده" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "مقصد‌های %d پرونده‌های poی هستند که منسوخ شده‌اند" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "همه‌ی پرونده‌های منبع" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "پرونده‌ی %r که در خط فرمان داده شده، در شاخه‌ی منبع نیست, نادیده گرفته می‌شود" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "پرونده‌های منبع %d داده شده در خط فرمان" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "مقصد‌های %d پرونده‌های منبعی هستند که منسوخ شده‌اند" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "ساخت [%s]: " -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "در پی پرونده‌هایی که الآن منسوخ هستند... " -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "%d تا مورد پیدا شد" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "چیزی پیدا نشد" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "بارگذاری محیط pickle شده" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "بررسی ثبات" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "هیچ مقدار تاریخ منسوخ نیست." -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "به روز رسانی محیط: " -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s اضافه شد، %s تغییر کرد، %s حذف شد" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "خواندن منبع‌ها... " -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "نام مستندات برای نوشتن: %s" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "آماده سازی اسناد" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -683,7 +837,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "عنوان تکراری در فهرست مطالب پیدا شد:%s" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "در حال رونوشت از تصاویر... " @@ -693,7 +847,7 @@ msgstr "در حال رونوشت از تصاویر... " msgid "cannot read image file %r: copying it instead" msgstr "امکان خواندن پرونده‌ی تصویری %r نبود: در عوض کپی می‌شود" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -708,28 +862,28 @@ msgstr "نمی تواند پرونده‌ی تصویری %r: %s را بنویس msgid "Pillow not found - copying image files" msgstr "Pillow پیدا نشد- رونوشت برداشتن از پرونده‌های تصویری" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "نوشتن پرونده‌های نوع رسانه..." -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "نوشتن پرونده META-INF/container.xml..." -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "نوشتن پرونده‌ی content.opf..." -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "نوع رسانه‌ی ناشناخته %s، نادیده گرفته شد" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "نوشتن پرونده‌ی خلاصه toc.ncx..." -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "نوشتن پرونده‌ی %s..." @@ -818,7 +972,7 @@ msgstr "مقدار پیکربندی شناسه (\"epub_identifier\") نباید msgid "conf value \"version\" should not be empty for EPUB3" msgstr "مقدار پیکربندی ویراست (\"version\") نباید برای نسخه‌ی سوم پرونده‌های انتشار الکترونیک(EPUB3) خالی باشد" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "پرونده‌ی css نامعتبر%r: نادیده گرفته می‌شود" @@ -846,12 +1000,17 @@ msgstr "نوشتن سیاهه‌های پیام... " msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "به دنبال هر یک از خطاهای بالا در یا در برون‌داد و یا در %(outdir)s/output.txt بگردید" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "پیوند خراب: %s (%s)" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "مهار '%s' پیدا نشد" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "شکست در گردآوری عبارات باقاعده در linkcheck_allowed_redirects: %r %s" @@ -936,7 +1095,7 @@ msgstr "خطای نوشتن پرونده‌ی ساخت (Makefile) : %s" msgid "The text files are in %(outdir)s." msgstr "پرونده‌ی متنی در پوشه‌ی %(outdir)s است." -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -962,13 +1121,13 @@ msgstr "پرونده‌ی اطّلاعات ساخت خراب است: %r" msgid "The HTML pages are in %(outdir)s." msgstr "صفحات HTML در %(outdir)s است." -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "شکست در خواندن پرونده‌ی اطّلاعات ساخت: %r" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -982,144 +1141,149 @@ msgstr "فهرست کلی" msgid "index" msgstr "فهرست" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "بعدی" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "قبلی" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "تولید نمایه‌ها" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "نوشتن صفحات اضافی" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "رونوشت از پرونده‌های قابل دریافت... " -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "نمی تواند از پرونده‌ی قابل دریافت %r: %s رونوشت بگیرد" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "شکست در رونوشت یک پرونده‌ی به html_static_file: %s: %r" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "رونوشت از پرونده‌های ثابت" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "نمی تواند از پرونده‌ی ثابت %r رونوشت بگیرد" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "رونوشت برداری از پرونده‌های اضافی" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "نمی تواند از پرونده‌ی اضافه‌ی %r رونوشت بگیرد" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "شکست در نوشتن پرونده‌ی اطّلاعات ساخت: %r" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "نمایه‌ی جستجو نمی‌تواند بارگزاری شود، ولی برای همه‌ی مستندات ساخته‌ نمی‌شود: نمایه‌ ناقص خواهد بود." -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "صفحه‌ی %s با دو الگو در نوار کناری صفحه (html_sidebars) هم‌خوانی دارد: %r و%r" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "هنگام ارائه‌ی صفحه‌ی %s خطای یونیکد رخ داد. لطفاً اطمینان حاصل کنید که تمام مقدارهای پیکربندی‌ها دارای محتوای غیر اَسکی، رشته‌متن‌های یونکد هستند." -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "خطایی در نمایش صفحه‌ی %s رخ داد.\nعلّت: %r" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "خالی کردن فهرست اشیاء" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "خالی کردن نمایه‌ی جستجو در %s" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "پرونده‌ی js نامعتبر%r: نادیده گرفته می‌شود" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "ارا‌ئه کننده‌های ریاضی زیادی ثبت شده‌اند، ولی هیچ کدام انتخاب نشده." -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "نمایش‌دهنده‌ی ریاضی نامشخّص %r داده شده." -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "مدخل مسیر اضافی (html_extra_path) %r وجود ندارد" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "مدخل مسیر اضافی (html_extra_path) %r درون شاخه‌ی خارجی قرار دارد" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "مدخل مسیر ثابت (html_static_path) %r وجود ندارد" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "مدخل مسیر ثابت (html_static_path) %r درون شاخه‌ی خارجی قرار دارد" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "پرونده‌ی آرم %r وجود ندارد" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "پرونده‌ی آیکون مورد علاقه %r وجود ندارد" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "مستندات %s%s" @@ -1145,19 +1309,21 @@ msgstr "هیچ مقدار پیکربندی اسناد لتکسی (latex_document msgid "\"latex_documents\" config value references unknown document %s" msgstr "مقدار پیکربندی سندهای لتکس (latex_documents) به سند ناشناخته‌ی %s ارجاع می‌دهد" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "فهرست" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "انتشار" @@ -1215,18 +1381,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "در حین ساخت ایرادی رخ داد، شروع اشکال زدا:" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "قطع شد!" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "خطای نشانه‌گذاری متن بازساختمند (reST)" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "خطای کدگذاری نویسه:" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1234,27 +1392,6 @@ msgid "" "the developers." msgstr "اگر می‌‌خواهید مشکل را به توسعه‌دهندگان گزارش دهید، ردیابی کامل خطا در %s ذخیره شده است." -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "خطای بازگشتی:" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "این اتّفاق ممکن است برای پرونده‌های بسیار تو در توی منبع بیافتد. شما می‌توانید محدودیّت ۱۰۰۰ تایی مقدار پیش‌فرض اجرای بازگشت پایتون را در conf.py زیاد کنید، مثلاً با:" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "ایراد رخ داد:" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "لطفاً اگر این مورد خطای کاربر بوده، آن را گزارش دهید تا برای بارهای بعدی پیام خطای بهتری بتواند ارائه شود." - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1266,7 +1403,7 @@ msgid "job number should be a positive number" msgstr "شماره‌ی کار باید یک عدد مثبت باشد" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "برای اطّلاعات بیشتر به <https://www.sphinx-doc.org/> بروید." @@ -1355,7 +1492,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "تعریف برچسب: «فقط» تکّه‌های با برچسب گنجانده شود" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1366,7 +1503,7 @@ msgstr "گزنیه‌های برون‌داد میز فرمان" msgid "increase verbosity (can be repeated)" msgstr "افزایش ارائه‌ی جزئیّات (می تواند تکرار شود)" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "بدون برون‌داد در درگاه خروجی استاندارد(stdout)، فقط هشدارها در درگاه استاندارد خطاها (stderr)" @@ -1648,12 +1785,12 @@ msgstr "آیا پرونده‌ی‌ make ایجاد شود؟ (y/n)" msgid "Create Windows command file? (y/n)" msgstr "آیا پرونده‌ی خط فرمان ویندوز ساخته شود؟ (y/n)ٍ" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "ایجاد پرونده‌ی %s." -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "پرونده‌ی %s در حال حاضر وجود دارد، رد شدن." @@ -1762,12 +1899,12 @@ msgstr "استفاده epub" msgid "Extension options" msgstr "گزینه‌های افزونه" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "فعّال‌سازی %s افزونه" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "فعّال‌سازی افزونه‌های اختیاری" @@ -1799,11 +1936,11 @@ msgstr "اسفتاده از حالت ایجاد برای پرونده‌های M msgid "do not use make-mode for Makefile/make.bat" msgstr "عدم اسفتاده از حالت ایجاد برای پرونده‌های Makefile/make.bat" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "قالب سازی پروژه" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "شاخه‌ی قالب شامل پرونده‌های قالب" @@ -1831,85 +1968,85 @@ msgstr "ابزار شروع سریع اسفینکس فقط یک پوشه‌ی خ msgid "Invalid template variable: %s" msgstr "متغیرهای نامعتبرقالب؛ %s" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "غیرفاصله‌ در فرآیند حذف فاصله‌ از ابتدای سطر حذف شد" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "برچسب نامعتبر:%s" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "شماره‌ی سطر مشخّص شده خارج از بازه‌ی (1-%d) است: %r" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "امکان استفاده از هر دوی %sو%s نیست" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "پرونده‌ی گنجانده شده %r یا پیدا نشد و یا خواندن آن شکست خورد" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "کدگذاری %r که باری خواندن پرونده‌ی گنجانده شده‌ی %r اسفتاده شده به نظر می رسد اشتباه باشد، استفاده از گزینه‌ی کدگذاری ( :encoding:) را امتحان کنید" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "شیئ با نام %r در پرونده‌ی %r پیدا نشد" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "امکان استفاده‌ی گزینه‌ی «هم‌خوان شماره‌ی سطر» (lineno-match) با مجموعه‌ی سطرهای گسیخته وجود ندارد" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "سطر مشخّص شده %r: هیچ سطری از پرونده‌ی گنجانده شده %r بیرون کشیده نشده" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "درختواره‌ی فهرست مطالب ارجاعی به سند کنار گذاشته شده %r را دارد" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "فهرست مطالب شامل ارجاع به سند ناموجود %r است" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "نویسنده این بخش: " -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "نویسنده این ماژول: " -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "نویسنده ی کد: " -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "نویسنده: " @@ -1917,7 +2054,7 @@ msgstr "نویسنده: " msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1967,7 +2104,7 @@ msgstr "نقل [%s] قول ارجاع داده نشده." msgid "%s() (built-in function)" msgstr "%s() (توابع درونی)" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s متد)" @@ -1982,7 +2119,7 @@ msgstr "%s (کلاس)" msgid "%s (global variable or constant)" msgstr "%s (متغیّر عمومی یا مقدار ثابت)" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s مشخصه)" @@ -1991,52 +2128,52 @@ msgstr "%s (%s مشخصه)" msgid "Arguments" msgstr "نشانوندها" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "ایجاد" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "بازگشت ها" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "نوع برگشتی" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "%s (ماژول)" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "تابع" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "متد" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "کلاس" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "داده" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "مشخّصه" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "ماژول" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "توضیح %s تکراری از %s، مورد دیگر%s در %s قرار دارد" @@ -2046,7 +2183,7 @@ msgstr "توضیح %s تکراری از %s، مورد دیگر%s در %s قرا msgid "duplicate label of equation %s, other instance in %s" msgstr "بر چسب معادله ی %s تکرار است، مورد دیگر در %s قرار دارد" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "قالب مرجع معادله‌‌ی ریاضی (math_eqref_format) نامعتبر: %r" @@ -2083,352 +2220,374 @@ msgstr "نقش" msgid "duplicate description of %s %s, other instance in %s" msgstr "توضیح تکراری از %s %s، مورد دیگر در %s قرار دارد" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "%s (C %s)" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "اعلان C تکراری، که در %s:%s هم تعریف شده.\nاعلان '.. c:%s:: %s' است." -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "پارامترها" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "عضو" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "متغیّر" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "ماکرو" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "ساختار" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "اجتماع" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "شمارش" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "شمارنده" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "گونه" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "مؤلّفه‌ی تابع" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "پارامترهای قالب" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "اعلان ++C تکراری، که در %s:%s هم تعریف شده.\nاعلان '.. cpp:%s:: %s' است." -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "کانسپت" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "مؤلّفه‌ی قالب" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "%s() (در ماژول %s)" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "%s (در ماژول %s)" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "%s (متغیر درونی)" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "%s (کلاس درونی)" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "%s (کلاس در %s)" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s شگرد کلاس)" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s متد استاتیک)" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "%s(%sویژگی)" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "نمایه ی ماژول های پایتون" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "ماژول ها" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "منسوخ شده" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "ایراد" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "class method" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "متد استاتیک" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "ویژگی" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "برای ارجاع متقابل %r بیش از یک هدف پیدا شد: %s" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr " (منسوخ)" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "متغیر ها" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "برانگیختن" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "متغیرهای عمومی؛ %s" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "توضیح بدشکل برای گزینه‌ی %r، باید شبیه این‌ها باشد \"opt\", \"-opt args\", \"--opt args\", \"/opt args\" یا \"+opt args\"" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "%s گزینه‌ی خط فرمان" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "گزینه خط فرمان" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "یک خط خالی باید پیش از اصطلاح واژه‌نامه باشد" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "اصطلاحات واژه‌نامه نباید با خطوط خالی از هم جدا شوند" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "به نظر می رسد واژه‌نامه اشتباه شکل داده شده است، فاصله‌گذاری از ابتدای سطر را بررسی کنید" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "اصطلاح واژه‌نامه" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "نشانه ی گرامری" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "برچسب ارجاع" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "متغیّر عمومی" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "اختیارات برنامه" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "سند" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "فهرست ماژول ها" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "صفحه جستجو" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "بر چسب تکراری %s، مورد دیگر در %s قرار دارد" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "تکرار توضیح %s از %s، مورد دیگر در%s قرار دارد" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "شماره‌ی شکل غیر فعّال است. گزینه‌ی :numref: نادیده گرفته می‌شود." -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "شکست در ایجاد ارجاع متقابل. هیچ شماره انتساب داده نشده: %s" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "پیوند هیچ برچسبی ندارد: %s" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "قالب شماره‌ی شکل نامعتبر: %s (%r)" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "قالب شماره‌ی شکل نامعتبر: %s" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "پیکربندی جدید" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "پیکربندی تغییر داده شد" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "افزونه‌ها تغییر کردند" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "نسخه‌ی محیط ساخت به‌روز نیست" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "شاخه ی منبع تغییر کرد" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "این محیط با سازنده‌ی انتخاب شده سازگار نیست، لطفاً یک خوشه‌ی اسناد دیگری را انتخاب کنید." -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "پویش اسناد %s: %r شکست خورد" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "دامنه ی %r ثبت نشده" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "سند در هیچ درختواره‌ی فهرست مطالبی گنجانده نشده" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "درختواره‌ی فهرست مطالب با ارجاع به خود پیدا شده. نادیده گرفته می‌شود." -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "%s را ببینید" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "%s را هم ببینید" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "نوع ناشناخته مدخل نمایه %r" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "نماد ها" @@ -2464,17 +2623,17 @@ msgstr "پرونده‌ی عکس %s خوانا نیست: %s" msgid "download file not readable: %s" msgstr "پرونده‌ی دریافت شده خوانا نیست: %s" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "شماره‌ی قسمت‌ها پیش‌تر به %s نسبت داده شده ( آیا درختواره‌ی فهرست مطالب شماره‌گذاری تو در تو دارد؟)" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "پرونده‌ی %s را می سازد." -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2486,149 +2645,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "\nبه صورت بازگشتی در مسیر <MODULE_PATH> دنبال پیمانه‌هاو بسته‌های پایتون بگرد و \nبا به ازای دستورالمعل‌های خودکار پیمانه‌ی هر بسته در مسیر خروجی <OUTPUT_PATH> یک پرونده‌ی reST بساز.\n\nالگوی استثتاء های <EXCLUDE_PATTERN> می‌تواند الگوی پرونده‌ها و یا شاخه‌هایی باشد که از تولید کنار گذاشته شده‌اند.\n\nتوجّه: به صورت پیش فرض این اسکریپت روی پرونده‌های از پیش ساخته شده دوباره نویسی نمی‌کند." -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "مسیر پیمانه به سند" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "الگوها‌ی به سبک fnmatch در پرونده و یا شاخه برای کنار گذاشتن از تولید" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "پوشه‌ای برای قرار دادن همه‌ی برون دادها" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "نهایت عمق زیر پیمانه‌ها برای نشان دادن در فهرست مطالب (پیش‌گزیده: ۴)" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "بازنویسی پرونده‌های موجود" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "ردگیری پیوند نمادین. وقتی با collective.recipe.omelette ترکیب می‌شود توانمند است." -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "اجرای اسکریپت بدون ساخت پرونده" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "قرار دادن مستندات هر پیمانه در صفحه‌ی خودش" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "در برداشتن پیمانه‌های «خصوصی»(_private)" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "نام پرونده فهرست مطالب (پیش‌گزیده: پیمانه‌ها)" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "پرونده‌ی فهرست مطالب را ایجاد نکن" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "برای بسته‌ها و پیمانه‌ها سربرگ نساز (مثلاً وقتی رشته‌متن‌های مستندات از قبل آن‌ها را داشته باشند)" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "قرار دادن مستندات پیمانه پیش از مستندات پیمانه‌ی زیرمجموعه‌‌اش" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "تفسیر مسیرهای پیمانه بر اساس ویژگی‌های ضمنی فضای نام‌ها در PEP -0420" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "پسوند پرونده ( پیش فرض: rst)" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "تولید یک پروژه‌ی کامل با ابزار شروع سریع اسفینکس" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "پیوست مسیر پیمانه (module_path) به مسیر سیستم (sys.path)، هنگامی به کار می‌رود که گزینه‌ی full-- داده شود" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "نام پروژه (پیش‌گزیده: نام پیمانه‌ی ریشه)" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "نویسنده(های) پروژه، وقتی که گزینه‌ی --full داده شده باشد استفاده می شود" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "نسخه‌ی پروژه، وقتی که گزینه‌ی --full داده شده باشد استفاده می شود" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "نگارش پروژه، وقتی که گزینه‌ی --full داده شده باشد استفاده می شود، پیش‌گزیده همان شماره‌ی نسخه (--doc-version) است" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "گزینه های افزونه" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "%s شاخه نیست." +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "عبارت باقاعده‌ی نامعتبر %r در %s" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "امکان وارد کردن پیمانه‎ی %s نبود: %s" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "آزمودن پوشش منابع پایان یافت، به نتایج در %(outdir)spython.txt نگاهی بیاندازید." -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "عبارات باقاعده‌ی نامعتبر %r در پوشش عبارت باقاعده‌ی زبان سی (coverage_c_regexes)" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "رابط برنامه‌نویسی مستند نشده‌ی C: %s [%s] در پرونده‌ی %s" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "امکان وارد کردن پیمانه‎ی %s نبود: %s" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "تابع پایتونی بدون مستندات: %s :: %s" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "کلاس مستندسازی نشده‌ی پایتون: %s :: %s" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "شگرد مستندسازی نشده‌ی پایتون: %s :: %s :: %s" @@ -2669,7 +2850,7 @@ msgstr "بدون کد/خروجی در تکّه‌ی %s در %s:%s" msgid "ignoring invalid doctest code: %r" msgstr "نادیده گرفتن کد پیمانه‌ی doctest : %r" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "====================== کند ترین زمان خواندن =======================" @@ -2745,7 +2926,7 @@ msgstr "[گراف:%s]" msgid "[graph]" msgstr "[گراف:]" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2753,7 +2934,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2763,99 +2944,39 @@ msgid "" "%r" msgstr "تبدیل با خطایی از کار افتاد:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "فرمان تبدیل %r را نمی توان اجرا کرد، تنظیمات image_converter را بررسی کنید" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "فرمان لتکس %r را نمی توان اجرا کرد(برای نمایش ریاضی لازم است)، تنظیمات imgmath_latex را بررسی کنید" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "%sفرمان %r را نمی توان اجرا کرد(برای نمایش ریاضی لازم است)، تنظیمات imgmath_%s را بررسی کنید" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "نمایش لتکس: %r: %s" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "لتکس بین سطری: %r: %s" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "سیاهه‌ی بین اسفینکس جا به جایی را انجام داد: %s -> %s" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "بارگذاری سیاهه‌ی بین اسفینکس از %s..." - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "مشکلاتی در برخی از سیاهه‌ها به وجود آمد،ولی این مشکلات راه‌های جایگزین های داشته‌اند:" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "شکست در رسیدن به یکی از سیاهه‌ها به خاطر مشکلات زیر:" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "(در %s v%s)" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "(در %s )" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "شناساگر بین اسفینکس %r رشته‌متن نیست. نادیده گرفته شد" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "شکست در خواندن intersphinx_mapping[%s]، نادیده گرفته می‌شود: %r" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[منبع]" @@ -3031,23 +3152,23 @@ msgstr "شکست در به روز رسانی امضا برای %r: مؤلّفه msgid "Failed to parse type_comment for %r: %s" msgstr "شکست در تحلیل نوع یادداشت برای %r: %s" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "ارجاعات خلاصه‌ی خودکار سند %r حذف کنار گذاشته. نادیده گرفته می‌شود." -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "خلاصه‌ی خودکار: خرده‌پرونده‌ی %r پیدا نشد. تنظیمات تولید خلاصه‌ی خودکار(autosummary_generate) را بررسی کنید." -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "خلاصه‌ی خودکار عنوان‌ٔار نیازمند گزینه‌ی :toctree: است، نادیده گرفته می‌شود." -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3055,46 +3176,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "شکست در تجزیه تحلیل نام %s" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "شکست در وارد کردن شیئ %s" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "تولید خلاصه خودکار: پرونده پیدا نشد: %s" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "خلاصه‌ی خودکار: شکست در تشخیص %r برای مستندسازی، این ایراد به وجود آمد:\n%s" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[خلاصه‌ی خودکار] تولید خلاصه‌ی خودکار برای: %s" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "[خلاصه‌ی خودکار] نوشتن در %s" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3102,7 +3229,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3117,36 +3244,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\nتولید ReStructuredText با استفاده از دستورالعمل‌های خلاصه‌ی خودکار.\n\nخودکارساز اسفینکس رابط کابر پسندی برای sphinx.ext.autosummary.generate (پیمانه‌ی افزونه‌ی خلاصه‌ساز اسفنیکس) است.\nاین افزونه پرونده های متن reStructuredText را از دستورالعمل‌های خلاصه‌ی خودکاری تولید می‌کند که در پرونده‌های درون‌داد مشخّص شده قرار دارد.\n\nقالب دستورالعمل خلاصه‌ی خودکار درپیمانه‌ی افزونه‌ی خلاصه‌ی خودکار اسفنیکس (sphinx.ext.autosummary) مستند سازی شده می توان آن را با دستور زیر خواند::\n\n pydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "پرونده‌های منبع برای تولید پرونده‌های rST" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "پوشه‌ای برای قرار دادن همه‌ی برون دادها در آن" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "پسوند پیش فرض برای پرونده‌ها (پیش‌فرض: %(default)s)" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "شاخه‌ی سفارشی قالب (پیش‌گزیده: %(default)s)" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "اجزای فراخوان شده‌ی سند (پیش‌گزیده: %(default)s)" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "شناساگر بین اسفینکس %r رشته‌متن نیست. نادیده گرفته شد" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "شکست در خواندن intersphinx_mapping[%s]، نادیده گرفته می‌شود: %r" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "مشکلاتی در برخی از سیاهه‌ها به وجود آمد،ولی این مشکلات راه‌های جایگزین های داشته‌اند:" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "شکست در رسیدن به یکی از سیاهه‌ها به خاطر مشکلات زیر:" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "سیاهه‌ی بین اسفینکس جا به جایی را انجام داد: %s -> %s" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "(در %s v%s)" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "(در %s )" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "نشانوندهای کلیدی" @@ -3203,65 +3395,65 @@ msgstr "رشته‌متن ادبی ناقص (بدون علامت نقل‌قول msgid "malformed string literal (missing opening quote): %s" msgstr "رشته‌متن ادبی ناقص (بدون علامت نقل‌قول ابتدایی): %s" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "دقت" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "ملاحظه" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "خطر" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "خطا" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "راهنمایی" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "مهم" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "توجه" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "همچنین ملاحظه نمائید" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "نکته" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "هشدار" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "ادامه از صفحه‌ی قبل" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "ادامه در صفحه‌ی بعد" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "غیر الفبایی" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "شماره ها" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "صفحه" @@ -3270,7 +3462,7 @@ msgstr "صفحه" msgid "Table of Contents" msgstr "فهرست عناوین" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "جستجو" @@ -3328,12 +3520,12 @@ msgstr "دسترسی سریع به تمامی متدها" msgid "all functions, classes, terms" msgstr "تمامی توابع ، کلاس ها ، اصطلاحات" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" -msgstr "فهرست – %(key)s" +msgid "Index – %(key)s" +msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3352,31 +3544,31 @@ msgstr "ممکن است سترگ باشد" msgid "Navigation" msgstr "ناوبری" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "جستجو در %(docstitle)s" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "درباره این مستندات" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "کپی رایت" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "آخرین بروز رسانی در %(last_updated)s ." -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3479,7 +3671,7 @@ msgstr "در حال جست و جو" msgid "Preparing search..." msgstr "آماده سازی جست و جو..." -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr "، در " @@ -3488,11 +3680,11 @@ msgid "Hide Search Matches" msgstr "عدم نمایش نتایج یافت شده" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "تا کردن نوار کناره" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "گسترش نوار کناره" @@ -3500,26 +3692,26 @@ msgstr "گسترش نوار کناره" msgid "Contents" msgstr "محتوا ها" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "نمایه‌ای بر پایه‌ی ۴ ستون پیدا شد. شاید یک اشکال برنامه‌نویسی از افزونه‌هایی که استفاده می‌کنید باشد: %r" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "پانویس [%s] ارجاع داده نشده است." -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "پانویس [#] ارجاع داده نشده است." @@ -3568,17 +3760,17 @@ msgstr "%s:%s مرجع هدف پیدا نشد: %s" msgid "%r reference target not found: %s" msgstr "مقصد ارجاع %r پیدا نشد %s" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "امکان دریافت تصویر از منبع راه دور نبود: %s [%d]" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "امکان دریافت تصویر از منبع راه دور نبود: %s [%s]" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "قالب تصویر ناشناخته: %s..." @@ -3588,11 +3780,11 @@ msgstr "قالب تصویر ناشناخته: %s..." msgid "undecodable source characters, replacing with \"?\": %r" msgstr "نویسه‌ی منبع غیرقابل رمزگشایی، جایگزین با «؟» : %r" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "رد شدن و نادیده انگاشتن" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "شکست خورد" @@ -3603,12 +3795,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "نام نقش یا دستورالعمل ناشناخته: %s:%s" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "بست از نوع ناشناخته: %r" @@ -3635,18 +3827,23 @@ msgid "" "it directly: %s" msgstr "قالب تاریخ ناشناخته. اگر می‌خواهید از رشته‌متن مستقیماً خروجی بگیرید، آن را با نقل قول رشته‌متنی محصور کنید: %s" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "درختواره‌ی فهرست مطالب شامل ارجاع به پرونده ناموجود %r است" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "ایراد در هنگام ارزیابی تنها عبارت دستور العمل: %s" @@ -3656,45 +3853,50 @@ msgstr "ایراد در هنگام ارزیابی تنها عبارت دستور msgid "default role %s not found" msgstr "نقش پیش‌فرض %s یافت نشد" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "قالب عدد شکل برای %s تعریف نشده" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "هر کدام از شناسه‌هایی که به بست %s اختصاص داده نشده" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "امکان دست یابی به اندازه‌ی عکس نبود. گزینه‌ی تغییر اندازه :scale: نادیده گرفته می‌شود." @@ -3707,31 +3909,36 @@ msgstr "قسمت‌بندی رده‌بالای %r ناشناخته برای ک msgid "too large :maxdepth:, ignored." msgstr "مقدار بسیار بزرگ :maxdepth:، نادیده گرفته شد." -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "عنوان سند یک بست متنی نیست" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "به بست عنوانی برخورد که در قسمت، موضوع، جدول، اندرز یا نوارکناری نبود" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "پانویس ها" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "هر دو مقدار tabularcolumns و :widths: داده شده، بنابراین :widths: حذف می شود." -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "ابعاد واحد %sنامعتبر است و نادیده گرفته شد." -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "نوع ناشناخته مدخل نمایه%s پیدا شد" @@ -3745,11 +3952,11 @@ msgstr "[تصویر%s]" msgid "[image]" msgstr "[تصویر]" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "عنوان درون شکل نیست." -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "بست به کار نرفته: %r" diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.js b/sphinx/locale/fi/LC_MESSAGES/sphinx.js index 5d60788..7df9382 100644 --- a/sphinx/locale/fi/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/fi/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "Siirry", "Hide Search Matches": "Piilota l\u00f6ydetyt", "Index": "Sis\u00e4llysluettelo", - "Index – %(key)s": "", + "Index – %(key)s": "", "Index pages by letter": "Hakemisto aakkostus sivuttain", "Indices and tables:": "", "Last updated on %(last_updated)s.": "", diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.mo b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo index ec7590c..fb1872d 100644 Binary files a/sphinx/locale/fi/LC_MESSAGES/sphinx.mo and b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.po b/sphinx/locale/fi/LC_MESSAGES/sphinx.po index 708acbd..0d4d321 100644 --- a/sphinx/locale/fi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fi/LC_MESSAGES/sphinx.po @@ -8,134 +8,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FIRST AUTHOR <EMAIL@ADDRESS>, 2009\n" "Language-Team: Finnish (http://app.transifex.com/sphinx-doc/sphinx-1/language/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,75 +156,77 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -232,78 +234,78 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" @@ -488,190 +490,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -680,7 +834,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" @@ -690,7 +844,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -705,28 +859,28 @@ msgstr "" msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "" @@ -815,7 +969,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -843,12 +997,17 @@ msgstr "" msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -933,7 +1092,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -959,13 +1118,13 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -979,144 +1138,149 @@ msgstr "Yleinen sisällysluettelo" msgid "index" msgstr "hakemisto" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr ">" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "<" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "" @@ -1142,19 +1306,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "Sisällysluettelo" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "" @@ -1212,18 +1378,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1231,27 +1389,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1263,7 +1400,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1352,7 +1489,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1363,7 +1500,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1645,12 +1782,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1759,12 +1896,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1796,11 +1933,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1828,85 +1965,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "Luvun kirjoittaja: " -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "Moduulin kirjoittaja: " -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "Tekijä: " @@ -1914,7 +2051,7 @@ msgstr "Tekijä: " msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1964,7 +2101,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1979,7 +2116,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -1988,52 +2125,52 @@ msgstr "" msgid "Arguments" msgstr "" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "%s (moduuli)" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "moduuli" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2043,7 +2180,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2080,352 +2217,374 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "moduulit" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "Poistettu" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr " (poistettu)" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "Moduuli sisällysluettelo" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Etsi sivu" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "" @@ -2461,17 +2620,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2483,149 +2642,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2666,7 +2847,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2742,7 +2923,7 @@ msgstr "" msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2750,7 +2931,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2760,99 +2941,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" @@ -3028,23 +3149,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3052,46 +3173,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3099,7 +3226,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3114,36 +3241,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" @@ -3200,65 +3392,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "Huom" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "Varoitus" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "Vaara" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "Virhe" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "Vihje" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "Tärkeä" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "Muista" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "Katso myös" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "Vihje" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "Varoitus" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "" @@ -3267,7 +3459,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Etsi" @@ -3325,12 +3517,12 @@ msgstr "" msgid "all functions, classes, terms" msgstr "" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" +msgid "Index – %(key)s" msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3349,31 +3541,31 @@ msgstr "voi olla iso" msgid "Navigation" msgstr "Navikointi" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "Tietoja tästä documentistä" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3476,7 +3668,7 @@ msgstr "" msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr "" @@ -3485,11 +3677,11 @@ msgid "Hide Search Matches" msgstr "Piilota löydetyt" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "" @@ -3497,26 +3689,26 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "" @@ -3565,17 +3757,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3585,11 +3777,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "" @@ -3600,12 +3792,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3632,18 +3824,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3653,45 +3850,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3704,31 +3906,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3742,11 +3949,11 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.js b/sphinx/locale/fr/LC_MESSAGES/sphinx.js index 5171463..5b76c19 100644 --- a/sphinx/locale/fr/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/fr/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "Go", "Hide Search Matches": "Cacher les r\u00e9sultats de la recherche", "Index": "Index", - "Index – %(key)s": "Index – %(key)s", + "Index – %(key)s": "", "Index pages by letter": "Indexer les pages par lettre", "Indices and tables:": "Index et tables :", "Last updated on %(last_updated)s.": "Mis \u00e0 jour le %(last_updated)s.", diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr/LC_MESSAGES/sphinx.mo index 1fa8720..60fa10b 100644 Binary files a/sphinx/locale/fr/LC_MESSAGES/sphinx.mo and b/sphinx/locale/fr/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.po b/sphinx/locale/fr/LC_MESSAGES/sphinx.po index 269bf4b..c162cbb 100644 --- a/sphinx/locale/fr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr/LC_MESSAGES/sphinx.po @@ -10,7 +10,7 @@ # cyrille gachot <cyrille.gachot@smile.fr>, 2019 # David Georges, 2021 # Larlet David <david@larlet.fr>, 2008 -# Denis Bitouzé <dbitouze@wanadoo.fr>, 2020-2023 +# Denis Bitouzé <dbitouze@wanadoo.fr>, 2020-2024 # fgallaire <fgallaire@gmail.com>, 2010 # fgallaire <fgallaire@gmail.com>, 2010 # François Poirotte <clicky@erebot.net>, 2016-2017,2020 @@ -35,134 +35,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" -"Last-Translator: Christophe CHAUVET <christophe.chauvet@gmail.com>, 2017,2023-2024\n" +"Last-Translator: Denis Bitouzé <dbitouze@wanadoo.fr>, 2020-2024\n" "Language-Team: French (http://app.transifex.com/sphinx-doc/sphinx-1/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: fr\n" "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "Impossible de trouver le répertoire source (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "Le répertoire de sortie (%s) n'est pas un répertoire" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "Les dossiers source et destination ne doivent pas être identiques" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "Sphinx v%s en cours d'exécution" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Ce projet nécessite au minimum Sphinx v%s et ne peut donc être construit avec cette version." -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "création du répertoire de sortie" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "lors de l'initialisation de l'extension %s :" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' tel que défini dans conf.py n'est pas un objet Python appelable. Veuillez modifier sa définition pour en faire une fonction appelable. Ceci est nécessaire pour que conf.py se comporte comme une extension Sphinx." -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "chargement des traductions [%s]... " -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "fait" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "traductions indisponibles" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "Chargement de l'environnement pickled" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "échec : %s" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "Aucun constructeur sélectionné, utilisation du défaut : html" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "a réussi" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "s'est terminée avec des problèmes" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "La compilation %s, %s avertissement (avec les avertissements considérés comme des erreurs)." -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "La compilation %s, %s avertissements (avec les avertissements considérés comme des erreurs)." -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "La compilation %s, %s avertissement." -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "La compilation %s, %s avertissements." -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "La compilation %s." -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "la classe de nœud %r est déjà enregistrée, ses visiteurs seront écrasés" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "la directive %r est déjà enregistrée, elle sera écrasée" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "le rôle %r est déjà enregistré, il sera écrasé" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -170,12 +170,12 @@ msgid "" "explicit" msgstr "l’extension %s ne se déclare pas compatible à la lecture en parallèle, on supposera qu’elle ne l'est pas - merci de demander à l'auteur de l’extension de vérifier ce qu’il en est et de le préciser explicitement" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "l'extension %s n'est pas compatible avec les lectures parallèles" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -183,75 +183,77 @@ msgid "" "explicit" msgstr "l’extension %s ne se déclare pas compatible à l’écriture en parallèle, on supposera qu’elle ne l’est pas - merci de demander à l'auteur de l’extension de vérifier ce qu’il en est et de le préciser explicitement" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "l'extension %s n'est pas compatible avec les écritures parallèles" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "sérialisation en cours %s" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "Le dossier de configuration ne contient pas de fichier conf.py (%s)" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "Valeur de configuration non valide trouvée: 'language = None'. Mettez à jour la configuration avec un code de langage valide. Utilisation de 'en' (English) comme substitut." -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "impossible d'écraser le dictionnaire de configuration %r ; ignoré (utilisez %r pour modifier les éléments individuellement)" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "nombre non valide %r pour l'option de configuration %r ; ignoré" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "impossible de remplacer le paramètre de configuration %r par un type non-supporté ; ignoré" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "paramètre de configuration %r inconnu dans override ; ignoré" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" -msgstr "" +msgstr "Aucune valeur de configuration du type : %r" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "L'option de configuration %r est déjà présente" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" -msgstr "" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" +msgstr "ne peut pas mettre en cache une valeur de configuration non sélectionnable : %r (parce qu'il contient une fonction, une classe ou un objet de module)" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Votre fichier de configuration comporte une erreur de syntaxe : %s\n" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Le fichier de configuration (ou un des modules qu'il utilise) génère un sys.exit()" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -259,78 +261,78 @@ msgid "" "%s" msgstr "Votre fichier de configuration comporte une erreur de programmation : \n\n%s" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" -msgstr "" +msgstr "Échec de la conversion de %r en un ensemble ou un tuple " -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "Le paramètre `source_suffix` s'attend à recevoir une chaîne de caractères, une liste de chaînes de caractères ou un dictionnaire. Mais vous avez fourni un `%r'." -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "Section %s" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "Fig. %s" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "Tableau %s" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "Code source %s" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "La valeur « {current} » du paramètre « {name} » ne figure pas dans la liste des possibilités valables « {candidates} »." -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "Le type du paramètre de configuration « {name} » doit être {permitted} et non « {current.__name__} »." -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "Le paramètre de configuration « {name} » a pour type « {current.__name__} », tandis que le type par défaut est « {default.__name__} »." -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r non trouvé; ignoré." -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "Depuis sa version 2.0, Sphinx utilise \"index\" comme root_doc par défaut. Veuillez ajouter \"root_doc = 'contents'\" à votre conf.py." -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "Évènement %r déjà présent" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "Nom d'évènement inconnu : %s" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "Le gestionnaire %r de l'évènement %r a créé une exception." @@ -515,190 +517,342 @@ msgstr "numéro PEP %s non valide" msgid "invalid RFC number %s" msgstr "numéro RFC %snon valide" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "Les sections de configuration du thème autres que [theme] et [options] ne sont pas prises en charge et renvoient la valeur par défaut à la place (tentative d'obtenir une valeur à partir de %r)" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "le paramètre %s.%s n'apparaît dans aucune des configurations de thème recherchées" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "l'option %r n'est pas supportée pour ce thème" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "le fichier %r dans le dossier des thèmes n'est pas une archive zip valide ou ne contient aucun thème" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" -msgstr "" +msgstr "aucun thème nommé %r trouvé (theme.toml manquant ?)" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" -msgstr "" +msgstr "Le thème %r a un héritage circulaire" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" -msgstr "" +msgstr "Le thème %r hérite de %r, qui n'est pas un thème chargé. Les thèmes chargés sont : %s" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "Le thème %r a trop d'ancêtres" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" -msgstr "" +msgstr "aucun fichier de configuration de thème n'a été trouvé dans %r" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" -msgstr "" +msgstr "Le thème %r n'a pas la table « thème »" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" -msgstr "" +msgstr "La table thème « [theme] » %r n'est pas une table" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "Le thème %r doit définir la clé \"theme.inherit\" dans les paramètres" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" -msgstr "" +msgstr "La table thème « [options » %r n'est pas une table" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" -msgstr "" +msgstr "Le paramètre « theme.pygments_style » doit être une table. Conseil : « %s »" + +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "Usage :" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "{0} [OPTIONS] <COMMAND> [<ARGS>]" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "Le générateur de documentation Sphinx." + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "Commandes:" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "Options" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "Pour plus d'informations, consultez le site https://www.sphinx-doc.org/en/master/man/." + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "{0}: erreur : {1}\nExécuter '{0} --help' pour information" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr " Gérer la documentation avec Sphinx." + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "Afficher la version et quitter." + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "Afficher ce message et quitter." + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "Journalisation" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "Augmenter la verbosité (peut être répété)" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "N'imprimez que les erreurs et les avertissements." + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "Pas de sortie du tout" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "<command>" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "Voir 'sphinx --help'.\n" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "Une exception s'est produite, démarrage du débogueur :" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "Interrompu !" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "erreur de balisage reStructuredText :" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "Erreur d'encodage :" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "Erreur de récursion :" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "Cela peut se produire avec des fichiers sources très volumineux ou profondément imbriqués. Vous pouvez augmenter avec attention la limite de récursivité par défaut de Python de 1000 dans conf.py avec p. ex. :" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "Une exception a été levée :" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "La trace complète a été sauvegardée dans :" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "Pour signaler cette erreur aux développeurs, veuillez ouvrir un ticket à l'adresse <https://github.com/sphinx-doc/sphinx/issues/>. Merci !" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "Merci de rapporter ceci s'il s'agit d'une erreur utilisateur, afin d'améliorer le message d'erreur à l'avenir." + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "l'image appropriée pour le constructeur %s n'a pas été trouvée : %s (%s)" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "l'image appropriée pour le constructeur %s n'a pas été trouvée : %s" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "construction en cours [mo] : " -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "Écriture... " -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "tous les %d fichiers po" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "cibles spécifiées pour les fichiers po %d" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "cibles périmées pour les fichiers po %d" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "tous les fichiers source" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "le fichier %r passé dans la ligne de commande n'existe pas, " -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "le fichier %r saisi en ligne de commande n'est pas présent dans le dossier source, il sera ignoré" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "le fichier %r passé dans la ligne de commande n'est pas un document valide, ignoré" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "%d fichiers source saisis en ligne de commande" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "cibles périmées pour les fichiers sources %d" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "construction [%s] : " -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "Recherche des fichiers périmés... " -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "%d trouvé" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "aucun résultat trouvé" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "Environnement de sérialisation" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "vérification de la cohérence" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "aucune cible n'est périmée." -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "mise à jour de l'environnement : " -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s ajouté(s), %s modifié(s), %s supprimé(s)" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "lecture des sources... " -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "documents à écrire : %s" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "documents en préparation" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "copie des ressources" @@ -707,7 +861,7 @@ msgstr "copie des ressources" msgid "duplicated ToC entry found: %s" msgstr "entrées dupliquées de la table des matières trouvées : %s" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "Copie des images... " @@ -717,7 +871,7 @@ msgstr "Copie des images... " msgid "cannot read image file %r: copying it instead" msgstr "impossible de lire le fichier image %r: il sera copié à la place" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -732,28 +886,28 @@ msgstr "impossible d'écrire le fichier image %r: %s" msgid "Pillow not found - copying image files" msgstr "Pillow n'a pas été trouvé - copie des fichiers image" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "écriture du type MIME du fichier ..." -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "écriture du fichier META-INF/container.xml..." -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "Enregistrement du fichier content.opf..." -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "type MIME inconnu pour %s, il sera ignoré" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "Enregistrement du fichier toc.ncx..." -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "fichier %s en cours d'écriture..." @@ -842,7 +996,7 @@ msgstr "le paramètre de configuration \"epub_identifier\" ne peut pas être vid msgid "conf value \"version\" should not be empty for EPUB3" msgstr "le paramètre de configuration \"version\" ne peut pas être vide pour EPUB3" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "Fichier CSS non valide : %r, il sera ignoré" @@ -870,12 +1024,17 @@ msgstr "écriture des catalogues de messages... " msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "Recherchez les éventuelles erreurs dans la sortie ci-dessus ou dans %(outdir)s/output.txt" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "lien mort: %s (%s)" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "Ancre '%s' non trouvée" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "Échec de la compilation de la regex dans linkcheck_allowed_redirects : %r%s" @@ -960,7 +1119,7 @@ msgstr "erreur lors l'écriture du fichier Makefile : %s" msgid "The text files are in %(outdir)s." msgstr "Les fichiers texte se trouvent dans %(outdir)s." -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -986,13 +1145,13 @@ msgstr "Le fichier de configuration de construction est corrompu : %r" msgid "The HTML pages are in %(outdir)s." msgstr "Les pages HTML sont dans %(outdir)s." -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "Échec de lecture du fichier de configuration de construction : %r" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -1006,144 +1165,149 @@ msgstr "Index général" msgid "index" msgstr "index" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "suivant" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "précédent" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "génération des index" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "Écriture des pages additionnelles" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "Copie des fichiers téléchargeables... " -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "impossible de copier le fichier téléchargeable %r: %s" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "Échec de la copie du fichier dans html_static_file : %s : %r" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "Copie des fichiers statiques" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "impossible de copier le fichier static %r" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "copie des fichiers complémentaires" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "Copie des fichiers supplémentaires impossible %r" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "Échec d'écriture du fichier de configuration de construction : %r" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "L'index de recherche n'a pas pu être chargé, mais tous les documents ne seront pas construits: l'index sera incomplet." -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "La page %s correspond à deux motifs dans html_sidebars: %r et %r" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "une erreur Unicode est survenue lors du rendu de la page %s. Veuillez vous assurer que toutes les valeurs de configuration comportant des caractères non-ASCII sont des chaînes Unicode." -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "Un erreur est survenue lors de la génération de la page: %s.\nLa raison est: %r" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "Export de l'inventaire des objets" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "Export de l'index de recherche en %s" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "Fichier js_file : %r invalide, sera ignoré" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "Plusieurs math_renderers sont enregistrés. Mais aucun n'est sélectionné." -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "math_renderer inconnu %r saisi." -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "L’entrée %r de html_extra_path n’existe pas" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "L’entrée %r de html_extra_path se trouve à l’intérieur de outdir" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "L’entrée %r de html_static_path n’existe pas" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "L’entrée %r de html_static_path se trouve à l’intérieur de outdir" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "Le fichier de logo %r n’existe pas" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "Le fichier de favicon %r n’existe pas " -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "HTML 4 n'est plus pris en charge par Sphinx. (\"html4_writer=True\" détecté dans les options de configuration)" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "Documentation %s %s" @@ -1151,7 +1315,7 @@ msgstr "Documentation %s %s" #: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." -msgstr "Les fichiers LaTex se trouvent dans %(outdir)s." +msgstr "Les fichiers LaTeX se trouvent dans %(outdir)s." #: sphinx/builders/latex/__init__.py:117 msgid "" @@ -1169,19 +1333,21 @@ msgstr "aucune valeur de configuration \"latex_documents\" trouvée; aucun docum msgid "\"latex_documents\" config value references unknown document %s" msgstr "La valeur du paramètre \"latex_documents\" référence un document inconnu %s" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "Index" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "Version" @@ -1239,18 +1405,10 @@ msgstr "Aucune note de bas de page n'a été trouvée pour la référence de nœ msgid "Exception occurred while building, starting debugger:" msgstr "Une exception a été levée lors de la génération, démarrage du débogueur :" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "Interrompu !" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "Erreur de balise reST :" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "Erreur d'encodage :" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1258,27 +1416,6 @@ msgid "" "the developers." msgstr "La trace d’appels complète a été sauvegardée dans %s, au cas où vous souhaiteriez signaler le problème aux développeurs." -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "Erreur de récursion :" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "Cela peut se produire avec des fichiers sources très volumineux ou profondément imbriqués. Vous pouvez augmenter avec attention la limite de récursivité par défaut de Python de 1000 dans conf.py avec p. ex. :" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "Une exception a été levée :" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "Merci de rapporter ceci s'il s'agit d'une erreur utilisateur, afin d'améliorer le message d'erreur à l'avenir." - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1290,7 +1427,7 @@ msgid "job number should be a positive number" msgstr "Le numéro du job doit être strictement positif" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "Pour plus d'informations, visitez le site <https://www.sphinx-doc.org/>." @@ -1325,7 +1462,7 @@ msgstr "chemin du répertoire de sortie" msgid "" "(optional) a list of specific files to rebuild. Ignored if --write-all is " "specified" -msgstr "" +msgstr "(optionnel) une liste de fichiers spécifiques à reconstruire. Ignoré si --write-all est spécifié" #: sphinx/cmd/build.py:146 msgid "general options" @@ -1339,7 +1476,7 @@ msgstr "constructeur à utiliser (par défaut: 'html')" msgid "" "run in parallel with N processes, when possible. 'auto' uses the number of " "CPU cores" -msgstr "" +msgstr "exécuter en parallèle avec N processus, lorsque cela est possible. 'auto' utilise le nombre de cœurs du processeur" #: sphinx/cmd/build.py:155 msgid "write all files (default: only write new and changed files)" @@ -1351,20 +1488,20 @@ msgstr "ne pas utiliser un environnement sauvegardé, relire toujours tous les f #: sphinx/cmd/build.py:161 msgid "path options" -msgstr "" +msgstr "options de chemin" #: sphinx/cmd/build.py:163 msgid "" "directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" -msgstr "" +msgstr "répertoire pour les doctree et les fichiers d'environnement (par défaut : OUTPUT_DIR/.doctrees)" #: sphinx/cmd/build.py:166 msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" -msgstr "" +msgstr "répertoire du fichier de configuration (conf.py) (par défaut : SOURCE_DIR)" #: sphinx/cmd/build.py:171 msgid "use no configuration file, only use settings from -D options" -msgstr "" +msgstr "n'utilise pas de fichier de configuration, utilise uniquement les paramètres des options -D" #: sphinx/cmd/build.py:174 msgid "override a setting in configuration file" @@ -1379,7 +1516,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "définit une balise : seules les blocs \"only\" avec TAG seront inclus" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1390,7 +1527,7 @@ msgstr "options de la console de sortie" msgid "increase verbosity (can be repeated)" msgstr "augmenter la verbosité (peut être répété)" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "aucune sortie vers stdout, seulement les avertissements vers stderr" @@ -1408,7 +1545,7 @@ msgstr "ne pas émettre une sortie de couleur (par défaut : auto-détection)" #: sphinx/cmd/build.py:199 msgid "warning control options" -msgstr "" +msgstr "options de contrôle des avertissements" #: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" @@ -1420,7 +1557,7 @@ msgstr "modifier les avertissements en erreurs" #: sphinx/cmd/build.py:205 msgid "with --fail-on-warning, keep going when getting warnings" -msgstr "" +msgstr "avec --fail-on-warning, continue lorsque des avertissements sont émis" #: sphinx/cmd/build.py:207 msgid "show full traceback on exception" @@ -1672,12 +1809,12 @@ msgstr "Création du Makefile ? (y/n)" msgid "Create Windows command file? (y/n)" msgstr "Création du fichier de commandes Windows ? (y/n)" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "Fichier en cours de création %s." -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "Le fichier %s existe déjà, il ne sera pas remplacé" @@ -1786,12 +1923,12 @@ msgstr "utilisé epub" msgid "Extension options" msgstr "Options d'extension" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "autoriser l'extension %s" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "active l'emploi d'extensions quelconques" @@ -1823,11 +1960,11 @@ msgstr "utiliser make-mode pour Makefile/make.bat" msgid "do not use make-mode for Makefile/make.bat" msgstr "ne pas utiliser make-mode pour Makefile/make.bat" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "Gabarits de projet" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "répertoire des templates" @@ -1855,85 +1992,85 @@ msgstr "sphinx-quickstart peut générer ces fichiers seulement dans un réperto msgid "Invalid template variable: %s" msgstr "Variable de template invalide : %s" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "les espaces non blancs sont supprimés par dedent" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "Légende invalide: %s" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "le numéro de ligne spécifiée est en dehors des limites (1-%d):%r" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "Impossible d'utiliser les options \"%s\" et \"%s\" en même temps." -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "Le fichier d'include %r est introuvable ou sa lecture a échouée." -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "L’encodage %r utilisé pour lire le fichier inclus %r semble erroné, veuillez ajouter une option :encoding:" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "L'objet nommé %r est introuvable dans le fichier d'include %r" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "On ne peut pas utiliser \"lineno-match\" avec un \"lines\" non contigu " -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "Spécification de lignes %r : aucune ligne extraite du fichier inclus %r" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "le motif global toctree %r ne correspond à aucun document" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "le toctree contient une référence à des documents exclus %r" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "la table des matières contient des références à des documents inexistants %r" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "entrée dupliquée trouvée dans toctree: %s" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "Auteur de la section : " -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "Auteur du module : " -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "Auteur du code : " -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "Auteur : " @@ -1941,7 +2078,7 @@ msgstr "Auteur : " msgid ".. acks content is not a list" msgstr "... le contenu de acks n'est pas une liste" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "... le contenu de hlist n'est pas une liste" @@ -1959,7 +2096,7 @@ msgstr "%s %s" #: sphinx/domains/changeset.py:23 #, python-format msgid "Added in version %s" -msgstr "" +msgstr "Ajouté dans la version %s" #: sphinx/domains/changeset.py:24 #, python-format @@ -1991,7 +2128,7 @@ msgstr "La citation [%s] n'est pas référencée" msgid "%s() (built-in function)" msgstr "%s() (fonction de base)" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "%s() (méthode %s)" @@ -2006,7 +2143,7 @@ msgstr "%s() (classe)" msgid "%s (global variable or constant)" msgstr "%s (variable globale ou constante)" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "%s (attribut %s)" @@ -2015,52 +2152,52 @@ msgstr "%s (attribut %s)" msgid "Arguments" msgstr "Arguments" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "Déclenche" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "Renvoie" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "Type renvoyé" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "%s (module)" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "fonction" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "méthode" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "classe" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "données" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "attribut" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "module" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "description de %s dupliquée pour%s; l'autre %s se trouve dans %s" @@ -2070,7 +2207,7 @@ msgstr "description de %s dupliquée pour%s; l'autre %s se trouve dans %s" msgid "duplicate label of equation %s, other instance in %s" msgstr "Libellé dupliqué pour l'équation %s, autre instance dans %s" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "math_eqref_format invalide : %r" @@ -2107,352 +2244,374 @@ msgstr "role" msgid "duplicate description of %s %s, other instance in %s" msgstr "description dupliquée pour %s %s; l'autre instance se trouve dans %s" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "%s (C %s)" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "Déclaration C dupliquée, également définie à %s:%s.\nLa déclaration est '.. c:%s:: %s'." -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "Paramètres" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "Valeurs retournées" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "membre" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "variable" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "macro" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "structure" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "union" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "énumération" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "énumérateur" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "type" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "paramètre de fonction" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "Paramètres du modèle" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "Déclaration C++ dupliquée, également définie à %s:%s.\nLa déclaration est '.. cpp:%s:: %s'." -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "concept" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "paramètre du modèle" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "%s() (dans le module %s)" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "%s (dans le module %s)" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "%s (variable de base)" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "%s (classe de base)" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "%s (classe dans %s)" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "%s() (méthode de la classe %s)" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "%s() (méthode statique %s)" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "%s (propriété %s)" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "Index des modules Python" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "modules" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "Obsolète" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "exception" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "méthode de classe" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "méthode statique" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "propriété" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "description dupliquée de l'objet %s, autre instance dans %s, utiliser :no-index: pour l'un d'eux" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "plusieurs cibles trouvées pour le renvoi %r : %s" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr " (obsolète)" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "Variables" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "Lève" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "variable d'environnement; %s" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "description de l'option malformée, elle doit ressembler à \nMalformed option description %r, should look like \"opt\", \"-opt args\", \"--opt args\", \"/opt args\" or \"+opt args\"" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "option de ligne de commande %s" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "option de ligne de commande" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "le terme du glossaire doit être précédé d'une ligne vide" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "les termes du glossaire ne doivent pas être séparés par des lignes vides" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "le glossaire semble être mal formaté; vérifiez l'indentation" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "terme du glossaire" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "élément de grammaire" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "étiquette de référence" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "variable d'environnement" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "option du programme" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "document" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "Index du module" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Page de recherche" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "libellé dupliqué %s, l'autre instance se trouve dans %s" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "description %s dupliquée pour %s; l'autre instance se trouve dans %s" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "le paramètre numfig est désactivé : le paramètre :numref: est ignoré" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "Impossible de créer une référence croisée. Aucun nombre n'est attribué: %s" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "le lien n'a pas de légende : %s" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "numfig_format invalide : %s (%r)" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "numfig_format invalide : %s" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "label non défini: %r" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "Échec de création d'une référence. Ni titre ni légende trouvé : %r" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "nouvelle configuration" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "la configuration a changé" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "les extensions ont changé" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "version non à jour de l’environnement de construction" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "le répertoire racine a changé" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "Cet environnement est incompatible avec le constructeur sélectionné, veuillez choisir un autre répertoire doctree." -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "Échec du scan des documents dans %s : %r" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "le domaine %r n'est pas enregistré." -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "Le document n'est inclus dans aucune toctree." -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "une table des matières auto-référencée a été trouvée. Elle sera ignorée." -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "voir %s" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "voir aussi %s" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "type d'index saisie inconnu %r" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "Symboles" @@ -2488,17 +2647,17 @@ msgstr "fichier image %s illisible : %s" msgid "download file not readable: %s" msgstr "le fichier téléchargé n’est pas lisible: %s" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "%s a déjà des numéros de section attribués (toctree numérotés emboîtés ?)" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "Créerait le fichier %s." -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2510,149 +2669,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "\nCherche récursivement dans <MODULE_PATH> des modules et packages Python et crée\ndans <OUTPUT_PATH> un fichier reST par package avec des directives automodule.\n\nLes <EXCLUDE_PATTERN>s peuvent être tout pattern de fichiers et/ou de répertoires à exclure.\n\nNote : par défaut ce script n'écrasera pas des fichiers déjà créés." -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "chemin vers le module à documenter" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "patterns de fichier fnmatch-style et/ou répertoire à exclure" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "répertoire où placer toutes les sorties" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "Nombre maximum de sous-modules visibles dans la table des matières (par défaut : 4)" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "remplacer les fichiers existants" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "suivre les liens symboliques. Très utile en combinaison avec collective.recipe.omelette." -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "exécuter le script sans créer les fichiers" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "afficher la documentation de chaque module sur sa propre page" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "inclure le module \"_private\"" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "nom du fichier de table des matières (défaut : modules)" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "ne pas créer de fichier de table des matières" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "ne pas créer de titres pour le module ou package (e.g. lorsque les doctrings en fournissent déjà)" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "mettre la documentation du module avant celle du sous-module" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "interprète les chemins de module selon la spécification PEP-0420 des espaces implicites de noms" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "extension du fichier (par défaut : rst)" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "générer un projet complet avec sphinx-quickstart" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "ajoute module_path à la fin de sys.path, utilisé lorsque --full est présent" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "nom du projet (par défaut : nom du module principal)" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "auteur(s) du projet, utilisé quand l'option -full est précisée" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "version du projet, utilisé quand l'option -full est précisée" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "révision du projet, utilisé lorsque --full est présent, par défaut reprend --doc-version" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "options relatives aux extensions" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "%s n'est pas un répertoire" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "la section \"%s\" est étiquettée \"%s\"" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "regex invalide %r dans %s" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "le module %s ne pas être importé : %s" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "Vérification du taux de couverture documentaire dans les sources achevée, voir les résultats dans %(outdir)spython.txt." -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "regex invalide %r dans coverage_c_regexes" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "API C non documentée : %s [%s] dans le fichier %s" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "le module %s ne pas être importé : %s" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "fonction python non documentée: %s :: %s" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "classe python non documentée: %s :: %s" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "méthode python non documentée: %s :: %s :: %s" @@ -2693,7 +2874,7 @@ msgstr "pas de code ou sortie dans le bloc %s en %s : %s" msgid "ignoring invalid doctest code: %r" msgstr "code doctest invalide sera ignoré : %r" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "====================== durées de lecture les plus lentes =======================" @@ -2769,7 +2950,7 @@ msgstr "[graphe: %s]" msgid "[graph]" msgstr "[graphe]" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2777,7 +2958,7 @@ msgid "" "Traceback: %s" msgstr "Impossible d’exécuter la commande de conversion d'image %r. 'sphinx.ext.imgconverter' nécessite par défaut ImageMagick. Assurez-vous que ce dernier est installé, ou configurez l’option 'image_converter' pour faire référence à une commande de conversion ad hoc.\n\nTrace d’appels : %s" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2787,99 +2968,39 @@ msgid "" "%r" msgstr "convert a terminé avec une erreur :\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "la commande convert %r ne peut pas être exécutée; vérifiez le paramètre image_converter" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "La commande LaTeX %r (nécessaire pour le rendu des équations mathématiques), ne peut pas être exécutée, vérifier le paramètre imgmath_latex" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "La commande de %s, %r, ne pas être exécuté (nécessaire pour display mathématique), vérifier la configuration imgmath_%s" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "latex de type display %r : %s" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "latex en ligne %r : %s" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "Lien vers cette équation" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "l’inventaire intersphinx a bougé : %s -> %s" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "chargement de l'inventaire intersphinx de %s..." - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "quelques problèmes ont été rencontrés avec quelques uns des inventaires, mais ils disposaient d'alternatives fonctionnelles :" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "échec d'accès à un quelconque inventaire, messages de contexte suivants :" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "(disponible dans %s v%s)" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "(dans %s)" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "%sexterne :%s cible de référence non trouvée : %s" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "l’identifiant intersphinx %r n'est pas une chaîne. Il sera ignoré" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "Échec de la lecture de intersphinx_mapping[%s]; ignoré : %r" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[source]" @@ -3055,23 +3176,23 @@ msgstr "Échec de la mise à jour de la signature pour %r : paramètre non trouv msgid "Failed to parse type_comment for %r: %s" msgstr "Échec de l'analyse de type_comment pour %r : %s" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "autosummary fait référence au document exclu %r. Ignoré" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "autosummary : fichier stub non trouvé %r. Vérifiez votre paramètre autosummary_generate." -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "Un résumé automatique sous-titré nécessite l'option :toctree:. Ignoré." -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3079,46 +3200,52 @@ msgid "" "%s" msgstr "autosummary : échec de l'importation de %s.\nIndications possibles :\n%s" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "échec de l’analyse du nom %s" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "échec d’importation de l'object %s" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate : fichier nontrouvé : %s" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." -msgstr "" +msgstr "autosummary génère des fichiers .rst en interne. Mais votre source_suffix ne contient pas .rst. Ignoré." -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "autosummary : impossible de déterminer si %r est documenté; l'exception suivante a été levée :\n%s" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[autosummary] engendrement d’un auto-sommaire pour : %s" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "[autosummary] écriture dans %s" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3126,7 +3253,7 @@ msgid "" "%s" msgstr "[autosummary] échec de l'importation de %s.\nIndications possibles :\n%s" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3141,36 +3268,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\nEngendre du ReStructuredText par les directives autosummary.\n\nsphinx-autogen est une interface à sphinx.ext.autosummary.generate. Il\nengendre les fichiers reStructuredText à partir des directives autosummary\ncontenues dans les fichiers donnés en entrée.\n\nLe format de la directive autosummary est documentée dans le module\nPython \"sphinx.ext.autosummary\" et peut être lu via : ::\n\npydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "fichiers sources pour lesquels il faut produire des fichiers rST" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "répertoire où placer toutes les sorties" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "extension par défaut pour les fichiers (par défaut : %(default)s)" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "répertoire des templates spécifiques (par défaut : %(default)s)" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "membres importés du document (défaut : %(default)s)" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "documenter exactement les membres dans l'attribut __all__ du module. (par défaut : %(default)s)" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "l’identifiant intersphinx %r n'est pas une chaîne. Il sera ignoré" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "Échec de la lecture de intersphinx_mapping[%s]; ignoré : %r" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "quelques problèmes ont été rencontrés avec quelques uns des inventaires, mais ils disposaient d'alternatives fonctionnelles :" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "échec d'accès à un quelconque inventaire, messages de contexte suivants :" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "l’inventaire intersphinx a bougé : %s -> %s" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "(disponible dans %s v%s)" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "(dans %s)" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "inventaire des références croisées externes non trouvé : %r" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "suffixe de référence croisée externe non valide : %r" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "domaine pour la référence croisée externe non trouvé : %r" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "%sexterne :%s cible de référence non trouvée : %s" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "Arguments de mots-clés" @@ -3227,65 +3419,65 @@ msgstr "chaîne littérale malformée (guillemet fermant manquant) : %s" msgid "malformed string literal (missing opening quote): %s" msgstr "chaîne littérale malformée (guillemet ouvrant manquant) : %s" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "Attention" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "Prudence" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "Danger" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "Erreur" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "Indication" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "Important" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "Note" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "Voir aussi" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "Astuce" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "Avertissement" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "suite de la page précédente" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "suite sur la page suivante" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "Non alphabétique" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "Chiffres" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "page" @@ -3294,7 +3486,7 @@ msgstr "page" msgid "Table of Contents" msgstr "Table des matières" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Recherche" @@ -3352,12 +3544,12 @@ msgstr "accès rapide à l'ensemble des modules" msgid "all functions, classes, terms" msgstr "toutes les fonctions, classes, termes" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" -msgstr "Index – %(key)s" +msgid "Index – %(key)s" +msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3376,31 +3568,31 @@ msgstr "peut être énorme" msgid "Navigation" msgstr "Navigation" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "Recherchez dans %(docstitle)s" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "À propos de ces documents" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "Copyright" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "© %(copyright_prefix)s %(copyright)s." -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Mis à jour le %(last_updated)s." -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3503,7 +3695,7 @@ msgstr "Recherche en cours" msgid "Preparing search..." msgstr "Préparation de la recherche..." -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr ", dans " @@ -3512,11 +3704,11 @@ msgid "Hide Search Matches" msgstr "Cacher les résultats de la recherche" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "Réduire la barre latérale" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "Agrandir la barre latérale" @@ -3524,26 +3716,26 @@ msgstr "Agrandir la barre latérale" msgid "Contents" msgstr "Contenu" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "impossible de calculer l'avancement de la traduction !" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "pas d'éléments traduits !" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "index trouvé avec style ancien à 4 colonnes. Possiblement un bogue d’extensions que vous utilisez : %r" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "La note de bas de page [%s] n'est pas référencée." -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "La note de bas de page [#] n'est pas référencée." @@ -3592,17 +3784,17 @@ msgstr "%s:%s cible de référence non trouvée : %s" msgid "%r reference target not found: %s" msgstr "%r cible de référence non trouvée : %s" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "impossible d'atteindre l'image distante %s[%d]" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "impossible d'atteindre l'image distante %s[%s]" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "Format d'image inconnu : %s..." @@ -3612,11 +3804,11 @@ msgstr "Format d'image inconnu : %s..." msgid "undecodable source characters, replacing with \"?\": %r" msgstr "le caractère source est indécodable, il sera remplacé par \"?\" : %r" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "ignoré" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "échoué" @@ -3627,12 +3819,12 @@ msgid "" "not in the domain." msgstr "Problème dans le domaine %s : le champ est censé utiliser le rôle '%s', mais ce rôle ne figure pas dans le domaine." -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "nom de rôle ou de directive inconnu: %s:%s" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "type de node inconnu : %r" @@ -3659,18 +3851,23 @@ msgid "" "it directly: %s" msgstr "Format de date invalide. Insérez la chaîne de caractères entre des guillemets simples si vous voulez l'afficher telle quelle : %s" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "%r est obsolète pour les entrées d'index (à partir de l'entrée %r). Utilisez plutôt 'pair:%s'." -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "la table des matières contient des références à des fichiers inexistants %r" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "exception pendant l’évaluation de l'expression de la directive only : %s" @@ -3680,45 +3877,50 @@ msgstr "exception pendant l’évaluation de l'expression de la directive only : msgid "default role %s not found" msgstr "rôle par défaut %s introuvable" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "Lien vers cette définition" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "numfig_format n'est pas défini %s" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "Aucun ID assigné au node %s" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "Lien vers ce terme" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "Lien vers cette rubrique" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "Lien vers ce tableau" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "Lien vers ce code" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "Lien vers cette image" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "Lien vers cette table des matières" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "impossible d'obtenir la taille de l'image. L'option :scale: est ignorée." @@ -3731,31 +3933,36 @@ msgstr "toplevel_sectioning %r inconnu pour la classe %r" msgid "too large :maxdepth:, ignored." msgstr ":maxdepth: trop grand, ignoré." -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "le titre du document n'est pas un unique node de type Text" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "le titre de node rencontré n'est apparenté à aucun parmi section, topic, table, admonition ou sidebar" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "Notes de bas de page" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "options tabularcolumns et :widths: simultanément présentes. :widths: sera ignoré." -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "%s est invalide comme unité de dimension. Ignoré." -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "le type inconnu d’entrée d’index %s a été trouvé" @@ -3769,11 +3976,11 @@ msgstr "[image: %s]" msgid "[image]" msgstr "[image]" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "la légende n'est pas à l'intérieur de la figure." -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "type de node non-implémenté : %r" diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.js b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.js index 8529eb2..e9958ca 100644 --- a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "", "Hide Search Matches": "", "Index": "", - "Index – %(key)s": "", + "Index – %(key)s": "", "Index pages by letter": "", "Indices and tables:": "", "Last updated on %(last_updated)s.": "", diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo index 72fdf6a..1f5814b 100644 Binary files a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo and b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po index dd03219..b90ba16 100644 --- a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po @@ -7,134 +7,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: French (France) (http://app.transifex.com/sphinx-doc/sphinx-1/language/fr_FR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: fr_FR\n" "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,75 +155,77 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -231,78 +233,78 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" @@ -487,190 +489,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -679,7 +833,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" @@ -689,7 +843,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -704,28 +858,28 @@ msgstr "" msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "" @@ -814,7 +968,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -842,12 +996,17 @@ msgstr "" msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -932,7 +1091,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -958,13 +1117,13 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -978,144 +1137,149 @@ msgstr "" msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "" @@ -1141,19 +1305,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "" @@ -1211,18 +1377,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1230,27 +1388,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1262,7 +1399,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1351,7 +1488,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1362,7 +1499,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1644,12 +1781,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1758,12 +1895,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1795,11 +1932,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1827,85 +1964,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "" @@ -1913,7 +2050,7 @@ msgstr "" msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1963,7 +2100,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1978,7 +2115,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -1987,52 +2124,52 @@ msgstr "" msgid "Arguments" msgstr "" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2042,7 +2179,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2079,352 +2216,374 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr "" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "" @@ -2460,17 +2619,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2482,149 +2641,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2665,7 +2846,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2741,7 +2922,7 @@ msgstr "" msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2749,7 +2930,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2759,99 +2940,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" @@ -3027,23 +3148,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3051,46 +3172,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3098,7 +3225,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3113,36 +3240,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" @@ -3199,65 +3391,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "" @@ -3266,7 +3458,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "" @@ -3324,12 +3516,12 @@ msgstr "" msgid "all functions, classes, terms" msgstr "" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" +msgid "Index – %(key)s" msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3348,31 +3540,31 @@ msgstr "" msgid "Navigation" msgstr "" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3475,7 +3667,7 @@ msgstr "" msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr "" @@ -3484,11 +3676,11 @@ msgid "Hide Search Matches" msgstr "" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "" @@ -3496,26 +3688,26 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "" @@ -3564,17 +3756,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3584,11 +3776,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "" @@ -3599,12 +3791,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3631,18 +3823,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3652,45 +3849,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3703,31 +3905,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3741,11 +3948,11 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/gl/LC_MESSAGES/sphinx.js b/sphinx/locale/gl/LC_MESSAGES/sphinx.js index 48fbe9c..c542dc4 100644 --- a/sphinx/locale/gl/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/gl/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "Ir", "Hide Search Matches": "Agochar as coincidencias da busca", "Index": "\u00cdndice", - "Index – %(key)s": "\u00cdndice – %(key)s", + "Index – %(key)s": "", "Index pages by letter": "\u00cdndice de p\u00e1xinas por letra", "Indices and tables:": "\u00cdndices e t\u00e1boas:", "Last updated on %(last_updated)s.": "\u00daltima actualizaci\u00f3n o %(last_updated)s.", diff --git a/sphinx/locale/gl/LC_MESSAGES/sphinx.mo b/sphinx/locale/gl/LC_MESSAGES/sphinx.mo index 741e6fd..f0454b5 100644 Binary files a/sphinx/locale/gl/LC_MESSAGES/sphinx.mo and b/sphinx/locale/gl/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/gl/LC_MESSAGES/sphinx.po b/sphinx/locale/gl/LC_MESSAGES/sphinx.po index 8f4fd2e..93b2ddd 100644 --- a/sphinx/locale/gl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/gl/LC_MESSAGES/sphinx.po @@ -8,134 +8,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Miguel Anxo Bouzada <mbouzada@gmail.com>, 2023\n" "Language-Team: Galician (http://app.transifex.com/sphinx-doc/sphinx-1/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "Non é posíbel atopar o directorio fonte (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "O directorio de saída (%s) non é un directorio" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "O directorio fonte e o directorio de destino non poden ser idénticos" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "Executando Sphinx v%s" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Este proxecto necesita polo menos Sphinx v%s e, polo tanto, non é posíbel compilalo con esta versión." -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "creando o directorio de saída" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "ao configurar a extensión %s:" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "«setup» tal como se define actualmente en conf.py non é un invocábel de Python. Modifique a súa definición para que sexa unha función invocábel. Isto é necesario para que conf.py se comporte como unha extensión Sphinx." -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "cargando traducións [%s]…" -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "feito" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "non dispoñíbel para mensaxes integradas" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "cargando o contorno preparado –pickled–" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "produciuse un fallo: %s" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "Non foi seleccionado ningún construtor, de xeito predeterminado usase: html" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "conseguido" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "finalizou con problemas" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "construción %s,%s advertencia (coas advertencias tratadas como erros)." -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "construción %s,%s advertencias (coas advertencias tratadas como erros)." -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "construción %s, %s advertencia." -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "construción %s, %s advertencias." -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "construción %s." -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "a clase de nodo %r xa está rexistrada, os seus visitantes van ser substituídos" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "a directiva %r xa está rexistrada, vai ser substituída" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "o rol %r xa está rexistrado, vai ser substituído" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "a extensión %s non declara se é segura para a lectura en paralelo, asumindo que non o sexa; pídalle ao autor da extensión que o comprobe e que o faga explícito" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "a extensión %s non é segura para a lectura en paralelo" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,75 +156,77 @@ msgid "" "explicit" msgstr "a extensión %s non declara se é segura para a escritura en paralelo, asumindo que non o sexa; pídalle ao autor da extensión que o comprobe e que o faga explícito" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "a extensión %s non é segura para a escritura en paralelo" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "seriando %s" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "o directorio de configuración non contén un ficheiro conf.py (%s)" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "Atopouse un valor de configuración non válido: «language = None». Actualice a súa configuración a un código de idioma válido. Volvendo a «en» (inglés)." -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "non é posíbel substituír o axuste de configuración do dicionario %r, é ignorado (use %r para definir elementos individuais)" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "o número %r non é válido para o valor de configuración %r, é ignorado" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "non é posíbel anular o axuste de configuración %r cun tipo non compatíbel, é ignorado" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "valor de configuración descoñecido %r na substitución, é ignorado" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "O valor de configuración %r xa está presente" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Hai un erro de sintaxe no seu ficheiro de configuración: %s\n" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "O ficheiro de configuración (ou un dos módulos que importa) chama a sys.exit()" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -232,78 +234,78 @@ msgid "" "%s" msgstr "Hai un erro programábel no seu ficheiro de configuración:\n\n%s" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "O valor de configuración «source_suffix» agarda unha cadea, lista de cadeas ou dicionario. Mais Vde. da «%r»." -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "Sección %s" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "Fig. %s" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "Táboa %s" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "Listaxe %s" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "O valor de configuración «{name}» ten que ser un de {candidates}, mais Vde. da «{current}»." -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "O valor de configuración «{name}» ten o tipo «{current.__name__}»; agardábase {permitted}." -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "O valor de configuración «{name}» ten o tipo «{current.__name__}»; o valor predeterminado é «{default.__name__}»." -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "Non se atopou primary_domain %r non atopado, é ignorado." -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "Desde a versión 2.0, Sphinx usa «index» como root_doc como predeterminado. Engada «root_doc = 'contents'» ao seu conf.py." -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "O evento %r xa está presente" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "Nome de evento descoñecido: %s" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "O controlador %r do evento %r lanzou unha excepción" @@ -488,190 +490,342 @@ msgstr "número PEP non válido %s" msgid "invalid RFC number %s" msgstr "número RFC non válido %s" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "o axuste %s.%snon aparece en ningunha das configuracións de temas buscadas" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "a opción %r non é compatíbel co tema" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "o ficheiro %r na ruta do tema non é un ficheiro zip válido ou non contén ningún tema" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "Opcións" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "Interrompido!" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "Produciuse un erro de codificación:" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "Produciuse un erro de recursividade:" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "Isto pode ocorrer con ficheiros fonte moi grandes ou profundamente aniñados. Pode aumentar coidadosamente o límite de recursividade predeterminado de Python de 1000 en conf.py, p. ex.:" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "Produciuse unha excepción:" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "Infórmeo tamén se se trata dun erro do usuario, para que a próxima vez se poida fornecer unha mensaxe de erro mellor." + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "non se atopou unha imaxe axeitada para o construtor %s: %s (%s)" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "non se atopou unha imaxe axeitada para o construtor %s: %s" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "construíndo [mo]: " -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "escribindo a saída…" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "todos, os %d, ficheiros «po»" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "obxectivos para os %d ficheiros «po» que se especifican" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "obxectivos para os %d ficheiros «po» que están desactualizados" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "todos os ficheiros fonte" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "o ficheiro %r indicado na liña de ordes non existe," -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "o ficheiro %r indicado na liña de ordes non está no directorio fonte, é ignorado" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "o ficheiro %r indicado na liña de ordes non é un documento válido, é ignorado" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "%d ficheiros fonte indicados na liña de ordes" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "obxectivos para %d ficheiros fonte que non están actualizados" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "construíndo [%s]: " -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "buscando ficheiros xa desactualizados…" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "atopouse %d" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "non se atopou nada" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "preparando –pickling– o contorno" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "comprobando a coherencia" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "non hai ningún obxectivo desactualizado" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "actualizando o contorno:" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s engadido(s), %s cambiado(s), %s retirado(s)" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "lendo as fontes…" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "nomes de documentos –docnames– para escribir: %s" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "preparando os documentos" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "copiando activos" @@ -680,7 +834,7 @@ msgstr "copiando activos" msgid "duplicated ToC entry found: %s" msgstr "atopouse unha entrada do Índice duplicada: %s" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "copiando as imaxes…" @@ -690,7 +844,7 @@ msgstr "copiando as imaxes…" msgid "cannot read image file %r: copying it instead" msgstr "non é posíbel ler o ficheiro de imaxe %r: no seu canto cópieo" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -705,28 +859,28 @@ msgstr "non é posíbel escribir o ficheiro de imaxe %r: %s" msgid "Pillow not found - copying image files" msgstr "non se atopou «Pillow»: copiando ficheiros de imaxe" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "escribindo o ficheiro tipo MIME…" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "escribindo o ficheiro META-INF/container.xml…" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "escribindo o ficheiro content.opf…" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "tipo MIME descoñecido para %s, é ignorado" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "escribindo o ficheiro toc.ncx…" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "escribindo o ficheiro %s…" @@ -815,7 +969,7 @@ msgstr "o valor de configuración «epub_identifier» non pode estar baleiro par msgid "conf value \"version\" should not be empty for EPUB3" msgstr "o valor de configuración «version» non pode estar baleiro para EPUB3" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "css_file non válido: %r, é ignorado" @@ -843,12 +997,17 @@ msgstr "escribindo os catálogos de mensaxes…" msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "Buscar algún erro na saída anterior ou en %(outdir)s/output.txt" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "ligazón rachada: %s (%s)" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "Produciuse un erro ao compilar a expresión regular en «linkcheck_allowed_redirects»: %r %s" @@ -933,7 +1092,7 @@ msgstr "produciuse un erro ao escribir o ficheiro «Makefile»: %s" msgid "The text files are in %(outdir)s." msgstr "os ficheiros de texto están en %(outdir)s." -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -959,13 +1118,13 @@ msgstr "o ficheiro de información da construción rachou: %r" msgid "The HTML pages are in %(outdir)s." msgstr "As páxinas HTML están en %(outdir)s." -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "Produciuse un fallo ao ler o ficheiro de información da construción: %r" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -979,144 +1138,149 @@ msgstr "Índice xeral" msgid "index" msgstr "índice" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "seguinte" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "anterior" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "xerando os índices" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "escribindo as páxinas adicionais" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "copiando os ficheiros descargábeis…" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "non é posíbel copiar o ficheiro descargábel %r: %s" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "Produciuse un fallo ao copiar un ficheiro en html_static_file: %s: %r" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "copiando os ficheiros estáticos" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "non é posíbel copiar o ficheiro estático %r" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "copiando os ficheiros adicionais" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "non é posíbel copiar o ficheiro adicional %r" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "Produciuse un fallo ao escribir o ficheiro de información da construción: %r" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "non foi posíbel cargar o índice de busca, mais non se compilarán todos os documentos: o índice estará incompleto." -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "a páxina %s coincide con dous patróns en html_sidebars: %r e %r" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "Produciuse un erro Unicode ao representar a páxina %s. Asegúrese de que todos os valores de configuración que teñan contido non ASCII sexan cadeas Unicode." -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "Produciuse un erro ao representar a páxina %s.\nMotivo: %r" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "envorcado do inventario de obxectos" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "envorcando o índice de busca en %s" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "js_file non válido: %r, é ignorado" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "Moitos math_renderers están rexistrados. Mais non foi seleccionado ningún math_renderer." -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "Indicou un math_renderer descoñecido %r." -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "A entrada html_extra_path %r non existe" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "A entrada html_extra_path %r colócase dentro do directorio de saída «outdir»" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "A entrada html_static_path %r non existe" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "A entrada html_static_path %r colócase dentro do directorio de saída «outdir»" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "o ficheiro de logotipo %r non existe" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "o ficheiro de favicon %r non existe" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "Sphinx xa non admite HTML 4. (nas opcións de configuración detectouse «html4_writer=True»)" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "Documentación %s %s" @@ -1142,19 +1306,21 @@ msgstr "non se atopou ningún valor de configuración «latex_documents»; non s msgid "\"latex_documents\" config value references unknown document %s" msgstr "o valor de configuración «latex_documents» fai referencia a un documento %s descoñecido" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "Índice" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "Publicación" @@ -1212,18 +1378,10 @@ msgstr "Non se atopou ningunha nota a rodapé para o nodo de referencia %r indic msgid "Exception occurred while building, starting debugger:" msgstr "Produciuse unha excepción durante a construción, iniciando o depurador:" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "Interrompido!" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "Produciuse un erro de marcado reST:" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "Produciuse un erro de codificación:" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1231,27 +1389,6 @@ msgid "" "the developers." msgstr "O rastrexo completo foi gardado en %s, se quere informar do incidente aos desenvolvedores." -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "Produciuse un erro de recursividade:" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "Isto pode ocorrer con ficheiros fonte moi grandes ou profundamente aniñados. Pode aumentar coidadosamente o límite de recursividade predeterminado de Python de 1000 en conf.py, p. ex.:" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "Produciuse unha excepción:" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "Infórmeo tamén se se trata dun erro do usuario, para que a próxima vez se poida fornecer unha mensaxe de erro mellor." - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1263,7 +1400,7 @@ msgid "job number should be a positive number" msgstr "o número de traballo debe ser un número positivo" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "Para obter máis información, visite https://www.sphinx-doc.org/." @@ -1352,7 +1489,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "definir etiqueta: inclúír «só» bloques con TAG" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1363,7 +1500,7 @@ msgstr "opcións de saída da consola" msgid "increase verbosity (can be repeated)" msgstr "aumenta a verbosidade (pódese repetir)" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "sen saída en «stdout», só advertencias en «stderr»" @@ -1645,12 +1782,12 @@ msgstr "Crear Makefile? (y/n)" msgid "Create Windows command file? (y/n)" msgstr "Crear un ficheiro de ordes de Windows? (y/n)" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "Creando o ficheiro %s." -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "O ficheiro %s xa existe, omitíndoo." @@ -1759,12 +1896,12 @@ msgstr "usar epub" msgid "Extension options" msgstr "Opcións de extensión" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "activar a extensión %s" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "activar extensións arbitrarias" @@ -1796,11 +1933,11 @@ msgstr "usar «make-mode» para Makefile/make.bat" msgid "do not use make-mode for Makefile/make.bat" msgstr "non usar «make-mode» para Makefile/make.bat" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "Modelos de proxectos" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "directorio de modelos para ficheiros de modelos" @@ -1828,85 +1965,85 @@ msgstr "«sphinx-quickstart» só xera nun directorio baleiro. Especifique unha msgid "Invalid template variable: %s" msgstr "Variábel de modelo non válida: %s" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "«dedent» elimina os espazos en branco" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "Lenda non válida: %s" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "o número de liña especificado está fóra do intervalo (1-%d): %r" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "Non é posíbel usar as opcións «%s» e «%s»." -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "No foi atopado o ficheiro incluido %r ou fallou a lectura" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "A codificación de %r utilizada para ler o ficheiro incluído %r semella ser incorrecta, probe a dar unha opción «:encoding:»" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "Non se atopou o obxecto chamado %r no ficheiro incluído %r" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "Non é posíbel usar «lineno-match» cun conxunto disxunto de «liñas»" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "Especificación de liña %r: non se extraeron liñas do ficheiro de inclusión %r" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "O padrón global da árbore de índice –toctree– %r non coincide con ningún documento" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "A arbore de índice –toctree– contén referencia ao documento excluído %r" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "A arbore de índice –toctree– contén referencia a un documento que non existe %r" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "atopouse unha entrada duplicada na árbore de índice –toctree–: %s" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "Autor da sección:" -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "Autor do módulo:" -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "Autor do código:" -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "Autor: " @@ -1914,7 +2051,7 @@ msgstr "Autor: " msgid ".. acks content is not a list" msgstr ".. o contido dos recoñecementos –acks– non é unha lista" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr ".. o contido do historial –hlist– non é unha lista" @@ -1964,7 +2101,7 @@ msgstr "A cita [%s] non está referenciada." msgid "%s() (built-in function)" msgstr "%s() (función integrada)" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr " %s() (método %s)" @@ -1979,7 +2116,7 @@ msgstr "%s() (clase)" msgid "%s (global variable or constant)" msgstr "%s (variábel global ou constante)" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atributo)" @@ -1988,52 +2125,52 @@ msgstr "%s (%s atributo)" msgid "Arguments" msgstr "Argumentos" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "Lanzamentos" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "Retorna" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "Tipo de retorno" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "%s (módulo)" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "función" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "método" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "clase" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "datos" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "atributo" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "módulo" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "descrición do/a %sduplicado/a de %s, outro/a %s en %s" @@ -2043,7 +2180,7 @@ msgstr "descrición do/a %sduplicado/a de %s, outro/a %s en %s" msgid "duplicate label of equation %s, other instance in %s" msgstr "etiqueta duplicada da ecuación %s, outra instancia en %s" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "«math_eqref_format» non válido: %r" @@ -2080,352 +2217,374 @@ msgstr "rol" msgid "duplicate description of %s %s, other instance in %s" msgstr "descrición duplicada de %s %s, outra instancia en %s" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "%s (C %s)" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "Declaración C duplicada, tamén definida en %s:%s.\nA declaración é «.. c:%s:: %s»." -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "Parámetros" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "Valores de retorno" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "membro" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "variábel" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "macro" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "estrutura" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "unión" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "enumeración" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "enumerador" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "tipo" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "parámetro de función" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "Parámetros do modelo" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "Declaración C++ duplicada, tamén definida en %s:%s.\nA declaración é «.. cpp:%s:: %s»." -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "concepto" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "parámetro de modelo" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "%s() (no modulo %s)" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "%s no modulo %s)" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "%s (variábel integrada)" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "%s (clase integrada)" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "%s (clase en %s)" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s método de clase)" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s método estático)" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "%s (%s propiedade)" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr " Índice de módulos Python" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "módulos" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "Obsoleto" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "excepción" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "método de clase" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "método estático" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "propiedade" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "descrición do obxecto duplicado de %s, outra instancia en %s, use «:no-index:» para un deles" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "atopouse máis dun obxectivo para a referencia cruzada %r: %s" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr "(obsoleto)" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "Variábeis" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "Eleva" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "variábel de contorno; %s" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "Descrición da opción %r incorrecta, debería parecerse a «opt», «-opt args», «--opt args», «/opt args» ou «+opt args»" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "opción de liña de ordes %s" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "opción de liña de ordes" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "o termo do glosario debe ir precedido dunha liña baleira" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "os termos do glosario non deben estar separados por liñas baleiras" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "o glosario parece ter un formato incorrecto, comprobe a sangría" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "termo do glosario" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "testemuño gramatical" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "etiqueta de referencia" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "variábel de contorno" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "opción do programa" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "documento" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "Índice de módulos" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Páxina de busca" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "etiqueta duplicada %s, outra instancia en %s" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "descrición do/a %sduplicado/a de %s, outra instancia en %s" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "«numfig» está desactivado. «:numref:» é ignorado." -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "Produciuse un fallo ao crear unha referencia cruzada. Non se asigna ningún número: %s" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "a ligazón non ten lenda: %s" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "numfig_format: non é válido: %s (%r)" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "numfig_format: non é válido: %s" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "etiqueta sen definir: %r" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "Produciuse un fallo ao crear unha referencia cruzada. Non se atopou un título ou unha lenda: %r" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "nova configuración" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "a configuración cambiou" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "as extensións cambiaron" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "a versión do contorno de construción non é actual" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "o directorio fonte cambiou" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "Este contorno é incompatíbel co construtor seleccionado, escolla outro directorio de árbore de documentos «doctree»." -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "Produciuse un fallo ao escanear os documentos en %s: %r" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "O dominio %r non está rexistrado" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "o documento non está incluído en ningunha árbore de índice –toctree–" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "atopouse unha árbore de índice –toctree– auto referenciada. É ignorado." -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "ver %s" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "ver tamén %s" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "tipo de entrada de índice descoñecido %r" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "Símbolos" @@ -2461,17 +2620,17 @@ msgstr "ficheiro de imaxe %s non lexíbel: %s" msgid "download file not readable: %s" msgstr "descargar o ficheiro non lexíbel: %s" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "%s xa ten asignados números de sección (árbore de índice –toctree– con numeración anidada?)" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "Crearíase un ficheiro %s." -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2483,149 +2642,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "\nBusque recursivamente en <MODULE_PATH> módulos e paquetes de Python e cree\nun ficheiro reST con directivas «automodule» por paquete no <OUTPUT_PATH>.\n\nOs <EXCLUDE_PATTERN> poden ser patróns de ficheiros e/ou directorios que se\nexcluirán da xeración.\n\nNota: De xeito predeterminada, este script non sobrescribirá os ficheiros xa creados." -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "ruta ao módulo a documentar" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "patróns de ficheiros e/ou directorios estilo «fnmatch» para excluír da xeneración" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "directorio onde poñer toda a saída" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "profundidade máxima dos submódulos para amosar no Índice (predeterminado: 4)" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "sobrescribir os ficheiros existentes" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "seguir as ligazóns simbólicas. Potente cando se combina con «collective.recipe.omelette»." -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "executar o script sen crear ficheiros" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "poñer a documentación de cada módulo na súa propia páxina" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "incluír módulos «_private»" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "nome do ficheiro do índice (predeterminado: «modules»)" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "non crear un ficheiro de índice" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "non crear títulos para os paquetes ou módulos (p. ex., cando as cadeas literais –docstrings– xa os conteñan)" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "poñer a documentación do módulo antes da documentación do submódulo" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "interpretar as rutas dos módulos segundo a especificación de espazos de nomes implícitos PEP-0420" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "sufixo do ficheiro (predeterminado: rst)" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "xerar un proxecto completo con «sphinx-quickstart»" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "engadir module_path a sys.path, úsase cando se indica --full" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "nome do proxecto (predeterminado: nome do módulo raíz)" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "autor(es) do proxecto, úsase cando se indica --full" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "versión do proxecto, úsase cando se indica --full" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "publicación do proxecto, úsase cando se indica --full, o predeterminado é --doc-version" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "opcións de extensión" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "%s non é un directorio." +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "a sección «%s» é etiquetada como «%s»" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "expresión regular –regex– non válida %r en %s" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "non foi posíbel importar o módulo %s: %s" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "Rematada a proba de cobertura nas fontes, vexa os resultados en %(outdir)spython.txt." -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "expresión regular –regex– non válida %r en «coverage_c_regexes»" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "API C non documentada: %s [%s] no ficheiro %s" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "non foi posíbel importar o módulo %s: %s" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "función de python non documentada: %s :: %s" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "clase de python non documentada: %s :: %s" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "método de python non documentado: %s :: %s :: %s" @@ -2666,7 +2847,7 @@ msgstr "non hai código/saída no bloque %s en %s:%s" msgid "ignoring invalid doctest code: %r" msgstr "ignorando o código da proba –doctest– non válido: %r" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "==================== duración de lectura máis lenta =====================" @@ -2742,7 +2923,7 @@ msgstr "[gráfico: %s]" msgid "[graph]" msgstr "[gráfico]" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2750,7 +2931,7 @@ msgid "" "Traceback: %s" msgstr "Non é posíbel executar a orde de conversión de imaxe %r. «sphinx.ext.imgconverter» precisa, de xeito predeterminado, de «ImageMagick». Asegúrese de que estea instalado ou defina a opción «image_converter» nunha orde personalizada de conversión.\n\nRastrexo: %s" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2760,99 +2941,39 @@ msgid "" "%r" msgstr "«convert» saíu cun erro:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "non é posíbel executar a orde de conversión %r, comprobe o axuste «image_converter»" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "Non é posíbel executar a orde «LaTeX» %r (necesario para a representación matemática), comprobe o axuste «imgmath_latex»" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "Non é posíbel executar a orde «%s» %r (necesario para a representación matemática), comprobe o axuste «imgmath_%s»" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "amosar látex %r: %s" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "látex en liña %r: %s" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "Ligazón a esta ecuación" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "o inventario de «intersphinx» moveuse: %s-> %s" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "cargando o inventario «intersphinx» dende %s…" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "atopáronse algúns incidentes algúns dos inventarios, mais tiñan alternativas funcionais:" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "non foi posíbel acadar ningún dos inventarios cos seguintes incidentes:" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "(en %s v%s)" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "(en %s)" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "obxectivo de referencia externo %s:%s non atopado: %s" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "o identificador «intersphinx» %r non é unha cadea. É ignorado." - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "Produciuse un fallo ao ler «intersphinx_mapping[%s]», é ignorado: %r" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[fontes]" @@ -3028,23 +3149,23 @@ msgstr "Produciuse un fallo ao actualizar a sinatura de %r: non se atopou o par msgid "Failed to parse type_comment for %r: %s" msgstr "Produciuse un fallo ao analizar «type_comment» para %r: %s" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "referencias de «autosummary» excluídas do documento %r. É ignorado." -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "autosummar»: Non se atopou o ficheiro «stub» %r. Comprobe o axuste «autosummary_generate»." -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "Un resumo automático con lendas precisa a opción «:toctree:». É ignorado." -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3052,46 +3173,52 @@ msgid "" "%s" msgstr "autosummary: produciuse un fallo ao importar %s.\nSuxestións posíbeis\n%s" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "produciuse un fallo ao analizar o nome %s" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "produciuse un fallo ao importar o obxecto %s" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: non se atopou o ficheiro: %s" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "autosummary: non foi posíbel determinar se %r foi documentado, produciuse a seguinte excepción:\n%s" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[autosummary] xerando «autosummary» para: %s" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "[autosummary] está escribindo en %s" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3099,7 +3226,7 @@ msgid "" "%s" msgstr "[autosummary] produciuse un fallo ao importar %s.\nSuxestións posíbeis\n%s" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3114,36 +3241,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\nXera ReStructuredText usando directivas de resumo automático «autosummary».\n\nsphinx-autogen é unha interface para sphinx.ext.autosummary.generate.\nXera os ficheiros reStructuredText a partir das directivas de resumo automático «autosummary» contidas nos ficheiros de entrada indicados.\n\nO formato da directiva de resumo automático «autosummary» está documentado\nno módulo de Python ``sphinx.ext.autosummary`` e pódese ler usando::\n\n pydoc sphinx.ext.autosummary\n\n" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "ficheiros fonte para xerar ficheiros rST para" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "directorio onde colocar toda a saída" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "sufixo predeterminado para ficheiros (predeterminado: %(default)s)" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "directorio de modelos personalizados (predeterminado: %(default)s)" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "membros importados do documento (predeterminado: %(default)s)" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "documentar exactamente os membros no atributo __all__ do módulo. (predeterminado: %(default)s)" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "o identificador «intersphinx» %r non é unha cadea. É ignorado." + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "Produciuse un fallo ao ler «intersphinx_mapping[%s]», é ignorado: %r" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "atopáronse algúns incidentes algúns dos inventarios, mais tiñan alternativas funcionais:" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "non foi posíbel acadar ningún dos inventarios cos seguintes incidentes:" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "o inventario de «intersphinx» moveuse: %s-> %s" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "(en %s v%s)" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "(en %s)" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "obxectivo de referencia externo %s:%s non atopado: %s" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "Argumentos de palabras clave" @@ -3200,65 +3392,65 @@ msgstr "literal de cadea mal construído (falta a comiña de peche): %s" msgid "malformed string literal (missing opening quote): %s" msgstr "literal de cadea mal construído (falta a comiña de apertura): %s" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "Atención" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "Precaución" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "Perigo" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "Erro" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "Suxestión" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "Importante" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "Nota" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "Ver tamén" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "Truco" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "Advertencia" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "continúa da páxina anterior" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "continúa na páxina seguinte" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "Non alfabético" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "Números" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "páxina" @@ -3267,7 +3459,7 @@ msgstr "páxina" msgid "Table of Contents" msgstr "Índice" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Busca" @@ -3325,12 +3517,12 @@ msgstr "acceso rápido a todos os módulos" msgid "all functions, classes, terms" msgstr "todas as funcións, clases, termos" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" -msgstr "Índice – %(key)s" +msgid "Index – %(key)s" +msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3349,31 +3541,31 @@ msgstr "pode ser enorme" msgid "Navigation" msgstr "Navegación" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "Buscar dentro do/a %(docstitle)s" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "Sobre estes documentos" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "Dereitos de autoría" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "© %(copyright_prefix)s %(copyright)s." -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Última actualización o %(last_updated)s." -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3476,7 +3668,7 @@ msgstr "Buscando" msgid "Preparing search..." msgstr "Preparando a busca…" -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr ", en " @@ -3485,11 +3677,11 @@ msgid "Hide Search Matches" msgstr "Agochar as coincidencias da busca" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "Contraer a barra lateral" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "Expandir a barra lateral" @@ -3497,26 +3689,26 @@ msgstr "Expandir a barra lateral" msgid "Contents" msgstr "Contidos" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "non foi posíbel calcular o progreso da tradución!" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "non hai ningún elemento traducidos!" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "atopouse un índice baseado en 4 columnas. Pode ser un erro das extensións que usa: %r" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "A nota a rodapé [%s] non está referenciada." -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "A nota a rodapé [#] non está referenciada." @@ -3565,17 +3757,17 @@ msgstr "%s:%s non se atopa o destino da referencia: %s" msgid "%r reference target not found: %s" msgstr "%r non se atopa o destino da referencia: %s" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "Non foi posíbel recuperar a imaxe remota: %s [%d]" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "Non foi posíbel recuperar a imaxe remota: %s [%s]" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "Formato de imaxe descoñecido: %s…" @@ -3585,11 +3777,11 @@ msgstr "Formato de imaxe descoñecido: %s…" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "caracteres fonte non codificábeis, substituíndo por «?»: %r" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "omitido" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "produciuse un fallo" @@ -3600,12 +3792,12 @@ msgid "" "not in the domain." msgstr "Problema no dominio %s: suponse que o campo usa o rol «%s», mais ese rol non está no dominio." -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "directiva ou nome de rol descoñecido: %s:%s" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "tipo de nodo descoñecido: %r" @@ -3632,18 +3824,23 @@ msgid "" "it directly: %s" msgstr "Formato de data non válido. Acoute a cadea entre comiñas simples se quere xerala directamente: %s" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "%r é obsoleto para as entradas do índice (dende a entrada %r). No seu canto empregue «pair: %s»." -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "A arbore de índice –toctree– contén unha referencia a un ficheiro inexistente %r" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "produciuse unha excepción mentres se avalía só a expresión directiva: %s" @@ -3653,45 +3850,50 @@ msgstr "produciuse unha excepción mentres se avalía só a expresión directiva msgid "default role %s not found" msgstr "non se atopou o rol predeterminado %s" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "Ligazón a esta definición" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "numfig_format non está definido por %s" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "Calquera ID non asignado ao nodo %s" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "Ligazón a este termo" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "Ligazón a este título" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "Ligazón a esta táboa" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "Ligazón a este código" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "Ligazón a esta imaxe" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "Ligazón a esta árbore de índice –toctree–" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "Non foi posíbel obter o tamaño da imaxe. A opción «:scale:» é ignorada." @@ -3704,31 +3906,36 @@ msgstr "«toplevel_sectioning» %r descoñecido para a clase %r" msgid "too large :maxdepth:, ignored." msgstr "«:maxdepth:» é demasiado grande, é ignorado." -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "o título do documento non é un único nodo de tipo «Text»" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "o nodo do título non foi atopado na sección, tema, táboa, admonición ou barra lateral" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "Notas a rodapé" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "indícanse tanto a opción «tabularcolumns» como «:widths:». Ignorase «:widths:»." -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "a unidade de dimensión %s non é válida. É ignorada." -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "atopouse o tipo descoñecido de entrada de índice %s" @@ -3742,11 +3949,11 @@ msgstr "[imaxe: %s]" msgid "[image]" msgstr "[imaxe]" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "a lenda non está nunha figura." -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "tipo de nodo sen implementar: %r" diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.js b/sphinx/locale/he/LC_MESSAGES/sphinx.js index 5b915b0..ad897c0 100644 --- a/sphinx/locale/he/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/he/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "\u05dc\u05da", "Hide Search Matches": "\u05d4\u05e1\u05ea\u05e8 \u05ea\u05d5\u05e6\u05d0\u05d5\u05ea \u05d7\u05d9\u05e4\u05d5\u05e9", "Index": "\u05d0\u05d9\u05e0\u05d3\u05e7\u05e1", - "Index – %(key)s": "", + "Index – %(key)s": "", "Index pages by letter": "\u05e2\u05de\u05d5\u05d3\u05d9 \u05d0\u05d9\u05e0\u05d3\u05e7\u05e1 \u05dc\u05e4\u05d9 \u05d0\u05d5\u05ea\u05d9\u05d5\u05ea", "Indices and tables:": "", "Last updated on %(last_updated)s.": "\u05e2\u05d5\u05d3\u05db\u05df \u05dc\u05d0\u05d7\u05e8\u05d5\u05e0\u05d4 \u05d1 %(last_updated)s.", diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.mo b/sphinx/locale/he/LC_MESSAGES/sphinx.mo index bb54fbd..15b3b91 100644 Binary files a/sphinx/locale/he/LC_MESSAGES/sphinx.mo and b/sphinx/locale/he/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.po b/sphinx/locale/he/LC_MESSAGES/sphinx.po index 5bb04fc..5a6b6dc 100644 --- a/sphinx/locale/he/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/he/LC_MESSAGES/sphinx.po @@ -8,134 +8,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FIRST AUTHOR <EMAIL@ADDRESS>, 2011\n" "Language-Team: Hebrew (http://app.transifex.com/sphinx-doc/sphinx-1/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: he\n" "Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,75 +156,77 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -232,78 +234,78 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" @@ -488,190 +490,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -680,7 +834,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" @@ -690,7 +844,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -705,28 +859,28 @@ msgstr "" msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "" @@ -815,7 +969,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -843,12 +997,17 @@ msgstr "" msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -933,7 +1092,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -959,13 +1118,13 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -979,144 +1138,149 @@ msgstr "" msgid "index" msgstr "אינדקס" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "הבא" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "הקודם" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "תיעוד %s %s" @@ -1142,19 +1306,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "אינדקס" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "מהדורה" @@ -1212,18 +1378,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1231,27 +1389,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1263,7 +1400,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1352,7 +1489,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1363,7 +1500,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1645,12 +1782,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1759,12 +1896,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1796,11 +1933,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1828,85 +1965,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "מחבר הקטע:" -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "מחבר המודול:" -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "מחבר הקוד:" -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "מחבר:" @@ -1914,7 +2051,7 @@ msgstr "מחבר:" msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1964,7 +2101,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1979,7 +2116,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -1988,52 +2125,52 @@ msgstr "" msgid "Arguments" msgstr "" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "פונקציה" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "מחלקה" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "מודול" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2043,7 +2180,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2080,352 +2217,374 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "פרמטרים" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "משתנה" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "מאקרו" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr "" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "משתנים" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "משתנה סביבה; %s" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "משתנה סביבה" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "מודול אינדקס" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "דף חיפוש" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "ראה %s" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "ראה גם %s" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "" @@ -2461,17 +2620,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2483,149 +2642,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2666,7 +2847,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2742,7 +2923,7 @@ msgstr "" msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2750,7 +2931,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2760,99 +2941,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[מקור]" @@ -3028,23 +3149,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3052,46 +3173,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3099,7 +3226,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3114,36 +3241,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" @@ -3200,65 +3392,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "תשומת לב" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "זהירות" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "סכנה" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "שגיאה" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "רמז" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "חשוב" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "הערה" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "ראה גם" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "טיפ" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "אזהרה" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "המשך מעמוד קודם" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "" @@ -3267,7 +3459,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "חיפוש" @@ -3325,12 +3517,12 @@ msgstr "גישה מהירה לכל המודולים" msgid "all functions, classes, terms" msgstr "כל הפונקציות, המחלקות, המושגים" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" +msgid "Index – %(key)s" msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3349,31 +3541,31 @@ msgstr "עשוי להיות עצום" msgid "Navigation" msgstr "ניווט" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "חפש בתוך %(docstitle)s" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "על מסמכים אלו" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "זכויות שמורות" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "עודכן לאחרונה ב %(last_updated)s." -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3476,7 +3668,7 @@ msgstr "" msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr "" @@ -3485,11 +3677,11 @@ msgid "Hide Search Matches" msgstr "הסתר תוצאות חיפוש" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "כווץ סרגל צד" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "הרחב סרגל צד" @@ -3497,26 +3689,26 @@ msgstr "הרחב סרגל צד" msgid "Contents" msgstr "תוכן" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "" @@ -3565,17 +3757,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3585,11 +3777,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "" @@ -3600,12 +3792,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3632,18 +3824,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3653,45 +3850,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3704,31 +3906,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "הערות שוליים" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3742,11 +3949,11 @@ msgstr "" msgid "[image]" msgstr "[תמונה]" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.js b/sphinx/locale/hi/LC_MESSAGES/sphinx.js index 4c6e562..ba3dae2 100644 --- a/sphinx/locale/hi/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/hi/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "\u091a\u0932\u093f\u090f", "Hide Search Matches": "\u0916\u094b\u091c\u0947 \u0917\u090f \u091c\u094b\u095c\u0947 \u091b\u093f\u092a\u093e\u090f\u0902", "Index": "\u0905\u0928\u0941\u0915\u094d\u0930\u092e\u0923\u093f\u0915\u093e", - "Index – %(key)s": "\u0905\u0928\u0941\u0915\u094d\u0930\u092e\u0923\u093f\u0915\u093e – %(key)s", + "Index – %(key)s": "", "Index pages by letter": "\u0905\u0915\u094d\u0937\u0930 \u0926\u094d\u0935\u093e\u0930\u093e \u0905\u0928\u0941\u0915\u094d\u0930\u092e\u093f\u0924 \u092a\u0943\u0937\u094d\u0920", "Indices and tables:": "\u0938\u0942\u091a\u093f\u092f\u093e\u0901 \u0914\u0930 \u0938\u093e\u0930\u0923\u093f\u092f\u093e\u0901:", "Last updated on %(last_updated)s.": "\u0905\u0902\u0924\u093f\u092e \u092c\u093e\u0930 \u0938\u092e\u094d\u092a\u093e\u0926\u093f\u0924 %(last_updated)s.", diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi/LC_MESSAGES/sphinx.mo index 4533fd5..8efeaaa 100644 Binary files a/sphinx/locale/hi/LC_MESSAGES/sphinx.mo and b/sphinx/locale/hi/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.po b/sphinx/locale/hi/LC_MESSAGES/sphinx.po index 8d0384a..9700b19 100644 --- a/sphinx/locale/hi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi/LC_MESSAGES/sphinx.po @@ -11,134 +11,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Sumanjali Damarla <damarlasumanjali@gmail.com>, 2020\n" "Language-Team: Hindi (http://app.transifex.com/sphinx-doc/sphinx-1/language/hi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "स्रोत निर्देशिका (%s) नहीं मिली" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "स्रोत निर्देशिका और गंतव्य निर्देशिका समरूप नहीं हो सकतीं" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "स्फिंक्स %s संस्करण चल रहा है" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "इस परियोजना में स्फिंक्स का कम से कम %s संस्करण चाहिए और इसलिए इस संस्करण से बनाना संभव नहीं है." -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "परिणाम निर्देशिका बनाई जा रही है" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "%s आयाम को स्थापित करते हुए:" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'स्थापना' को जैसा कि अभी कोन्फ़.पाई में परिभाषित किया गया है, पाइथन से निर्देशित नहीं है. कृपया इसकी परिभाषा में परिवर्तन करके इसे निर्देश योग्य कर्म बनाएं. कोन्फ़.पाई को स्फिंक्स के आयाम की तरह व्यवहार के लिए इसकी आवश्कयता है." -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "[%s] अनुवाद पढ़ा जा रहा है..." -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "संपन्न" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "अंतर्निर्मित संदेशों में उपलब्ध नहीं है" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "रक्षित स्थिति को लागू किया जा रहा है" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "असफल: %s" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "किसी निर्माता को नहीं चुना गया, मानक उपयोग: एच्.टी.ऍम.एल." -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "सफल हुआ" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "समस्याओं के साथ समाप्त हुआ" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "%s निर्माण, चेतावनी %s (चेतावनी को गलती माने)| " -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "%s सम्पूर्ण, %s चेतावनी." -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "%s निर्मित." -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "निर्देशक कक्षा #node class# %r पहले से पंजीकृत है, इसके अभ्यागत निरस्त हो जाएंगे " -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "निर्देश %r पहले से पंजीकृत है, यह निरस्त हो जाएगा" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "भूमिका %r पहले से पंजीकृत है, यह निरस्त हो जाएगी" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -146,12 +146,12 @@ msgid "" "explicit" msgstr "%s आयाम यह घोषित नहीं करता कि यह समानांतर पाठन के लिए सुरक्षित है. यह मानते हुए की ऐसा नहीं है - कृपया आयाम के लेखक को जांच करने और स्पष्ट व्यक्त करने के लिए कहें." -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "समानांतर पठन के लिए यह %s विस्तार अथवा आयाम सुरक्षित नहीं है | " -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -159,75 +159,77 @@ msgid "" "explicit" msgstr "%s आयाम यह घोषित नहीं करता कि यह समानांतर लेखन के लिए सुरक्षित है. यह मानते हुए की ऐसा नहीं है - कृपया आयाम के लेखक को जांच करने और स्पष्ट व्यक्त करने के लिए कहें." -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "समानांतर लेखन के लिए %s विस्तार अथवा आयाम सुरक्षित नहीं है | " -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "%s पर काम कर रहे हैं" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "विन्यास निर्देशिका में कोन्फ़.पाय #conf.py# फाइल (%s) नहीं है " -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "शब्दकोष विन्यास मान %r की उल्लंघन नहीं किया जा सकता, अनदेखा किया गया (प्रत्येक अवयव का मान रखने के लिए %r का उपयोग करें)" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "विन्यास मान %r के लिए अमान्य संख्या %r, अनदेखा किया गया" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "असमर्थित प्रकार के साथ विन्यास मान %r का उल्लंघन नहीं किया जा सकता, अनदेखा किया गया" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "आरोहण में अज्ञात विन्यास मान %r, अनदेखा किया गया" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "विन्यास मान %r पहले से विद्यमान है" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "आपकी विन्यास फाइल में रचनाक्रम की त्रुटि है: %s\n" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "विन्यास फाइल (अथवा इसके द्वारा आयातित प्रभागों) द्वारा sys.exit() का आह्वान किया गया" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -235,78 +237,78 @@ msgid "" "%s" msgstr "विन्यास फाइल में प्रोग्राम के योग्य त्रुटि है:\n\n%s" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "विन्यास मान `source_suffix' में अक्षर-समूह, अक्षर-समूहों की सूची, अथवा कोष की अनुमति है. लेकिन `%r' दिया गया है." -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "भाग %s" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "चित्र %s" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "सारणी %s" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "सूची %s" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "`{name}` विन्यास मान, {candidates} में से एक होना चाहिए, परन्तु `{current}` दिया गया है." -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "विन्यास मान `{name}' का प्रकार `{current.__name__}' है; अपेक्षित {permitted}." -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "विन्यास मान `{name}' का प्रकार `{current.__name__}' है; मानक `{default.__name__}' का प्रयोग किया गया." -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r नहीं मिला, अनदेखा किया गया." -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "%r घटना पहले से विद्यमान है" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "अज्ञात घटना नाम: %s" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" @@ -491,190 +493,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "विन्यास मान %s.%s खोजे गए किसी भी रूप विन्यास में नहीं दिखा" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "विन्यास का असमर्थित रूप विकल्प %r दिया गया" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "रुपविन्यास के पथ में फाइल %r कोई प्रमाणिक ज़िप फाइल नहीं है या इसमें कोई रुपविन्यास नहीं सहेजा गया है" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "कार्य खंडित " + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "कूटलेखन त्रुटि:" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "पुनरावर्तन त्रुटि:" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "अपवाद घटित:" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "यदि यह प्रयोक्ता की गलती थी तो कृपया इसको भी रिपोर्ट करें ताकि अगली बार गलती होने पर अधिक अर्थपूर्ण सन्देश दिया जा सके." + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "%s निर्माता के लिए योग्य चित्र नहीं मिला: %s.(%s)" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "%s निर्माता के लिए योग्य चित्र नहीं मिला: %s" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "निर्माणाधीन [mo]: " -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "परिणाम लिखा जा रहा है..." -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "सभी %d पी.ओ. फाइलें" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "निर्दिष्ट %d पी.ओ. फाइलों के लक्ष्य" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "%d पी.ओ. फाइलों के लक्ष्य कालातीत है" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "सभी स्रोत फाइलें" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "आदेश स्थान में दी गयी फाइल %r स्रोत निर्देशिका में नहीं है, उपेक्षा की जा रही है" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "%d स्रोत फाइलें आदेश स्थान में दी " -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "%d फाइलों के लक्ष्य कालातीत है" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "निर्माणाधीन [%s]: " -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "अप्रचलित फाइलों को चिन्हित किया जा रहा है..." -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "%d मिला" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "एक भी नहीं मिला" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "स्थिति को परिरक्षित किया जा रहा है" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "संगतता की जांच की जा रही है" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "कोई प्रयोजन कालातीत नहीं है" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "स्थिति का नवीनीकरण किया जा रहा है" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s जोड़ा गया, %s बदला गया, %s हटाया गया" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "स्रोतों को पढ़ा जा रहा है..." -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "लेखन के लिए शेष लेखपत्र: %s" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "लेखपत्र बनाए जा रहे हैं" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -683,7 +837,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "विषय-सूची प्रविष्टि की प्रतिलिपि पायी गई: %s" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "चित्रों की प्रतिलिपि बनाई जा रही है..." @@ -693,7 +847,7 @@ msgstr "चित्रों की प्रतिलिपि बनाई msgid "cannot read image file %r: copying it instead" msgstr "चित्रलेख फाइल %r नहीं पढ़ा जा सका: इसकी प्रतिलिपि बनाई जा रही है" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -708,28 +862,28 @@ msgstr "चित्रलेख फाइल %r नहीं लिखा ज msgid "Pillow not found - copying image files" msgstr "पिलो नहीं मिला - चित्र फाइलों की प्रतिलिपि बनाई जा रही है" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "%s के लिए अज्ञात लेख प्रकार, छोड़ा गया" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "%s फाइल को लिखा जा रहा है..." @@ -818,7 +972,7 @@ msgstr "ई-पब3 के लिए विन्यास मान \"epub_iden msgid "conf value \"version\" should not be empty for EPUB3" msgstr "ई-पब3 के लिए विन्यास मान \"version\" खाली नहीं होना चाहिए" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "अमान्य css_file: %r, उपेक्षित" @@ -846,12 +1000,17 @@ msgstr "सन्देश सूचीपत्रों को लिखा msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "उपरोक्त परिणाम में अथवा %(outdir)s /output.txt में त्रुटियाँ ढूँढने का प्रयास " -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "खंडित कड़ी: %s (%s)" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "लक्ष्य '%s' नहीं मिला" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -936,7 +1095,7 @@ msgstr "मेकफाइल लिखने में त्रुटि: %s" msgid "The text files are in %(outdir)s." msgstr "पाठ फाइल %(outdir)s में हैं." -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -962,13 +1121,13 @@ msgstr "निर्माण सूचनापत्र फाइल खंड msgid "The HTML pages are in %(outdir)s." msgstr "एच.टी.एम्.एल. पृष्ठ %(outdir)sमें हैं." -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "निर्माण सूचनापत्र फाइल को नहीं पढ़ा जा सका: %r" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -982,144 +1141,149 @@ msgstr "सामान्य अनुक्रमाणिका" msgid "index" msgstr "अनुक्रमणिका" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "आगामी" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "पूर्ववर्ती" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "अनुक्रमाणिका निर्मित की जा रही है" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "अतिरिक्त पृष्ठ लिखे जा रहे हैं" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "उतारी गई फाइलों की प्रतिलिपि बनाई जा रही है..." -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "उतारी गई फाइलों %r की प्रतिलिपि नहीं की जा सकी: %s" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "स्थैतिक फाइल %r की प्रतिलिपि नहीं की जा सकी" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "अतिरिक्त फाइलों की प्रतिलिपियां बनाये जा रहे है| " -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "अतिरिक्त फाइल %r की प्रतिलिपि नहीं की जा सकी" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "निर्माण फाइल को नहीं लिखा जा सका: %r" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "खोज अनुक्रमाणिका नहीं चढाई जा सकी, लेकिन सभी लेखपत्र नहीं बनाए जाएंगे: अनुक्रमणिका अपूर्ण रहेगी." -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "पृष्ठ %s html_sidebars में दो आकृतियों से मिलता है: %r %r" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "पृष्ठ %s की प्रस्तुति करते समय यूनिकोड त्रुटि हुई. कृपया यह सुनिश्चित कर लें कि सभी नॉन-असकी #non-ASCII# विहित विन्यास मान यूनिकोड अक्षरों में हैं." -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "पृष्ठ %s की प्रस्तुति करते समय एक त्रुटि हुई.\nकारण: %r" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "विषयवस्तुओं का भंडार बनाया जा रहा है" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "%s में खोज अनुक्रमाणिका भंडार बनाया जा रहा है" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "अमान्य js_file: %r, उपेक्षित" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "कई math_renderers पंजीकृत हैं. लेकिन कोई math_renderers नहीं चुना गया है." -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "अज्ञात math_renderer %r दिया गया." -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "html_extra_path प्रविष्टि %r का अस्तित्व नहीं है" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "html_extra_path का प्रविष्टि %r outdir में है| " -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "html_static_path प्रविष्टि %r का अस्तित्व नहीं है" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "html_static_path का प्रविष्टि %r outdir में है| " -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "प्रतीकचिन्ह फाइल %r का अस्तित्व नहीं है" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "इष्ट चिन्ह फाइल %r का अस्तित्व नहीं है" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "%s %s दिग्दर्शिका" @@ -1145,19 +1309,21 @@ msgstr "कोई \"latex_documents\" विन्यास मान नही msgid "\"latex_documents\" config value references unknown document %s" msgstr "\"latex_documents\" विन्यास मान अज्ञात लेखपत्र %s का सन्दर्भ है" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "अनुक्रमणिका" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "आवृत्ति" @@ -1215,18 +1381,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "निर्माण के दौरान अपवाद घटित हुआ है, दोष-मुक्तक चालू किया जा रहा " -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "कार्य खंडित " - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "रेस्ट सुसज्जा त्रुटि:" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "कूटलेखन त्रुटि:" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1234,27 +1392,6 @@ msgid "" "the developers." msgstr "यदि आप इस विषय को कूटलिपिकारों के संज्ञान में लाना चाहते है तो पिछला पूरा विवरण %s में सहेज दिया गया है" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "पुनरावर्तन त्रुटि:" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "अपवाद घटित:" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "यदि यह प्रयोक्ता की गलती थी तो कृपया इसको भी रिपोर्ट करें ताकि अगली बार गलती होने पर अधिक अर्थपूर्ण सन्देश दिया जा सके." - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1266,7 +1403,7 @@ msgid "job number should be a positive number" msgstr "कार्य संख्या एक धनात्मक संख्या होनी चाहिए" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1355,7 +1492,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "नाम-पत्र परिभाषित करें: केवल नाम-पत्र वाले खण्डों का समावेश करें" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1366,7 +1503,7 @@ msgstr "प्रदर्शित परिणामों के विकल msgid "increase verbosity (can be repeated)" msgstr "शब्द-प्रयोग बढ़ाएं (पुनरावृत्ति की जा सकती है) " -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "एस.टी.डी आउट #stdout# पर कोई परिणाम नहीं, एस.टी.डी एरर #stderr# पर चेतावनियाँ " @@ -1648,12 +1785,12 @@ msgstr "मेकफाइल बनाएं? (हाँ के लिए y/ msgid "Create Windows command file? (y/n)" msgstr "विंडोज़ कमांड फाइल बनाएं? (हाँ के लिए y/ ना के लिए n)" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "फाइल बनाई जा रही है ...%s" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "फाइल %s पहले से उपस्थित है, छोड़ दी गई." @@ -1762,12 +1899,12 @@ msgstr "ई-पब प्रयोग करें" msgid "Extension options" msgstr "आयाम के विकल्प" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "आयाम %s सक्षम करें" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "स्वेच्छित आयाम सक्षम करें" @@ -1799,11 +1936,11 @@ msgstr "Makefile/make.bat के लिए make-mode का प्रयोग msgid "do not use make-mode for Makefile/make.bat" msgstr "Makefile/make.bat के लिए make-mode का प्रयोग नहीं करें" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "परियोजना नमूनावृत्ति" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "नमूना फाइलों के लिए नमूना निर्देशिका" @@ -1831,85 +1968,85 @@ msgstr "स्फिंक्स-त्वरित-आरम्भ केवल msgid "Invalid template variable: %s" msgstr "अमान्य नमूना चर-पद: %s" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "अमान्य शीर्षक: %s" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "पंक्ति संख्या का ब्यौरा सीमा से बाहर है (1-%d): %r" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "दोनों \"%s\" और \"%s\" विकल्पों का प्रयोग नहीं किया जा सकता" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "समावेशित फाइल %r नहीं मिली अथवा पढने में असफलता मिली" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "कूटलेखन %r जो कि सम्मिलित फाइल %r में प्रयुक्त है, अशुद्ध प्रतीत हो रही है, एक :encoding: विकल्प देकर प्रयत्न करें" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "%r नामक विषयवस्तु सम्मिलित फाइल %r में नहीं मिली" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "\"lineno-match\" का प्रयोग बिना जुडी \"lines\" के युग्म के साथ नहीं हो सकता" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "लाइन ब्यौरा %r: सम्मिलित फाइल %r से कोई लाइन नहीं ली जा सकीं" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "विषय-सूची-संरचना में छोड़े गए लेखपत्र %r का सन्दर्भ है" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "विषय-सूची-संरचना में अविद्यमान लेखपत्र %r का सन्दर्भ है" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "भाग के लेखक:" -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "प्रभाग लेखक:" -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "निर्देश लेखक:" -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "लेखक:" @@ -1917,7 +2054,7 @@ msgstr "लेखक:" msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1967,7 +2104,7 @@ msgstr "उद्धरण [%s] सन्दर्भ कहीं नहीं msgid "%s() (built-in function)" msgstr "%s() (अंतर्निर्मित फंक्शन)" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s विधि)" @@ -1982,7 +2119,7 @@ msgstr "%s() (वर्ग)" msgid "%s (global variable or constant)" msgstr "%s (वैश्विक चरपद अथवा अचर) " -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s लक्षण)" @@ -1991,52 +2128,52 @@ msgstr "%s (%s लक्षण)" msgid "Arguments" msgstr "चर " -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "देता है " -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "प्रदत्त " -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "प्रदत्त प्रकार " -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "%s (प्रभाग)" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "फंक्शन" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "पद्धति" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "वर्ग" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "आंकड़े " -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "लक्षण" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "प्रभाग" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2046,7 +2183,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "समीकरण का प्रतिरूप शीर्षक %s, दूसरी प्रतिकृति %s में है " -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "अमान्य math_eqref_format: %r" @@ -2083,352 +2220,374 @@ msgstr "भूमिका" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "मापदण्ड" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "सदस्य" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "चर पद" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "मैक्रो" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "युग्म" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "गणक" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "प्रगणक " -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "प्रकार" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "नमूना मानदण्ड " -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "अवधारणा " -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s प्रभाग में )" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "%s (%s प्रभाग में )" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "%s (अंतर्निर्मित चर पद)" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "%s (अंतर्निर्मित वर्ग)" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "%s (%s वर्ग में)" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s वर्ग विधि) " -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s स्थैतिक विधि)" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "पाइथन प्रभाग सूची" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "प्रभाग" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "अवमानित " -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "अपवाद " -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "वर्ग विधि" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "स्थैतिक पद्धति" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "पारस्परिक-सन्दर्भों के लिए एक से अधिक लक्ष्य मिले %r: %s" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr "(अवमानित)" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "चर पद " -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "उभारता है " -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "परिस्थिति चर पद; %s" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "अशुद्ध रूप विकल्प विवरण %r, अपेक्षित प्रारूप \"opt\", \"-opt args\", \"--opt args\", \"/opt args\" अथवा \"+opt args\"" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "पारिभाषिक पद" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "व्याकरण संकेत " -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "सन्दर्भ शीर्षक" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "परिस्थिति चर पद " -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "प्रोग्राम विकल्प " -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "लेखपत्र" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "प्रभाग सूची" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "खोज पृष्ठ" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "प्रतिरूप शीर्षक %s, दूसरी प्रतिकृति %s में है " -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig असमर्थ है. :numref: उपेक्षित है." -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "कड़ी का कोई शीर्षक नहीं है: %s" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "अमान्य numfig_format: %s (%r)" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "अमान्य numfig_format: %s" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "नव विन्यास" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "विन्यास परिवर्तित" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "आयाम परिवर्तित" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "निर्मित परिस्थिति वर्तमान संस्करण नहीं है " -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "स्रोत निर्देशिका परिवर्तित हो चुकी है " -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "यह परिस्थिति चुने गए निर्माता से मेल नहीं खाती, कृपया दूसरी डॉक-ट्री निर्देशिका चुनें. " -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "लेखपत्रों के पर्यवेक्षण में असफलता %s: %r" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "अधिकारक्षेत्र %r पंजीकृत नहीं है" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "लेखपत्र किसी भी विषय-सूची-संरचना में सम्मिलित नहीं है" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "स्वयं-संदर्भित विषय-सूची-संरचना मिली है. उपेक्षा की गई." -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "%s देखिए" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "%s भी देखिए" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "अनुक्रमणिका की प्रविष्टि का प्रकार अज्ञात %r" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "संकेत " @@ -2464,17 +2623,17 @@ msgstr "चित्र फाइल %s पठनीय नहीं है: %s" msgid "download file not readable: %s" msgstr "उतारी गई फाइल पठनीय नहीं है: %s" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "%s में पहले से भाग संख्या नियत है (एक के अन्दर दूसरा अंकित विषय-सूची-संरचना)" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "%s फाइल बन जाएगी." -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2486,149 +2645,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "\n<MODULE_PATH> में पाइथन प्रभाग और पैकेज की पुनरावर्तित खोज करें और\nस्वतःप्रभाग निर्देश द्वारा <OUTPUT_PATH> में प्रति पैकेज एक रेस्ट #reST# फाइल बनाएं.\n\n<EXCLUDE_PATTERN> फाइल और/ अथवा निर्देशिका स्वरुप हो सकते हैं\nजो निर्माण प्रकिया में छोड़ दिए जाएंगे.\n\nनोट: सामान्यतया यह स्क्रिप्ट किसी पहले से बनाई गई फाइल पर पुनर्लेखन नहीं करती." -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "प्रभाग से लेखपत्र का पथ" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "fnmatch-style फाइल और/ अथवा निर्देशिका स्वरुप जो निर्माण प्रक्रिया से छोड़ने हैं" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "सभी परिणामों को सहेजने के लिए निर्देशिका" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "विषय-सूची में दिखाए जाने वाले उपप्रभागों की अधिकतम गहराई (मानक: 4)" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "मौजूदा फाइलों पर पुनर्लेखन करें" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "सांकेतिक कड़ियों का अनुसरण करें. कलेक्टिव.रेसिपी.ऑमलेट के साथ प्रभावशाली. " -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "फाइलों को बनाए बिना स्क्रिप्ट चलाएं " -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "प्रत्येक प्रभाग के आलेख उसके अपने पृष्ठ में रखें" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "\"_private\" प्रभाग को सम्मिलित करें " -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "विषय-सूची की फाइल का नाम (मानक: प्रभाग) " -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "विषय-सूची की फाइल न बनाएं " -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "प्रभाग/पैकेज पैकेजों का शीर्षक न बनाएं (उदाहरणार्थ, जब डॉकस्ट्रिंग्स में यह पहले से हों) " -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr " मुख्य प्रभाग के आलेख को उपप्रभाग के आलेख से पहले रखें" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "प्रभाग पथ की व्याख्या 'पी.ई.पी.-0420 निहित नामराशि विवरण' के आधार पर करें " -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "फाइल प्रत्यय (मानक: rst)" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "स्फिंक्स-त्वरित-आरम्भ के साथ पूर्ण परियोजना उत्पन्न करें " -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "मोड्यूल_पाथ #module_path# को सिस.पाथ #sys.path# में जोड़ें, जब --full दिया जाता है तब इसका प्रयोग होता है " -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "परियोजना का नाम (मानक: मूल प्रभाग का नाम) " -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "परियोजना लेखक(गण), जब --full दिया जाता है तब इसका प्रयोग होता है " -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "परियोजना संस्करण, जब --full दिया जाता है तब इसका प्रयोग होता है " -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "परियोजना आवृत्ति, जब --full दिया जाता है तब इसका प्रयोग होता है " -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "आयाम विकल्प " -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "%s एक निर्देशिका नहीं है. " +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "अमान्य रेगएक्स #regex# %r, %s में " -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "प्रभाग %s का आयत नहीं किया जा सका: %s" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "स्रोतों की व्यापकता की जांच पूरी, परिणाम %(outdir)spython.txt में देखें. " -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "अमान्य रेगएक्स #regex# %r, coverage_c_regexes में " -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "प्रभाग %s का आयत नहीं किया जा सका: %s" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2669,7 +2850,7 @@ msgstr "%s भाग में %s पर कोई निर्देश / प msgid "ignoring invalid doctest code: %r" msgstr "अमान्य डॉकटेस्ट निर्देश की उपेक्षा की जा रही है: %r" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2745,7 +2926,7 @@ msgstr "[graph: %s]" msgid "[graph]" msgstr "[graph]" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2753,7 +2934,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2763,99 +2944,39 @@ msgid "" "%r" msgstr "परिवर्तक त्रुटि के साथ बहार आ गया:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "लाटेक्स आदेश %r नहीं चलाया जा सकता (गणित दिखाने के लिए आवश्यक). आई.एम्.जी.मैथ_लाटेक्स मान की जाँच करें" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "%s आदेश %r नहीं चलाया जा सकता (गणित दिखाने के लिए आवश्यक). imgmath_%s मान की जाँच करें" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "लाटेक्स दिखाएँ %r: %s" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "पंक्तिबद्ध लाटेक्स %r: %s" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "इन्टरस्फिंक्स सामान स्थानांतरित हो चुका है: %s -> %s" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "इन्टरस्फिंक्स सामान को %s से चढ़ाया जा रहा है ..." - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "कुछ चीजों के साथ कुछ समस्या है, लेकिन काम के दूसरे विकल्प उपलब्ध हैं: " - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "कुछ चीजों पहुँचने में असफलता मिली और यह समस्याएँ मिलीं: " - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "(%s v%s में)" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "(%s में)" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "इन्टरस्फिंक्स निर्धारक %r अक्षरमाला नहीं है. उपेक्षित" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[स्रोत]" @@ -3031,23 +3152,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3055,46 +3176,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "पद-विच्छेदन में असफलता: %s" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "विषय-वस्तु के आयात में असफलता: %s" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[ऑटोसमरी] अब इसका स्वतःसारांश बना रहा है: %s" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "[ऑटोसमरी] %s पर लिख रहा है" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3102,7 +3229,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3117,36 +3244,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\nस्वतः सारांश #autosummary# निर्देश का प्रयोग करते हुए पुर्नसरंचितपाठ बनाता है.\n\nस्फिंक्स-ऑटोजेन स्फिंक्स.एक्स्ट.ऑटोसमरी.जेनेरेट का मुखड़ा है.\nयह प्रदत्त फाइलों में सम्मिलित ऑटो समरी निर्देशों के अनुसार पुर्नसरंचितपाठ बनाता है\n\nस्वतः सारांश #autosummary# निर्देश का प्रारूप स्फिंक्स.एक्स्ट.ऑटोसमरी \nपाइथन प्रभाग में निबंधित है और इसे आप निम्नलिखित माध्यम से पढ़ सकते हैं:\n\n pydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "आर.एस.टी. फाइलें बनाने के लिए स्रोत फाइलें" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "सभी परिणाम रखने के लिए निर्देशिका" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "फाइलों के लिए मानक प्रत्यय (मानक: %(default)s)" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "पारंपरिक प्रारूप निर्देशिका (मानक: %(default)s)" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "लेखपत्र आयातित सदस्य (मानक: %(default)s)" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "इन्टरस्फिंक्स निर्धारक %r अक्षरमाला नहीं है. उपेक्षित" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "कुछ चीजों के साथ कुछ समस्या है, लेकिन काम के दूसरे विकल्प उपलब्ध हैं: " + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "कुछ चीजों पहुँचने में असफलता मिली और यह समस्याएँ मिलीं: " + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "इन्टरस्फिंक्स सामान स्थानांतरित हो चुका है: %s -> %s" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "(%s v%s में)" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "(%s में)" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "मुख्य शब्दों के चर-पद" @@ -3203,65 +3395,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "सावधानी" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "चेतावनी" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "खतरा" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "गलती" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "संकेत" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "महत्त्वपूर्ण" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "टिप्पणी " -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "यह भी देखिए" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "सलाह" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "चेतावनी" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "पिछले पृष्ठ से जारी" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "अगले पृष्ठ पर जारी" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "अकारादि-क्रमहीन " -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "संख्याएं " -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "पृष्ठ" @@ -3270,7 +3462,7 @@ msgstr "पृष्ठ" msgid "Table of Contents" msgstr "विषय-सूची" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "खोज" @@ -3328,12 +3520,12 @@ msgstr "सभी प्रभाग तक तुरंत पहुँच" msgid "all functions, classes, terms" msgstr "सभी कार्ययुक्तियां, वर्ग, शब्द" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" -msgstr "अनुक्रमणिका – %(key)s" +msgid "Index – %(key)s" +msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3352,31 +3544,31 @@ msgstr "बृहदाकार हो सकता है" msgid "Navigation" msgstr "संचालन" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "%(docstitle)s में खोजें" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "इन लेखपत्रों के बारे में" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "सर्वाधिकार" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "अंतिम बार सम्पादित %(last_updated)s." -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3479,7 +3671,7 @@ msgstr "खोज जारी" msgid "Preparing search..." msgstr "खोज की तैयारी" -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr ", में " @@ -3488,11 +3680,11 @@ msgid "Hide Search Matches" msgstr "खोजे गए जोड़े छिपाएं" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "किनारे का स्थान घटाएं" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "किनारे का स्थान बढ़ाएं" @@ -3500,26 +3692,26 @@ msgstr "किनारे का स्थान बढ़ाएं" msgid "Contents" msgstr "विषय सामिग्री" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "4 पंक्तिबद्ध सूचियाँ मिलीं. यह आपके द्वारा उपयोग किए गए आयाम की त्रुटि हो सकती है: %r" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "पाद-टिप्पणी [%s] का कोई सन्दर्भ नहीं है." -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "पाद-टिप्पणी [#] सन्दर्भ कहीं नहीं है" @@ -3568,17 +3760,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "दूरस्थ चित्र नहीं लाया जा सका: %s [%d]" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "दूरस्थ चित्र नहीं लाया जा सका: %s [%s]" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "अज्ञात चित्र प्रारूप: %s..." @@ -3588,11 +3780,11 @@ msgstr "अज्ञात चित्र प्रारूप: %s..." msgid "undecodable source characters, replacing with \"?\": %r" msgstr "असाधनीय स्रोत अक्षर, \"?\" द्वारा बदले जा रहे हैं: %r" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "छोड़ा " -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "असफल" @@ -3603,12 +3795,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "अज्ञात बिंदु प्रकार: %r" @@ -3635,18 +3827,23 @@ msgid "" "it directly: %s" msgstr "अमान्य तिथि प्रारूप. यदि आप सीधे परिणाम में दर्शाना चाहते हैं तो अक्षरमाला को एकाकी उद्धरण चिन्ह द्वारा चिन्हित करें: %s" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "विषय-सूची-संरचना में अविद्यमान फाइल %r का सन्दर्भ है" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "केवल निर्देशक भाव का मूल्यांकन करते समय अपवाद: %s" @@ -3656,45 +3853,50 @@ msgstr "केवल निर्देशक भाव का मूल्य msgid "default role %s not found" msgstr "मानक भूमिका '%s' नहीं मिली" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "%s के लिए नमफिग_फॉर्मेट नहीं बताया गया है" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "%s बिंदु के लिए कोई पहचान-चिन्ह नहीं दिया गया" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "चित्र का आकार नहीं मिल सका. :scale: विकल्प की उपेक्षा की जा रही है." @@ -3707,31 +3909,36 @@ msgstr "अज्ञात %r उच्चतमस्तर_विभाजन msgid "too large :maxdepth:, ignored." msgstr "अत्याधिक अधिकतम गहराई # :maxdepth: #, उपेक्षित किया गया." -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "लेखपत्र का शीर्षक एकल पाठ बिंदु नहीं है" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "पाया गया शीर्ष बिंदु किसी भाग, प्रसंग, तालिका, विषय-प्रबोध अथवा पार्श्व-स्थान में नहीं है" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "पाद टिप्पणियां" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "दोनों तालिका-स्तंभ और :चौड़ाई: विकल्प दिए गए हैं. :चौड़ाई: मान की उपेक्षा की जाएगी." -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "परिमाण मात्रक %s अमान्य है. उपेक्षा की जाएगी." -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "अनुक्रमणिका की प्रविष्टि का प्रकार %s मिला" @@ -3745,11 +3952,11 @@ msgstr "[चित्र: %s]" msgid "[image]" msgstr "[चित्र]" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "शीर्षक रेखाचित्र के भीतर नहीं है" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "अकार्यान्वित बिंदु प्रकार: %r" diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.js b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.js index c73e10b..8bdd360 100644 --- a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "", "Hide Search Matches": "", "Index": "", - "Index – %(key)s": "", + "Index – %(key)s": "", "Index pages by letter": "", "Indices and tables:": "", "Last updated on %(last_updated)s.": "", diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo index ff00478..e30c99a 100644 Binary files a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo and b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po index 41ea3c0..bb660d7 100644 --- a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po @@ -7,134 +7,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: Hindi (India) (http://app.transifex.com/sphinx-doc/sphinx-1/language/hi_IN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: hi_IN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,75 +155,77 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -231,78 +233,78 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" @@ -487,190 +489,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -679,7 +833,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" @@ -689,7 +843,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -704,28 +858,28 @@ msgstr "" msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "" @@ -814,7 +968,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -842,12 +996,17 @@ msgstr "" msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -932,7 +1091,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -958,13 +1117,13 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -978,144 +1137,149 @@ msgstr "" msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "" @@ -1141,19 +1305,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "" @@ -1211,18 +1377,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1230,27 +1388,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1262,7 +1399,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1351,7 +1488,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1362,7 +1499,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1644,12 +1781,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1758,12 +1895,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1795,11 +1932,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1827,85 +1964,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "" @@ -1913,7 +2050,7 @@ msgstr "" msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1963,7 +2100,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1978,7 +2115,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -1987,52 +2124,52 @@ msgstr "" msgid "Arguments" msgstr "" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2042,7 +2179,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2079,352 +2216,374 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr "" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "" @@ -2460,17 +2619,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2482,149 +2641,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2665,7 +2846,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2741,7 +2922,7 @@ msgstr "" msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2749,7 +2930,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2759,99 +2940,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" @@ -3027,23 +3148,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3051,46 +3172,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3098,7 +3225,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3113,36 +3240,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" @@ -3199,65 +3391,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "" @@ -3266,7 +3458,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "" @@ -3324,12 +3516,12 @@ msgstr "" msgid "all functions, classes, terms" msgstr "" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" +msgid "Index – %(key)s" msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3348,31 +3540,31 @@ msgstr "" msgid "Navigation" msgstr "" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3475,7 +3667,7 @@ msgstr "" msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr "" @@ -3484,11 +3676,11 @@ msgid "Hide Search Matches" msgstr "" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "" @@ -3496,26 +3688,26 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "" @@ -3564,17 +3756,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3584,11 +3776,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "" @@ -3599,12 +3791,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3631,18 +3823,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3652,45 +3849,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3703,31 +3905,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3741,11 +3948,11 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.js b/sphinx/locale/hr/LC_MESSAGES/sphinx.js index f4ecdac..de77fc7 100644 --- a/sphinx/locale/hr/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/hr/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "Tra\u017ei", "Hide Search Matches": "Sakrij rezultate pretrage", "Index": "Abecedni popis", - "Index – %(key)s": "Index – %(key)s", + "Index – %(key)s": "", "Index pages by letter": "Indeksiraj stranice po slovu", "Indices and tables:": "Kazala i tablice:", "Last updated on %(last_updated)s.": "Zadnji put a\u017eurirano %(last_updated)s.", diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.mo b/sphinx/locale/hr/LC_MESSAGES/sphinx.mo index 925a52e..f8dbd53 100644 Binary files a/sphinx/locale/hr/LC_MESSAGES/sphinx.mo and b/sphinx/locale/hr/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.po b/sphinx/locale/hr/LC_MESSAGES/sphinx.po index b389a3c..6d6d830 100644 --- a/sphinx/locale/hr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hr/LC_MESSAGES/sphinx.po @@ -8,134 +8,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Mario Šarić, 2015-2020\n" "Language-Team: Croatian (http://app.transifex.com/sphinx-doc/sphinx-1/language/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "Nema izvornog direktorija (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "Izvorni i odredišni direktorij ne smiju biti jednaki" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "Izrada pomoću Sphinx v%s" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Ovaj projekt se ne može izgraditi s instaliranom verzijom, potrebno je instalirati Sphinx v%s ili višu verziju." -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "izrada izlazne mape" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' koji je postavljen u conf.py nije moguće pozvati. Molimo izmijenite definiciju 'setup' funkcije kako bi ju mogli izvršiti iz Pythona. Ovo je potrebno kako bi conf.py imao karakter Sphinx proširenja. " -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "učitavanje prijevoda [%s]... " -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "napravljeno" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "neuspješno: %s" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "Nije odabran format, koristi se zadani: html" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "uspješno" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "završeno uz probleme" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "build %s, %s upozorenje." -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "build %s." -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "%s proširenje nema deklaraciju paralelnog čitanja, uz pretpostavku da nije - zamolite autora za provjeru i postavljanje deklaracije" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,75 +156,77 @@ msgid "" "explicit" msgstr "%s proširenje nema deklaraciju paralelnog čitanja, uz pretpostavku da nije - zamolite autora za provjeru i postavljanje deklaracije" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "u konfiguracijskom direktoriju ne postoji datoteka conf.py (%s)" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "ne može se nadjačati osnovna konf. postavka %r, zanemarena je (koristite %r za postavljanje pojedinačnih elemenata)" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "nepravilan broj %r za konf. vrijednost %r, zanemaruje se" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "ne može se nadjačati konf. vrijednost %r zbog nepodržanog tipa, zanemareno" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "nepoznata konfiguracijska vrijednost %r, zanemaruje se" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "Konfiguracijska vrijednost %r već postoji" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Postoji sintaksna greška u konfiguracijskoj datoteci: %s\n" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -232,78 +234,78 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "Poglavlje %s" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "Slika %s" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "Tablica %s" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "Ispis %s" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r nije pronađen, zanemareno je." -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "Događaj %r već postoji" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "Nepoznato ime događaja: %s" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" @@ -488,190 +490,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "postavka %s.%s ne pojavljuje se u pretraženim konfiguracijama tema" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "datoteka %r iz teme nije ispravna (zip) arhiva ili ne sadrži temu" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -680,7 +834,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" @@ -690,7 +844,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -705,28 +859,28 @@ msgstr "" msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "" @@ -815,7 +969,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -843,12 +997,17 @@ msgstr "" msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -933,7 +1092,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -959,13 +1118,13 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -979,144 +1138,149 @@ msgstr "Opceniti abecedni indeks" msgid "index" msgstr "abecedni indeks" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "naprijed" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "nazad" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "%s %s dokumentacija" @@ -1142,19 +1306,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "Abecedni popis" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "Distribucija" @@ -1212,18 +1378,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1231,27 +1389,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1263,7 +1400,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1352,7 +1489,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1363,7 +1500,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1645,12 +1782,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1759,12 +1896,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1796,11 +1933,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1828,85 +1965,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "Neispravan navod: %s" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "Ne mogu se istovremeno koristiti *%s* i *%s* opcije" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "Include datoteka %r nije pronađena ili se ne može pročitati" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "Encoding %r za čitanje import datoteke %r nije ispravan, pokušajte dodati :encoding: opciju" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "Objekt %r nije pronađen u include datoteci %r" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "Ne može se koristiti \"lineno-match\" sa nespojivom grupom \"lines\"" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "Specifikacija retka %r: nema redaka preuzetih iz include datoteke %r" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "Autor sekcije: " -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "Autor modula: " -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "Autor koda:" -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "Autor:" @@ -1914,7 +2051,7 @@ msgstr "Autor:" msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1964,7 +2101,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (ugrađene funkcije)" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metoda)" @@ -1979,7 +2116,7 @@ msgstr "%s() (razred)" msgid "%s (global variable or constant)" msgstr "%s (globalna varijabla ili konstanta)" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atribut)" @@ -1988,52 +2125,52 @@ msgstr "%s (%s atribut)" msgid "Arguments" msgstr "Argumenti" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "Baca (iznimke)" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "Vraća" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "Vraća tip" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "funkcija" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "metoda" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "razred" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "podaci" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "atribut" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "modul" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2043,7 +2180,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "dvostruka oznaka jednakosti %s, drugo pojavljivanje u %s" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2080,352 +2217,374 @@ msgstr "uloga" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "Parametri" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "član" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "varijabla" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "makro" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "enum" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "tip" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "Parametri predloška" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "koncept" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "%s() (u modulu %s)" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "%s (u modulu %s)" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "%s (ugrađene variable)" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "%s (ugrađen razred)" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "%s (razred u %s)" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s metoda klase)" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statična metoda)" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "Python indeks modula" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "Moduli" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "Zastarjelo" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "izuzetak" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "metoda klase" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "statična metoda" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr " (zastarjelo)" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "Varijable" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "Podiže" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "varijabla okruženja; %s" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "termin rječnika" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "token gramatike" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "referentna oznaka" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "varijabla okruženja" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "programske mogućnosti" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "dokument" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "Popis modula" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Tražilica" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "pogledajte %s" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "Dodatne informacije: %s" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "Simboli" @@ -2461,17 +2620,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2483,149 +2642,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2666,7 +2847,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2742,7 +2923,7 @@ msgstr "[graph: %s]" msgid "[graph]" msgstr "[graph]" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2750,7 +2931,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2760,99 +2941,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "(u %s v%s)" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[source]" @@ -3028,23 +3149,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3052,46 +3173,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3099,7 +3226,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3114,36 +3241,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "(u %s v%s)" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "Argumenti" @@ -3200,65 +3392,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "Pozor" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "Pažnja" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "Opasnost" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "Greška" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "Savjet" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "Važno" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "Napomena" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "Više informacija" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "Savjet" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "Upozorenje" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "nastavak sa prethodne stranice" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "stranica" @@ -3267,7 +3459,7 @@ msgstr "stranica" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Traži" @@ -3325,12 +3517,12 @@ msgstr "brz dostup do svih modula" msgid "all functions, classes, terms" msgstr "sve funkcije, razredi, izrazi" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" -msgstr "Index – %(key)s" +msgid "Index – %(key)s" +msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3349,31 +3541,31 @@ msgstr "može biti ogromno" msgid "Navigation" msgstr "Navigacija" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "Traži između %(docstitle)s" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "O ovim dokumentima" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "Sva prava zadržana" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Zadnji put ažurirano %(last_updated)s." -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3476,7 +3668,7 @@ msgstr "Pretraživanje" msgid "Preparing search..." msgstr "Priprema pretrage..." -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr ", u " @@ -3485,11 +3677,11 @@ msgid "Hide Search Matches" msgstr "Sakrij rezultate pretrage" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "Sakrij pomoćnu traku" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "Pokaži pomoćnu traku" @@ -3497,26 +3689,26 @@ msgstr "Pokaži pomoćnu traku" msgid "Contents" msgstr "Sadržaj" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "" @@ -3565,17 +3757,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3585,11 +3777,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "" @@ -3600,12 +3792,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3632,18 +3824,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3653,45 +3850,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3704,31 +3906,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "Fusnote" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3742,11 +3949,11 @@ msgstr "[slika: %s]" msgid "[image]" msgstr "[slika]" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.js b/sphinx/locale/hu/LC_MESSAGES/sphinx.js index 917dc2a..95e2a3d 100644 --- a/sphinx/locale/hu/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/hu/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "Ok", "Hide Search Matches": "Keres\u00e9si Tal\u00e1latok Elrejt\u00e9se", "Index": "T\u00e1rgymutat\u00f3", - "Index – %(key)s": "T\u00e1rgymutat\u00f3 – %(key)s", + "Index – %(key)s": "", "Index pages by letter": "Oldalak ABC sorrendben", "Indices and tables:": "T\u00e1rgymutat\u00f3 \u00e9s t\u00e1bl\u00e1zatok", "Last updated on %(last_updated)s.": "Utols\u00f3 friss\u00edt\u00e9s %(last_updated)s.", diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.mo b/sphinx/locale/hu/LC_MESSAGES/sphinx.mo index df44c62..bef02ab 100644 Binary files a/sphinx/locale/hu/LC_MESSAGES/sphinx.mo and b/sphinx/locale/hu/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.po b/sphinx/locale/hu/LC_MESSAGES/sphinx.po index 931f78a..6dd5bf5 100644 --- a/sphinx/locale/hu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hu/LC_MESSAGES/sphinx.po @@ -13,134 +13,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Balázs Úr, 2020\n" "Language-Team: Hungarian (http://app.transifex.com/sphinx-doc/sphinx-1/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "Nem található a forráskönyvtár (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "A forráskönyvtár és célkönyvtár nem lehet azonos" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "Sphinx %s verzió futtatása" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Ez a projekt legalább a Sphinx %s verzióját igényli, és emiatt nem állítható össze ezzel a verzióval." -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "kimeneti könyvtár elkészítése" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "a(z) %s kiterjesztés beállításakor:" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "A „setup”, ahogy jelenleg a conf.py fájlban meg van határozva, nem meghívható Python függvény. Módosítsa a meghatározását, hogy meghívható függvénnyé tegye. Ez ahhoz szükséges, hogy a conf.py Sphinx kiterjesztésként viselkedjen." -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "fordítások betöltése [%s]…" -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "kész" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "nem érhető el beépített üzenetekhez" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "pickle-t környezet betöltése" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "sikertelen: %s" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "Nincs összeállító kiválasztva, az alapértelmezett használata: html" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "sikerült" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "problémákkal befejeződött" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "%s összeállítás, %s figyelmeztetés (a figyelmeztetések hibákként való kezelésével)" -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "%s összeállítás, %s figyelmeztetés (a figyelmeztetések hibákként való kezelésével)" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "%s összeállítás, %s figyelmeztetés." -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "%s összeállítás, %s figyelmeztetés." -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "%s összeállítás." -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "a(z) %r csomópontosztály már regisztrálva van, a látogatói felül lesznek bírálva" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "a(z) %r direktíva már regisztrálva van, felül lesz bírálva" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -148,12 +148,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -161,75 +161,77 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "a beállítási könyvtár nem tartalmaz conf.py fájlt (%s)" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -237,78 +239,78 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "%s. bekezdés" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "%s. ábra" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "%s. táblázat" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "%s. felsorlás" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" @@ -493,190 +495,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -685,7 +839,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" @@ -695,7 +849,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -710,28 +864,28 @@ msgstr "" msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "" @@ -820,7 +974,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -848,12 +1002,17 @@ msgstr "" msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -938,7 +1097,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -964,13 +1123,13 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -984,144 +1143,149 @@ msgstr "Általános tárgymutató" msgid "index" msgstr "nyitóoldal" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "következő" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "előző" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "%s %s dokumentáció" @@ -1147,19 +1311,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "Tárgymutató" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "Kiadás" @@ -1217,18 +1383,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1236,27 +1394,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1268,7 +1405,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1357,7 +1494,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1368,7 +1505,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1650,12 +1787,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1764,12 +1901,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1801,11 +1938,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1833,85 +1970,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "Fejezet szerző: " -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "Modul szerző: " -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "Kód szerző: " -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "Szerző: " @@ -1919,7 +2056,7 @@ msgstr "Szerző: " msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1969,7 +2106,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (beépített függvény)" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metódus)" @@ -1984,7 +2121,7 @@ msgstr "%s() (osztály)" msgid "%s (global variable or constant)" msgstr "%s (globális változó vagy konstans)" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribútum)" @@ -1993,52 +2130,52 @@ msgstr "%s (%s attribútum)" msgid "Arguments" msgstr "Argumentum" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "Dob" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "Visszatérési érték" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "Visszatérés típusa" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "függvény" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "metódus" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "osztály" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "adat" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "attribútum" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "modul" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2048,7 +2185,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2085,352 +2222,374 @@ msgstr "szerepkör" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "Paraméterek" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "tag" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "változó" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "makró" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "enumeráció" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "enumerátor" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "típus" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "Sablonparaméterek" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s modulban)" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "%s (%s modulban)" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "%s (beépített változó)" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "%s (beépített osztály)" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "%s (osztály %s)" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s osztály metódus)" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statikus metódus)" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "Python Modul Mutató" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "modulok" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "Elavult" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "kivétel" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "osztály szintű metódus" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "statikus metódus" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr " (elavult)" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "Változók" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "Kivétel" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "környezeti változó; %s" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "szójegyzék" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "nyelvtani jel" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "referencia cimke" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "környezeti változó" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "program opció" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "Modulok" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Keresés" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "forrás mappa megváltozott" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "lásd %s" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "lásd még %s" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "Szimbólumok" @@ -2466,17 +2625,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2488,149 +2647,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "%s nem mappa" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2671,7 +2852,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2747,7 +2928,7 @@ msgstr "[graph: %s]" msgid "[graph]" msgstr "[graph]" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2755,7 +2936,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2765,99 +2946,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "(%s v%s)" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[source]" @@ -3033,23 +3154,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3057,46 +3178,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3104,7 +3231,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3119,36 +3246,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "(%s v%s)" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" @@ -3205,65 +3397,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "Figyelem" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "Figyelem" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "Veszély" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "Hiba" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "Tipp" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "Fontos" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "Megjegyzés" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "Lásd még" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "Javaslat" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "Figyelem" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "folytatás az előző oldalról" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "oldal" @@ -3272,7 +3464,7 @@ msgstr "oldal" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Keresés" @@ -3330,12 +3522,12 @@ msgstr "gyors hozzáférés az összes modulhoz" msgid "all functions, classes, terms" msgstr "összes funkció, osztály és kifejezés" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" -msgstr "Tárgymutató – %(key)s" +msgid "Index – %(key)s" +msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3354,31 +3546,31 @@ msgstr "nagy lehet" msgid "Navigation" msgstr "Navigáció" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "Keresés köztük: %(docstitle)s" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "Névjegy ezekről a dokumentumokról" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "Minden jog fenntartva" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Utolsó frissítés %(last_updated)s." -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3481,7 +3673,7 @@ msgstr "Keresés folyamatban" msgid "Preparing search..." msgstr "Felkészülés a keresésre..." -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr ", " @@ -3490,11 +3682,11 @@ msgid "Hide Search Matches" msgstr "Keresési Találatok Elrejtése" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "Oldalsáv összezárása" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "Oldalsáv kinyitása" @@ -3502,26 +3694,26 @@ msgstr "Oldalsáv kinyitása" msgid "Contents" msgstr "Tartalom" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "" @@ -3570,17 +3762,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3590,11 +3782,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "" @@ -3605,12 +3797,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3637,18 +3829,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3658,45 +3855,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3709,31 +3911,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "Lábjegyzetek" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3747,11 +3954,11 @@ msgstr "[image: %s]" msgid "[image]" msgstr "[image]" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.js b/sphinx/locale/id/LC_MESSAGES/sphinx.js index bd4b35e..9aec3ce 100644 --- a/sphinx/locale/id/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/id/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "Go", "Hide Search Matches": "Sembunyikan Hasil Pencarian", "Index": "Indeks", - "Index – %(key)s": "Index – %(key)s", + "Index – %(key)s": "", "Index pages by letter": "Index halaman berdasarkan huruf", "Indices and tables:": "Indeks dan tabel:", "Last updated on %(last_updated)s.": "Terakhir diperbarui pada %(last_updated)s.", diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.mo b/sphinx/locale/id/LC_MESSAGES/sphinx.mo index f779db6..743731c 100644 Binary files a/sphinx/locale/id/LC_MESSAGES/sphinx.mo and b/sphinx/locale/id/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.po b/sphinx/locale/id/LC_MESSAGES/sphinx.po index 0b10c9d..4c5a84b 100644 --- a/sphinx/locale/id/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/id/LC_MESSAGES/sphinx.po @@ -13,134 +13,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: oon arfiandwi (OonID) <oon.arfiandwi@gmail.com>, 2023\n" "Language-Team: Indonesian (http://app.transifex.com/sphinx-doc/sphinx-1/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "Tidak dapat menemukan direktori sumber (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "Direktori keluaran (%s) bukan direktori" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "Direktori sumber dan direktori tujuan tidak boleh sama" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "Menjalankan Sphinx v%s" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Proyek ini memerlukan sedikitnya Sphinx v%s dan maka itu tidak bisa dibangun dengan versi ini." -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "membuat direktori keluaran" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "saat menyiapkan ekstensi %s:" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' yang saat ini didefinisikan pada conf.py bukanlah sebuah Python callable. Silakan modifikasi definisinya untuk membuatnya menjadi fungsi callable. Hal ini diperlukan guna conf.py berjalan sebagai ekstensi Sphinx." -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "memuat terjemahan [%s]... " -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "selesai" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "tidak tersedia untuk built-in messages" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "memuat lingkungan yang diawetkan" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "gagal: %s" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "Tidak ada builder yang dipilih, menggunakan default: html" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "berhasil" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "selesai with masalah" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "bangun %s, %s peringatan (dengan peringatan dianggap sebagai kesalahan)." -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "build %s, %s peringatan." -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "build %s." -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "kelas simpul %r sudah terdaftar, pengunjungnya akan diganti" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "pengarahan %r sudah terdaftar, itu akan diganti" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "peran %r sudah terdaftar, itu akan diganti" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -148,12 +148,12 @@ msgid "" "explicit" msgstr "ekstensi %s tidak akan dinyatakan jika itu aman untuk pembacaan paralel, dengan anggapan itu tidak aman - silakan tanya pembuat ekstensi untuk memeriksa dan membuatnya eksplisit" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "ekstensi %s tidak aman untuk pembacaan paralel" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -161,75 +161,77 @@ msgid "" "explicit" msgstr " \nekstensi %s tidak akan dinyatakan jika itu aman untuk penulisan paralel, dengan anggapan itu tidak aman - silakan tanya pembuat ekstensi untuk memeriksa dan membuatnya eksplisit" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "ekstensi %s tidak aman untuk penulisan paralel" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "mengerjakan serial %s" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "direktori konfigurasi tidak berisi berkas conf.py (%s)" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "tidak dapat menulis ulang pengaturan direktori konfigurasi %r, mengabaikan (gunakan %r untuk mengatur elemen-elemen satuan)" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "nomor %r yang salah untuk konfigurasi nilai %r, mengabaikan" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "tidak dapat menulis ulang pengaturan konfigurasi %r dengan tipe yang tidak didukung, mengabaikan" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "nilai konfigurasi %r yang tidak dikenal pada penulisan ulang, mengabaikan" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "Nilai konfigurasi %r sudah ada" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Ada kesalahan sintaksis dalam file konfigurasi Anda: %s\n" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Berkas konfigurasi (atau salah satu dari modul terimpor) disebut sys.exit()" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -237,78 +239,78 @@ msgid "" "%s" msgstr "Terdapat kesalahan programmable dalam berkas konfigurasi anda:\n\n%s" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "Nilai konfigurasi `source_suffix 'mengharapkan sebuah string, daftar string, atau kamus. Tetapi `%r' diberikan." -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "Bab %s" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "Gambar. %s" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "Tabel %s" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "Daftar %s" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "Nilai konfigurasi `{name}` harus salah satu dari {candidates}, tapi `{current}` diberikan." -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "Nilai konfigurasi `{name}' memiliki tipe `{current.__name__}'; diharapkan {permitted}." -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "Nilai konfigurasi `{name}` bertipe `{current.__name__}', default menjadi `{default.__name__}'." -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r tidak ditemukan, diabaikan." -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "Event %r sudah ada" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "Nama event tidak dikenal: %s" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" @@ -493,190 +495,342 @@ msgstr "nomor PEP %s tidak valid" msgid "invalid RFC number %s" msgstr "nomor RFC tidak valid %s" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "pengaturan %s.%s terjadi pada tak satupun konfigurasi tema yang dicari" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "opsi tema yang tidak didukung %r diberikan" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "berkas %r pada path tema merupakan berkas zip yang tidak valid atau tidak berisi tema" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "Diinterupsi" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "Kesalahan encoding:" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "Kesalahan rekursi:" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "Terjadi eksepsi:" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "Mohon juga melaporkan hal ini jika sebuah kesalahan pengguna sehingga lain kali perintah salah yang lebih baik dapat disediakan." + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "gambar yang sesuai untuk builder %s tidak ditemukan: %s (%s)" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "gambar yang sesuai untuk builder %s tidak ditemukan: %s" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "membangun [mo]: " -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "menulis keluaran... " -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "semua dari %d berkas po" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "target untuk %d berkas po yang telah ditetapkan" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "target untuk %d berkas po telah usang" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "semua berkas sumber" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "berkas %r yang diberikan di command line tidak berada dalam direktori sumber, mengabaikan" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "%d berkas sumber diberikan di command line" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "target untuk %d berkas sumber yang telah usang" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "membangun [%s]: " -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "mencari berkas yang kini-usang... " -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "%d ditemukan" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "tidak ditemukan apapun" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "lingkungan pengawetan" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "memeriksa konsistensi" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "tidak ada target yang usang." -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "memperbarui lingkungan:" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s ditambahkan, %s diubah, %s dihapus" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "membaca sumber... " -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "docnames yang akan ditulis: %s" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "menyiapkan dokumen" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -685,7 +839,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "entri ToC ganda ditemukan: %s" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "menyalin gambar... " @@ -695,7 +849,7 @@ msgstr "menyalin gambar... " msgid "cannot read image file %r: copying it instead" msgstr "tidak dapat membaca berkas gambar %r: menyalin gambar sebagai gantinya" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -710,28 +864,28 @@ msgstr "tidak dapat menulis berkas gambar %r: %s" msgid "Pillow not found - copying image files" msgstr "Pillow tidak ditemukan - menyalin berkas gambar" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "mimetype yang tidak dikenal untuk %s, mengabaikan" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "menulis %s berkas..." @@ -820,7 +974,7 @@ msgstr "nilai conf \"epub_identifier\" tidak seharusnya kosong untuk EPUB3" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "bilai conf \"version\" tidak seharusnya kosong untuk EPUB3" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "css_file yang salah: %r, mengabaikan" @@ -848,12 +1002,17 @@ msgstr "menulis katalog pesan... " msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "Mencari kesalahan sembarang dalam keluaran di atas atau di %(outdir)s/output.txt" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "tautan rusak: %s (%s)" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "Anchor '%s' tidak ditemukan" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -938,7 +1097,7 @@ msgstr "kesalahan menulis berkas Makefile: %s" msgid "The text files are in %(outdir)s." msgstr "Berkas teks berada di %(outdir)s." -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -964,13 +1123,13 @@ msgstr "berkas info build rusak: %r" msgid "The HTML pages are in %(outdir)s." msgstr "Halaman HTML berada di %(outdir)s." -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "Gagal membaca berkas info build: %r" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -984,144 +1143,149 @@ msgstr "Indeks Umum" msgid "index" msgstr "index" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "berikut" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "sebelum" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "menghasilkan indeks" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "menulis halaman tambahan" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "menyalin berkas yang dapat diunduh... " -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "tidak dapat menyalin berkas yang dapat diunduh %r: %s" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "menyalin file statis" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "tidak dapat menyalin berkas statik %r" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "menyalin berkas tambahan" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "tidak dapat menyalin berkas ekstra %r" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "Gagal menulis berkas info build: %r" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "indeks pencarian tidak dapat dimuat, tapi tidak semua dokumen akan dibangun: indeks akan jadi tidak lengkap." -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "halaman %s sebanding dengan dua pola dalam html_sidebars: %r dan %r" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "kesalahan Unicode terjadi saat render halaman %s. Silakan pastikan semua nilai konfigurasi yang berisi konten non-ASCII adalah string Unicode." -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "Kesalahan terjadi saat render halaman %s.\nAlasan: %r" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "menyisihkan persediaan obyek" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "js_file yang salah: %r, mengabaikan" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "Banyak math_renderers teregistrasi. Namun tidak satu pun math_renderer yang dipilih." -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "math_renderer %r yang tidak diketahui diberikan." -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "entri html_extra_path %r tidak ada" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "entri html_static_path %r tidak ada" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "berkas logo %r tidak ada" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "berkas favicon %r tidak ada" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "Dokumentasi %s %s" @@ -1147,19 +1311,21 @@ msgstr "tidak ditemukan nilai konfigurasi \"latex_documents\"; dokumen tidak aka msgid "\"latex_documents\" config value references unknown document %s" msgstr "nilai konfigurasi \"latex_documents\" mereferensikan dokumen yang tidak dikenal %s" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "Indeks" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "Rilis" @@ -1217,18 +1383,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "Eksepsi terjadi saat membangun, memulai debugger:" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "Diinterupsi" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "markup reST salah:" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "Kesalahan encoding:" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1236,27 +1394,6 @@ msgid "" "the developers." msgstr "Traceback lengkap telah disimpan di %s, bila ingin melaporkan masalah ini kepada developer." -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "Kesalahan rekursi:" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "Terjadi eksepsi:" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "Mohon juga melaporkan hal ini jika sebuah kesalahan pengguna sehingga lain kali perintah salah yang lebih baik dapat disediakan." - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1268,7 +1405,7 @@ msgid "job number should be a positive number" msgstr "job number seharusnya sebuah bilangan positif" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1357,7 +1494,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "define tag: masukkan blok \"only\" dengan TAG" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1368,7 +1505,7 @@ msgstr "opsi output konsol" msgid "increase verbosity (can be repeated)" msgstr "tingkatkan verbosity (dapat diulang)" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "tanpa output pada stdout, hanya peringatan pada stderr" @@ -1650,12 +1787,12 @@ msgstr "Buat Makefile? (y/n)" msgid "Create Windows command file? (y/n)" msgstr "Buat berkas perintah Windows? (y/n)" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "Membuat file %s." -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "File %s sudah ada, lewati." @@ -1764,12 +1901,12 @@ msgstr "gunakan epub" msgid "Extension options" msgstr "Opsi ekstensi" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "aktifkan ekstensi %s" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "aktifkan ekstensi berubah-ubah" @@ -1801,11 +1938,11 @@ msgstr "gunakan mode-make untuk Makefile/make.bat" msgid "do not use make-mode for Makefile/make.bat" msgstr "jangan gunakan make-mode untuk Makefile/make.bat" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "Membuat templat proyek" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "direktori templat untuk berkas templat" @@ -1833,85 +1970,85 @@ msgstr "sphinx-quickstart hanya menghasilkan direktori kosong. Silakan tentukan msgid "Invalid template variable: %s" msgstr "Variabel templat tidak valid: %s" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "Keterangan tidak valid: %s" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "spesifikasi nomor baris di luar kisaran (1-%d): %r" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "Tidak dapat menggunakan kedua opsi \"%s\" dan \"%s\"" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "Berkas yang disertakan %r tidak ditemukan atau gagal membacanya" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "Pengkodean %r yang digunakan untuk membaca file yang disertakan %r tampaknya salah, mencoba berikan opsi :encoding:" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "Objek bernama %r tidak ditemukan disertakan di berkas %r" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "Tidak dapat menggunakan \"lineno-match\" dengan rangkaian \"baris\" yang terpisah" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "Spesifikasi baris %r: tidak ada baris yang ditarik dari berkas %r" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "toctree berisi referensi ke dokumen yang dikecualikan %r" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "toctree berisi referensi ke dokumen yang tidak ada %r" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "Penyusun bagian:" -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "Penyusun modul: " -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "Penulis kode:" -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "Penyusun: " @@ -1919,7 +2056,7 @@ msgstr "Penyusun: " msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1969,7 +2106,7 @@ msgstr "Kutipan [%s] tidak dirujuk." msgid "%s() (built-in function)" msgstr "%s() (fungsi built-in)" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "%s() (method %s)" @@ -1984,7 +2121,7 @@ msgstr "%s() (class)" msgid "%s (global variable or constant)" msgstr "%s (variabel global atau konstan)" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" @@ -1993,52 +2130,52 @@ msgstr "%s (atribut %s)" msgid "Arguments" msgstr "Argumen" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "Throws" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "Kembali" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "Return type" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "%s (module)" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "fungsi" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "method" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "class" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "atribut" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "modul" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2048,7 +2185,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "duplikasi label persamaan %s, misalnya di %s" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "Math_eqref_format tidak valid: %r" @@ -2085,352 +2222,374 @@ msgstr "role" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "Parameter" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "Nilai kembalian" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "anggota" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "variabel" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "macro" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "struct" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "union" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "enum" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "tipe" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "Parameter Templat" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "konsep" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "%s() (di modul %s)" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "%s (di modul %s)" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "%s (variabel built-in)" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "%s (class built-in)" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "%s (class di %s)" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "%s() (method class %s)" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "%s() (method static %s)" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "Indeks Modul Python" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "modul" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "Akan ditinggalkan" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "eksepsi" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "method class" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "method static" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "property" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "lebih dari satu target ditemukan untuk referensi silang %r: %s" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr " (obsolet)" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "Variabel" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "Raises" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "variabel environment; %s" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "Deskripsi opsi salah bentuk %r, seharusnya terlihat seperti \"opt\", \"-opt args\", \"--opt args\", \"/opt args\" atau \"+opt args\"" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "opsi baris perintah" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "Daftar Istilah kata sulit harus didahului dengan baris kosong" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "Daftar istilah kata sulit tidak boleh dipisahkan oleh garis kosong" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "Daftar istilah kata sulit tampaknya salah format, periksa indentasi" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "daftar istilah" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "token grammar" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "label referensi" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "variabel environment" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "opsi program" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "dokumen" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "Indeks Modul" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Pencarian Halaman" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "label rangkap %s, contoh lain dalam %s" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig dinonaktifkan. :numref: diabaikan." -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "tautan tidak memiliki teks: %s" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "numfig_format tidak valid: %s (%r)" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "numfig_format tidak valid: %s" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "label yang tidak ditentukan: %r" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "konfigurasi baru" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "konfigurasi berubah" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "ekstensi berubah" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "membangun lingkungan bukan versi saat ini" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "direktori sumber telah berubah" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "Lingkungan ini tidak kompatibel dengan pembangun yang dipilih, silakan pilih direktori doctree lain." -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "Gagal memindai dokumen dalam %s: %r" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "Domain %r tidak terdaftar" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "dokumen tidak termasuk dalam toctree" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "totree referensikan sendiri ditemukan. Diabaikan" -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "lihat %s" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "lihat juga %s" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "tipe entri indeks tidak dikenal %r" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "Simbol" @@ -2466,17 +2625,17 @@ msgstr "berkas gambar %s tidak dapat dibaca: %s" msgid "download file not readable: %s" msgstr "berkas unduhan tidak dapat dibaca: %s" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "%s sudah diberi nomor bagian (penomoran bersarang toctree?)" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "Akan membuat berkas %s." -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2488,149 +2647,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "\nLihat secara rekursif dalam <MODULE_PATH> untuk modul dan paket Python dan buat \nsatu berkas reST dengan arahan automodule per paket di <OUTPUT_PATH>. \n\n<EXCLUDE_PATTERN> dapat berupa pola berkas dan/atau direktori yang akan \ndikecualikan dari pembuatan. \n\nCatatan: Secara bawaan skrip ini tidak akan menimpa berkas yang sudah dibuat." -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "jalur ke modul ke dokumen" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "Berkas gaya-fnmatch dan/atau pola direktori untuk dikecualikan dari pembuatan" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "direktori untuk menempatkan semua keluaran" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "kedalaman maksimum submodul untuk ditampilkan di TOC (bawaan: 4)" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "menimpa file yang ada" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "ikuti tautan simbolik. Berdaya bila digabungkan dengan collective.recipe.omelette." -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "operasikan skrip tanpa membuat file" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "letakkan dokumentasi untuk setiap modul di halamannya sendiri" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "termasuk modul \"_private\"" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "nama file daftar isi (bawaan: modul)" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "jangan membuat berkas daftar isi" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "jangan membuat judul untuk paket modul/paket (mis. ketika docstrings sudah berisi hal tersebut)" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "letakkan dokumentasi modul sebelum dokumentasi submodul" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "menafsirkan jalur modul sesuai dengan spesifikasi namespaces implisit PEP-0420" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "akhiran berkas (bawaan: rst)" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "menghasilkan proyek penuh dengan sphinx-quickstart" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "menambahkan module_path ke sys.path, digunakan ketika --full diberikan" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "nama proyek (bawaan: nama modul utama)" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "penulis-(penulis) proyek, digunakan ketika --full diberikan" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "versi proyek, digunakan ketika --full diberikan" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "rilis proyek, digunakan ketika --full diberikan, bawaan ke --doc-version" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "opsi ekstensi" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "%s bukan direktori." +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "regex tidak valid %r dalam %s" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "modul %s tidak dapat diimpor: %s" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "Pengujian cakupan di sumber selesai, lihat hasilnya dalam %(outdir)spython.txt." -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "%r regex tidak valid di coverage_c_regexes" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "modul %s tidak dapat diimpor: %s" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2671,7 +2852,7 @@ msgstr "tidak ada kode/keluaran dalam blok %s pada %s:%s" msgid "ignoring invalid doctest code: %r" msgstr "mengabaikan kode dokumen yang tidak valid: %r" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "====================== durasi membaca paling lambat =======================" @@ -2747,7 +2928,7 @@ msgstr "[graph: %s]" msgid "[graph]" msgstr "[graph]" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2755,7 +2936,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2765,99 +2946,39 @@ msgid "" "%r" msgstr "convert keluar dengan kesalahan: \n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "Perintah LaTeX %r tidak dapat dioperasikan (diperlukan untuk tampilan matematika), periksa pengaturan imgmath_latex" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "%s perintah %r tidak dapat dioperasikan (diperlukan untuk tampilan matematika), periksa pengaturan imgmath_%s" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "tampilkan latex %r: %s" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "inline latex %r: %s" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "pengimpanan intersphinx telah dipindahkan: %s -> %s" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "memuat penyimpanan intersphinx dari %s..." - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "mengalami beberapa masalah dengan beberapa inventaris, tetapi mereka memiliki alternatif berfungsi:" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "gagal mencapai salah satu inventaris dengan masalah berikut:" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "(di %s v%s)" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "(dalam %s)" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "pengenal intersphinx %r bukan string. Diabaikan" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[sumber]" @@ -3033,23 +3154,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3057,46 +3178,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "gagal mengurai nama %s" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "gagal mengimpor objek %s" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[autosummary] menghasilkan autosummary untuk: %s" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "[autosummary] menulis ke %s" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3104,7 +3231,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3119,36 +3246,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\nHasilkan ReStructuredText menggunakan pengarahan autosummary.\n\nsphinx-autogen adalah tampilan depan ke sphinx.ext.autosummary.generate. Ini menghasilkan \nfile reStructuredText dari pengarahan autosummary yang terkandung dalam \nfile input yang diberikan.\n\nFormat pengarahan autosummary didokumentasikan dalam \nmodul ``sphinx.ext.autosummary`` dan dapat dibaca menggunakan::\n\n pydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "berkas sumber untuk menghasilkan file rST untuk" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "direktori untuk menempatkan semua keluaran dalam" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "akhiran bawaan untuk berkas (bawaan: %(default)s)" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "direktori templat ubahsuai (bawaan: %(default)s)" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "mendokumentasikan anggota yang diimpor (bawaan: %(default)s)" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "pengenal intersphinx %r bukan string. Diabaikan" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "mengalami beberapa masalah dengan beberapa inventaris, tetapi mereka memiliki alternatif berfungsi:" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "gagal mencapai salah satu inventaris dengan masalah berikut:" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "pengimpanan intersphinx telah dipindahkan: %s -> %s" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "(di %s v%s)" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "(dalam %s)" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "Argumen Kata Kunci" @@ -3205,65 +3397,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "Pehatian" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "Hati-hati" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "Bahaya" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "Kesalahan" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "Petunjuk" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "Penting" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "Catatan" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "Lihat juga" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "Tip" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "Peringatan" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "lanjutan dari halaman sebelumnya" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "berlanjut ke halaman berikutnya" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "Non-abjad" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "Angka" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "laman" @@ -3272,7 +3464,7 @@ msgstr "laman" msgid "Table of Contents" msgstr "Daftar Isi" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Pencarian" @@ -3330,12 +3522,12 @@ msgstr "akses cepat semua modul" msgid "all functions, classes, terms" msgstr "semua fungsi, class, term" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" -msgstr "Index – %(key)s" +msgid "Index – %(key)s" +msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3354,31 +3546,31 @@ msgstr "dapat menjadi besar" msgid "Navigation" msgstr "Navigasi" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "Pencarian dalam %(docstitle)s" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "Tentang dokumen ini" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "Hak Cipta" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Terakhir diperbarui pada %(last_updated)s." -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3481,7 +3673,7 @@ msgstr "Pencarian" msgid "Preparing search..." msgstr "Penyiapkan pencarian..." -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr ", di" @@ -3490,11 +3682,11 @@ msgid "Hide Search Matches" msgstr "Sembunyikan Hasil Pencarian" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "Tutup sidebar" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "Buka sidebar" @@ -3502,26 +3694,26 @@ msgstr "Buka sidebar" msgid "Contents" msgstr "Konten" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "4 kolom berdasarkan indeks ditemukan. Ini mungkin bug ekstensi yang Anda gunakan: %r" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "Catatan kaki [%s] tidak dirujuk." -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "Catatan kaki [#] tidak dirujuk." @@ -3570,17 +3762,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "Tidak dapat mengambil gambar jarak jauh: %s [%d]" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "Tidak dapat mengambil gambar jarak jauh: %s [%s]" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "Format gambar tidak dikenal: %s..." @@ -3590,11 +3782,11 @@ msgstr "Format gambar tidak dikenal: %s..." msgid "undecodable source characters, replacing with \"?\": %r" msgstr "karakter sumber undecodable, menggantinya dengan \"?\": %r" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "dilewati" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "gagal" @@ -3605,12 +3797,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "tipe simpul tidak dikenal: %r" @@ -3637,18 +3829,23 @@ msgid "" "it directly: %s" msgstr "Format tanggal tidak valid. Kutip string dengan kutipan tunggal jika Anda ingin menampilkannya secara langsung: %s" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "toctree berisi ref ke berkas yang tidak ada %r" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "pengecualian saat mengevaluasi hanya ekspresi pengarahan: %s" @@ -3658,45 +3855,50 @@ msgstr "pengecualian saat mengevaluasi hanya ekspresi pengarahan: %s" msgid "default role %s not found" msgstr "peran bawaan %s tidak ditemukan" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "numfig_format tidak didefinisikan untuk %s" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "Tidak ada ID apa pun yang ditugaskan untuk simpul %s" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "Tidak dapat memperoleh ukuran gambar. :scale: option diabaikan." @@ -3709,31 +3911,36 @@ msgstr "%r toplevel_sectioning tidak diketahui untuk kelas %r" msgid "too large :maxdepth:, ignored." msgstr ":maxdepth: terlalu besar, diabaikan." -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "judul dokumen bukan simpul Text tunggal" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "simpul judul tidak ditemui dalam bagian, topik, tabel, peringatan atau sisi bilah" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "Catatan kaki" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "opsi tabularcolumns dan :widths: opsi diberikan bersamaan. :widths: diabaikan." -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "unit dimensi %s tidak valid. Diabaikan" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "entri indeks tidak diketahui ditemukan tipe %s" @@ -3747,11 +3954,11 @@ msgstr "[gambar: %s]" msgid "[image]" msgstr "[gambar]" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "keterangan tidak di dalam gambar." -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "tipe simpul tidak diterapkan: %r" diff --git a/sphinx/locale/is/LC_MESSAGES/sphinx.js b/sphinx/locale/is/LC_MESSAGES/sphinx.js index 103a070..744782b 100644 --- a/sphinx/locale/is/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/is/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "", "Hide Search Matches": "Fela leitarni\u00f0urst\u00f6\u00f0ur", "Index": "Yfirlit", - "Index – %(key)s": "", + "Index – %(key)s": "", "Index pages by letter": "", "Indices and tables:": "Atri\u00f0askr\u00e1 og t\u00f6flur:", "Last updated on %(last_updated)s.": "", diff --git a/sphinx/locale/is/LC_MESSAGES/sphinx.mo b/sphinx/locale/is/LC_MESSAGES/sphinx.mo index cb66b27..39fe744 100644 Binary files a/sphinx/locale/is/LC_MESSAGES/sphinx.mo and b/sphinx/locale/is/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/is/LC_MESSAGES/sphinx.po b/sphinx/locale/is/LC_MESSAGES/sphinx.po index 35c3a11..db0b433 100644 --- a/sphinx/locale/is/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/is/LC_MESSAGES/sphinx.po @@ -8,134 +8,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Tryggvi Kalman <tkj3@hi.is>, 2021\n" "Language-Team: Icelandic (http://app.transifex.com/sphinx-doc/sphinx-1/language/is/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,75 +156,77 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -232,78 +234,78 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "Kafli %s" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "Mynd %s" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "Tafla %s" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "Listi %s" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" @@ -488,190 +490,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -680,7 +834,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" @@ -690,7 +844,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -705,28 +859,28 @@ msgstr "" msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "" @@ -815,7 +969,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -843,12 +997,17 @@ msgstr "" msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -933,7 +1092,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -959,13 +1118,13 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -979,144 +1138,149 @@ msgstr "Almennt yfirlit" msgid "index" msgstr "yfirlit" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "næsta" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "fyrri" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "" @@ -1142,19 +1306,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "Yfirlit" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "Útgáfa" @@ -1212,18 +1378,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1231,27 +1389,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1263,7 +1400,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1352,7 +1489,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1363,7 +1500,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1645,12 +1782,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1759,12 +1896,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1796,11 +1933,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1828,85 +1965,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "" @@ -1914,7 +2051,7 @@ msgstr "" msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1964,7 +2101,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1979,7 +2116,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -1988,52 +2125,52 @@ msgstr "" msgid "Arguments" msgstr "" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2043,7 +2180,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2080,352 +2217,374 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr "" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Leitarsíða" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "sjá %s" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "sjá einnig %s" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "" @@ -2461,17 +2620,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2483,149 +2642,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2666,7 +2847,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2742,7 +2923,7 @@ msgstr "" msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2750,7 +2931,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2760,99 +2941,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" @@ -3028,23 +3149,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3052,46 +3173,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3099,7 +3226,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3114,36 +3241,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" @@ -3200,65 +3392,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "Athugið" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "Aðgát" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "Hætta" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "Villa" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "Ábending" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "Mikilvægt" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "Athugasemd" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "Sjá einnig" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "Ábending" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "Aðvörun" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "framhald frá fyrri síðu" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "framhald á næstu síðu" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "" @@ -3267,7 +3459,7 @@ msgstr "" msgid "Table of Contents" msgstr "Efnisyfirlit" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Leit" @@ -3325,12 +3517,12 @@ msgstr "" msgid "all functions, classes, terms" msgstr "" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" +msgid "Index – %(key)s" msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3349,31 +3541,31 @@ msgstr "" msgid "Navigation" msgstr "" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "Leita í %(docstitle)s" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3476,7 +3668,7 @@ msgstr "Leitar" msgid "Preparing search..." msgstr "Undirbýr leit..." -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr "" @@ -3485,11 +3677,11 @@ msgid "Hide Search Matches" msgstr "Fela leitarniðurstöður" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "" @@ -3497,26 +3689,26 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "" @@ -3565,17 +3757,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3585,11 +3777,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "" @@ -3600,12 +3792,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3632,18 +3824,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3653,45 +3850,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3704,31 +3906,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3742,11 +3949,11 @@ msgstr "[mynd: %s]" msgid "[image]" msgstr "[mynd]" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.js b/sphinx/locale/it/LC_MESSAGES/sphinx.js index 7aeef34..2520157 100644 --- a/sphinx/locale/it/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/it/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "Vai", "Hide Search Matches": "Nascondi i risultati della ricerca", "Index": "Indice", - "Index – %(key)s": "Indice – %(key)s", + "Index – %(key)s": "", "Index pages by letter": "Indice delle pagine per lettera", "Indices and tables:": "Indici e tabelle:", "Last updated on %(last_updated)s.": "Ultimo aggiornamento %(last_updated)s.", diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.mo b/sphinx/locale/it/LC_MESSAGES/sphinx.mo index 71f07bd..1c481e2 100644 Binary files a/sphinx/locale/it/LC_MESSAGES/sphinx.mo and b/sphinx/locale/it/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.po b/sphinx/locale/it/LC_MESSAGES/sphinx.po index d795eeb..5413663 100644 --- a/sphinx/locale/it/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/it/LC_MESSAGES/sphinx.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the Sphinx project. # # Translators: +# Alessandro Cucci <alessandro.cucci@gmail.com>, 2024 # Antonari Palmio, 2022 # Denis Cappellin <denis@cappell.in>, 2018 # Paolo Cavallini <cavallini@faunalia.it>, 2013-2017 @@ -13,134 +14,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" -"Last-Translator: Antonari Palmio, 2022\n" +"Last-Translator: Alessandro Cucci <alessandro.cucci@gmail.com>, 2024\n" "Language-Team: Italian (http://app.transifex.com/sphinx-doc/sphinx-1/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: it\n" "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "Impossibile trovare la cartella sorgente ( %s )" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "La cartella di output (%s) non è una cartella" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "La cartella sorgente e la cartella di destinazione non possono essere identiche" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "Sto eseguendo Sphinx v%s" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Questo progetto necessita almeno di Sphinx v%s per cui non può essere creato con la versione attuale." -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "sto creando la cartella di output" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "caricamento traduzioni [%s]... " -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "fatto" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "terminato con problemi" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -148,12 +149,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -161,75 +162,77 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -237,78 +240,78 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "Sezione %s" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "Fig. %s" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "Tabella %s" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "Listato %s" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "il primary_domain %r non è stato trovato, tralasciato." -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" @@ -493,190 +496,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "Opzioni" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -685,7 +840,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" @@ -695,7 +850,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -710,28 +865,28 @@ msgstr "" msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "" @@ -820,7 +975,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -848,12 +1003,17 @@ msgstr "" msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -938,7 +1098,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -964,13 +1124,13 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -984,147 +1144,152 @@ msgstr "Indice generale" msgid "index" msgstr "indice" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "successivo" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "precedente" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" -msgstr "%s %s documentazione" +msgstr "Documentazione %s %s " #: sphinx/builders/latex/__init__.py:115 #, python-format @@ -1147,19 +1312,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "Indice" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "Release" @@ -1217,18 +1384,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1236,27 +1395,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1268,7 +1406,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1357,7 +1495,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1368,7 +1506,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1650,12 +1788,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1764,12 +1902,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1801,11 +1939,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" -msgstr "" +msgstr "Template di progetto" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1833,85 +1971,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "Didascalia non valida: %s" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "Impossibile usare contemporaneamente le opzioni \"%s\" e \"%s\"" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "Autore della sezione: " -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "Autore del modulo: " -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "Autore del codice: " -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "Autore: " @@ -1919,7 +2057,7 @@ msgstr "Autore: " msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1969,7 +2107,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (funzione built-in)" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metodo)" @@ -1984,7 +2122,7 @@ msgstr "%s() (classe)" msgid "%s (global variable or constant)" msgstr "%s (variabile globale o costante)" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attributo)" @@ -1993,52 +2131,52 @@ msgstr "%s (%s attributo)" msgid "Arguments" msgstr "Parametri" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "Solleva" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "Ritorna" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "Tipo di ritorno" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "%s (modulo)" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "funzione" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "metodo" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "classe" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "dati" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "attributo" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "modulo" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2048,7 +2186,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "etichetta dell'equazione %s duplicata, altra istanza in %s" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2085,352 +2223,374 @@ msgstr "ruolo" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "Parametri" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" -msgstr "" +msgstr "Valori restituiti" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "membro" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "variabile" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "macro" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "enum" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "enumeratore" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "tipo" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "Parametri del modello" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "concetto" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "%s() (nel modulo %s)" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "%s (nel modulo %s)" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "%s (variabile built-in)" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "%s (classe built-in)" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "%s (classe in %s)" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s metodo della classe)" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s metodo statico)" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "Indice del modulo Python" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "moduli" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "Deprecato" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "eccezione" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "metodo della classe" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "metodo statico" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr " (deprecato)" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "Variabili" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "Solleva" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "variabile d'ambiente, %s" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "voce del glossario" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "elemento grammaticale" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "etichetta di riferimento" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "variabile d'ambiente" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "opzione del programma" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "documento" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "Indice dei moduli" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Cerca" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "vedi %s" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "vedi anche %s" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "Simboli" @@ -2466,17 +2626,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2488,149 +2648,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2671,7 +2853,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2747,7 +2929,7 @@ msgstr "[grafico: %s]" msgid "[graph]" msgstr "[grafico]" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2755,7 +2937,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2765,99 +2947,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "(in %s v%s)" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[sorgente]" @@ -3033,23 +3155,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3057,46 +3179,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3104,7 +3232,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3119,43 +3247,108 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "(in %s v%s)" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "Argomenti parole chiave" #: sphinx/ext/napoleon/docstring.py:682 msgid "Example" -msgstr "" +msgstr "Esempio" #: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" @@ -3163,7 +3356,7 @@ msgstr "Esempi" #: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" -msgstr "" +msgstr "Note" #: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" @@ -3205,65 +3398,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "Attenzione" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "Attenzione" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "Pericolo" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "Errore" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "Suggerimento" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "Importante" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "Nota" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "Vedi anche" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "Suggerimento" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "Avvertimento" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "continua dalla pagina precedente" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "pagina" @@ -3272,7 +3465,7 @@ msgstr "pagina" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Cerca" @@ -3330,12 +3523,12 @@ msgstr "accesso veloce ai moduli" msgid "all functions, classes, terms" msgstr "tutte le funzioni, classi e moduli" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" -msgstr "Indice – %(key)s" +msgid "Index – %(key)s" +msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3354,31 +3547,31 @@ msgstr "può essere enorme" msgid "Navigation" msgstr "Navigazione" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "Cerca in %(docstitle)s" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "A proposito di questi documenti" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "Copyright" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Ultimo aggiornamento %(last_updated)s." -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3481,7 +3674,7 @@ msgstr "Cerca" msgid "Preparing search..." msgstr "Preparo la ricerca..." -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr ", in " @@ -3490,11 +3683,11 @@ msgid "Hide Search Matches" msgstr "Nascondi i risultati della ricerca" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "Comprimi la barra laterale" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "Espandi la barra laterale" @@ -3502,26 +3695,26 @@ msgstr "Espandi la barra laterale" msgid "Contents" msgstr "Contenuti" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "" @@ -3570,17 +3763,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3590,11 +3783,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "" @@ -3605,12 +3798,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3637,18 +3830,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3658,45 +3856,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3709,31 +3912,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "Note a piè di pagina" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3747,11 +3955,11 @@ msgstr "[immagine: %s]" msgid "[image]" msgstr "[immagine]" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.js b/sphinx/locale/ja/LC_MESSAGES/sphinx.js index 817b128..df5af81 100644 --- a/sphinx/locale/ja/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/ja/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "\u691c\u7d22", "Hide Search Matches": "\u691c\u7d22\u7d50\u679c\u3092\u96a0\u3059", "Index": "\u7d22\u5f15", - "Index – %(key)s": "\u7d22\u5f15 – %(key)s", + "Index – %(key)s": "", "Index pages by letter": "\u982d\u6587\u5b57\u5225\u7d22\u5f15", "Indices and tables:": "\u7d22\u5f15\u3068\u8868\u4e00\u89a7:", "Last updated on %(last_updated)s.": "\u6700\u7d42\u66f4\u65b0: %(last_updated)s", diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.mo b/sphinx/locale/ja/LC_MESSAGES/sphinx.mo index fe8da59..139c381 100644 Binary files a/sphinx/locale/ja/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ja/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.po b/sphinx/locale/ja/LC_MESSAGES/sphinx.po index 50668b6..eaef776 100644 --- a/sphinx/locale/ja/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ja/LC_MESSAGES/sphinx.po @@ -24,134 +24,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Tetsuo Koyama <tkoyama010@gmail.com>, 2020-2023\n" "Language-Team: Japanese (http://app.transifex.com/sphinx-doc/sphinx-1/language/ja/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "ソースディレクトリが存在しません (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "出力先ディレクトリ (%s) はディレクトリではありません" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "出力先ディレクトリにはソースディレクトリと異なるディレクトリを指定してください" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "Sphinx v%s を実行中" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "このプロジェクトはSphinx v%s以降のバージョンでなければビルドできません。" -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "出力先ディレクトリを作成しています" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "拡張機能のセットアップ中 %s:" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "conf.pyにある'setup'はPythonのcallableではありません。定義を修正してcallableである関数にしてください。これはconf.pyがSphinx拡張として動作するのに必要です。" -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "翻訳カタログをロードしています [%s]... " -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "完了" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "翻訳が用意されていません" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "保存された環境データを読み込み中" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "失敗: %s" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "ビルダーが選択されていないので、デフォルトの html を使用します" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "成功" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "完了(問題あり)" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "警告%s、%sをビルドします(警告はエラーとして扱われます)。" -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "警告%s、%sをビルドします(警告はエラーとして扱われます)。" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "ビルド %s, %s warning." -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "ビルド %s, %s 警告." -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "ビルド %s." -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "nodeクラス %r は既に登録されています。visitor関数は上書きされます" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "ディレクティブ %r は既に登録されています。ディレクティブは上書きされます" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "ロール %r は既に登録されています。ロールは上書きされます" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -159,12 +159,12 @@ msgid "" "explicit" msgstr "拡張 %s は並列読み込みが可能かどうかを宣言していないため、おそらく並列読み込みに対応していないでしょう。拡張の実装者に連絡して、明示してもらってください。" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "%s拡張は並列読み込みに対して安全ではありません" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -172,75 +172,77 @@ msgid "" "explicit" msgstr "拡張 %s は並列書き込みが可能かどうかを宣言していないため、おそらく並列書き込みに対応していないでしょう。拡張の実装者に連絡して、明示してもらってください。" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "%s拡張は並列書き込みに対して安全ではありません" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "直列で %sします" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "conf.py が設定ディレクトリに存在しません (%s)" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "無効な設定値が見つかりました: 'language = None' 。設定を有効な言語コードに更新してください。 'en' (英語)にフォールバックしています。" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "設定値の辞書 %r は上書きないため無視されました (%r を使って個別に設定してください)" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "%r は設定値 %r の正しい値ではないため無視されました" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "%r は正しい型ではないため無視されました" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "不明な設定値 %r による上書きは無視されました" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "設定値 %r は既に登録済みです" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "設定ファイルに文法エラーが見つかりました: %s\n" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "設定ファイル(あるいはインポートしたどれかのモジュール)がsys.exit()を呼びました" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -248,78 +250,78 @@ msgid "" "%s" msgstr "設定ファイルにプログラム上のエラーがあります:\n\n%s" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "設定値 `source_suffix' に `%r' が指定されましたが、文字列、文字列のリスト、辞書、のいずれかを指定してください。" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "%s 章" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "図 %s" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "表 %s" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "リスト %s" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr " 設定値 `{name}` に `{current}` が指定されましたが、 {candidates} のいずれかを指定してください。" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "設定値 `{name}' に `{current.__name__}' 型が指定されていますが、 {permitted} 型を指定してください。" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "設定値 `{name}' に `{current.__name__}' 型が指定されています。デフォルト値は `{default.__name__}' です。" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r が見つかりません。無視します。" -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "v2.0以降、Sphinxはデフォルトで \"index \" をroot_docとして使用しています。conf.pyに \"root_doc = 'contents'\" を追加してください。" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "イベント %r はすでに登録されています" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "不明なイベント名: %s" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "イベント %r のハンドラ %r で例外が発生しました。" @@ -504,190 +506,342 @@ msgstr "無効なPEP番号 %s" msgid "invalid RFC number %s" msgstr "無効なRFC番号 %s" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "設定 %s.%s がテーマ設定にありません" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "サポートされていないテーマオプション %r が指定されました" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "テーマパス上のファイル %r は正しいzipファイルではないか、テーマを含んでいません" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "オプション" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "割り込まれました!" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "エンコードエラー:" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "再起呼び出しエラー:" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "これは、非常に大きなソースファイルや深くネストされたソースファイルで発生する可能性があります。conf.py で、Python のデフォルトの再帰回数制限である 1000 を、例えば次のように慎重に増やすことができます: " + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "例外が発生しました" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "次期バージョンでのエラーメッセージ改善のために、ユーザーエラーの場合にも報告してください。" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "%sビルダー向けの画像形式が見つかりません: %s (%s)" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "%sビルダー向けの画像形式が見つかりません: %s" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "ビルド中 [mo]: " -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "出力中..." -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "全%d件のpoファイル" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "指定された %d 件のpoファイル" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "更新された %d 件のpoファイル" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "全てのソースファイル" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "コマンドラインに指定されたファイル %r がないため, " -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "コマンドラインに指定されたファイル %r はソースディレクトリ以下にないため無視されます" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "コマンドラインで指定された%d件のソースファイル" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "更新された %d 件のソースファイル" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "ビルド中 [%s]: " -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "更新されたファイルを探しています... " -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "%d 件見つかりました" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "見つかりませんでした" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "環境データを保存中" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "整合性をチェック中" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "更新が必要な対象はありませんでした" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "環境データを更新中" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s 件追加, %s 件更新, %s 件削除" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "ソースを読み込み中..." -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "書き込むdocname: %s" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "ドキュメントの出力準備中" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -696,7 +850,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "Tocエントリーが重複しています: %s" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "画像をコピー中... " @@ -706,7 +860,7 @@ msgstr "画像をコピー中... " msgid "cannot read image file %r: copying it instead" msgstr "画像ファイル %r をPILで読み込めないため、そのままコピーします" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -721,28 +875,28 @@ msgstr "画像ファイル %r を書き込めません: %s" msgid "Pillow not found - copying image files" msgstr "Pillowがインストールされていません。代わりに画像をコピーします" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "mimetype を書き込み中..." -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "META-INF/container.xml を書き込み中..." -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "content.opf を書き込み中..." -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "不明なmimetype %sのため無視します" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "tox.ncx を書き込み中..." -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "ファイル %s を書き込み中..." @@ -831,7 +985,7 @@ msgstr "EPUB3出力では設定値 \"epub_identifier\" の指定が必要です" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "EPUB3出力では設定値 \"version\" が必要です" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "無効な css_file %r は無視されました" @@ -859,12 +1013,17 @@ msgstr "メッセージカタログを出力中... " msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "上記の出力結果、または %(outdir)s /output.txt を見てエラーを確認してください" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "リンクが切れています: %s (%s)" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "アンカー '%s' が見つかりません" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "linkcheck_allowed_redirects 内の正規表現のコンパイルに失敗しました: %r %s" @@ -949,7 +1108,7 @@ msgstr "Makefile の書き込みエラー: %s" msgid "The text files are in %(outdir)s." msgstr "テキストファイルは%(outdir)sにあります。" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -975,13 +1134,13 @@ msgstr "build info ファイルが壊れています: %r" msgid "The HTML pages are in %(outdir)s." msgstr "HTMLページは%(outdir)sにあります。" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "build info ファイルの読み込みに失敗しました: %r" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -995,144 +1154,149 @@ msgstr "総合索引" msgid "index" msgstr "索引" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "次へ" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "前へ" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "索引を生成中" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "追加のページを出力中" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "ダウンロードファイルをコピー中..." -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "ダウンロードファイル %r をコピーできません: %s" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "html_static_file 内のファイルのコピーに失敗しました: %s: %r" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "静的ファイルをコピー中" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "静的ファイル %r をコピーできません" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "extraファイルをコピー中" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "extraファイル %r をコピーできませんでした" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "build info ファイル %r の出力に失敗しました" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "検索インデックスを読み込めず、ドキュメントビルドの一部が不完全です。" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "ページ %s がhtml_sidebarsの複数のパターンに一致しました: %r と %r" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "ページ%sの読み込み中にUnicodeエラーが発生しました。非アスキー文字を含む設定値は全てUnicode文字列にしてください。" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "%sページのレンダリング中にエラーが発生しました。\n理由: %r " -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "オブジェクト インベントリを出力" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "%s の検索インデックスを出力" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "無効な js_file %r は無視されました" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "複数の math_renderer が登録されています。しかし math_renderer は選択されていません。" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "不明な math_renderer %r が指定されました。" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "html_extra_path %r が見つかりません" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "html_extra_path %r がoutdir内に配置されます" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "html_static_path %r が見つかりません" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "html_static_path %r がoutdir内に配置されます" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "ロゴファイル %r がありません" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "favicon ファイル %r がありません" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "%s %s ドキュメント" @@ -1158,19 +1322,21 @@ msgstr "設定値 \"latex_documents\" が見つかりません。ドキュメン msgid "\"latex_documents\" config value references unknown document %s" msgstr "設定値 \"latex_documents\" は、不明なドキュメント %s を参照しています" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "索引" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "リリース" @@ -1228,18 +1394,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "ビルド中に例外が発生しました。デバッガを起動します:" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "割り込まれました!" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "reST マークアップエラー:" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "エンコードエラー:" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1247,27 +1405,6 @@ msgid "" "the developers." msgstr "完全なトレースバックを%sに保存しました。問題を開発者に報告するときに添付してください。" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "再起呼び出しエラー:" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "これは、非常に大きなソースファイルや深くネストされたソースファイルで発生する可能性があります。conf.py で、Python のデフォルトの再帰回数制限である 1000 を、例えば次のように慎重に増やすことができます: " - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "例外が発生しました" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "次期バージョンでのエラーメッセージ改善のために、ユーザーエラーの場合にも報告してください。" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1279,7 +1416,7 @@ msgid "job number should be a positive number" msgstr "ジョブ番号は正数でなければなりません" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "詳しくは、<https://www.sphinx-doc.org/>を見てください。" @@ -1368,7 +1505,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "定義タグ: TAG ブロック\"のみ\"含む" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1379,7 +1516,7 @@ msgstr "コンソール出力オプション" msgid "increase verbosity (can be repeated)" msgstr "精度の増加(繰り返し可能)" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "標準出力には出力せず、標準エラー出力に警告を出すのみ" @@ -1661,12 +1798,12 @@ msgstr "Makefile を作成しますか? (y/n)" msgid "Create Windows command file? (y/n)" msgstr "Windows コマンドファイルを作成しますか?(y/n)" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "ファイル %s を作成しています。" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "ファイル %s は既に存在しますのでスキップします。" @@ -1775,12 +1912,12 @@ msgstr "epubを利用する" msgid "Extension options" msgstr "拡張オプション" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "%s 拡張を有効にする" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "任意の拡張を有効にする" @@ -1812,11 +1949,11 @@ msgstr "Makefile / make.bat 向けに make-mode を使う" msgid "do not use make-mode for Makefile/make.bat" msgstr "Makefile / make.bat 向けに make-mode を使わないでください。" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "プロジェクトテンプレート" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "テンプレートファイルのテンプレートディレクトリ" @@ -1844,85 +1981,85 @@ msgstr "sphinx-quickstart は空のディレクトリにのみ生成します。 msgid "Invalid template variable: %s" msgstr "無効なテンプレート変数: %s" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "デデントによる空白の除去" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "不正な caption です: %s" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "行番号の指定が範囲外です (1-%d): %r" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "\"%s\" と \"%s\" のオプションは同時に使用できません" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "インクルードファイル %r が見つからないか読み込めません" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "エンコーディング %r はインクルードファイル %r の読み込みに適さないようです。:encoding: オプションを追加してみてください" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "%r という名前のオブジェクトがインクルードファイル %r 内に見つかりません" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr " \"lineno-match\" は不連続な \"lines\" に対して使用できません" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "指定された %r に一致する行がインクルードファイル %r にありませんでした" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "toctree グローブ・パターン %r はどのドキュメントにもマッチしませんでした。" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "toctree に除外したドキュメントへの参照が含まれています %r" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "toctree に存在しないドキュメントへの参照が含まれています %r" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "toctree で重複したエントリが見つかりました: %s" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "この節の作者: " -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "モジュールの作者: " -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "コードの作者: " -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "作者: " @@ -1930,7 +2067,7 @@ msgstr "作者: " msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1980,7 +2117,7 @@ msgstr "引用 [%s] は参照されていません。" msgid "%s() (built-in function)" msgstr "%s() (組み込み関数)" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s のメソッド)" @@ -1995,7 +2132,7 @@ msgstr "%s() (クラス)" msgid "%s (global variable or constant)" msgstr "%s (グローバル変数または定数)" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s の属性)" @@ -2004,52 +2141,52 @@ msgstr "%s (%s の属性)" msgid "Arguments" msgstr "引数" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "例外" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "戻り値" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "戻り値の型" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "%s (モジュール)" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "の関数" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "メソッド" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "クラス" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "データ" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "の属性" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "モジュール" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "%s の記述 %s はすでに %s で %s が使われています" @@ -2059,7 +2196,7 @@ msgstr "%s の記述 %s はすでに %s で %s が使われています" msgid "duplicate label of equation %s, other instance in %s" msgstr "数式 %s のラベルはすでに %s で使われています" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "無効な math_eqref_format: %r" @@ -2096,352 +2233,374 @@ msgstr "ロール" msgid "duplicate description of %s %s, other instance in %s" msgstr "%s の記述 %s はすでに %s で使われています" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "%s (C %s)" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "パラメータ" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "戻り値" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "のメンバ変数" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "変数" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "のマクロ" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "struct" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "union" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "列挙型" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "のデータ型" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "関数パラメータ" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "テンプレートパラメータ" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "コンセプト" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "テンプレート・パラメータ" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s モジュール)" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "%s (%s モジュール)" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "%s (組み込み変数)" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "%s (組み込みクラス)" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "%s (%s のクラス)" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s のクラスメソッド)" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s の静的メソッド)" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "%s (%s のプロパティ)" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "Pythonモジュール索引" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "モジュール" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "非推奨" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "例外" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "クラスメソッド" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "の静的メソッド" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "プロパティ" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "相互参照 %r に複数のターゲットが見つかりました: %s" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr " (非推奨)" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "変数" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "例外" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "環境変数; %s" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "不正なオプションの説明 %r は、\"opt\"、\"-opt args\"、\"--opt args\"、\"/opt args\" または \"+opt args\" のようになります。" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "%s コマンドラインオプション" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "コマンドラインオプション" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "用語集の前に空行が必要です" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "用語集の用語は空行で区切ってはいけません" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "用語集のフォーマットが間違っているようです。インデントを確認してください" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "用語集の項目" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "文法トークン" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "参照ラベル" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "環境変数" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "プログラムオプション" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "document" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "モジュール索引" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "検索ページ" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "ラベル %s はすでに %s で使われています" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "%s の記述 %s はすでに %s で使われています" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig は無効です。:numref: は無視されます。" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "クロスリファレンスの作成に失敗しました。番号が割り当てられていません: %s" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "リンクにキャプションがありません: %s" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "無効な numfig_format: %s (%r)" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "無効な numfig_format: %s" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "新しい設定" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "変更された設定" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "変更された拡張" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "ビルド環境のバージョンが最新ではありません" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "ソースディレクトリが変更されました" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "この環境は選択したビルダーと互換性がありません。別の doctree ディレクトリーを選択してください。" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "%s のドキュメントをスキャンできませんでした: %r " -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "ドメイン %r はまだ登録されていません" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "ドキュメントはどの toctree にも含まれていません" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "自己参照している toctree が見つかりました。無視します。" -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "%sを参照" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "%sも参照" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "不明なインデックスエントリタイプ %r" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "記号" @@ -2477,17 +2636,17 @@ msgstr "画像ファイル %s が読み込めません: %s" msgid "download file not readable: %s" msgstr "ダウンロードファイルが読み込めません: %s" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "%s はすでにセクション番号が割り当てられています (入れ子になった番号の toctree ?)" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "ファイル %s を作成したものとします。" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2499,149 +2658,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "\n<MODULE_PATH> 内を再帰的に調べてPython のモジュールとパッケージ、\n後は1つのreST ファイルを <OUTPUT_PATH> 内にあるパッケージ毎の automodule ディレクティブに作成します。\n\n<EXCLUDE_PATTERN> は、ファイル、またはディレクトリ、または両方のパターンを\n生成処理から除外することができます。\n\n注:デフォルトでは、このスクリプトはすでに作成されているファイルを上書きしません。" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "ドキュメントへのモジュールパス" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "生成処理から除外するための、ファイル、ディレクトリ、または両方のパターンを記した fnmatch-style 形式" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "すべての生成データを配置するディレクトリ" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "目次に表示するサブモジュールの最大深度 (デフォルト: 4)" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "存在するファイルは上書きする" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "シンボリックリンクをたどります。collective.recipe.omeletteと組み合わせると強力です。" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "ファイルを作成せずにスクリプトを実行する" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "各モジュールのドキュメントをそれぞれのページに配置する" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "\"_private\" モジュールを含めます。" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "目次のファイル名 (デフォルト: モジュール)" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "目次ファイルを生成しない" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "module/package パッケージの見出しを生成しない (例: docstring にすでにそれらが含まれている場合など)" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "サブモジュールのドキュメントの前に、モジュールのドキュメントを置く" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "PEP-0420 暗黙の名前空間の指定に従って、モジュールパスを解釈する" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "ファイルの拡張子 (デフォルト: rst)" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "sphinx-quickstart を使って完全なプロジェクトを生成する" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "module_pathを sys.path に追加します。--full が与えられたときに使用されます。" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "プロジェクト名 (デフォルト: ルートモジュール名)" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "プロジェクト著者名(複数可)。--full が与えられたときに使用されます。" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "プロジェクトバージョン。--full が与えられたときに使用されます。" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "プロジェクトのリリースバージョン。--full が与えられたときに使用されます。デフォルトは --doc-version" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "拡張オプション" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "%s はディレクトリではありません。" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "無効な正規表現 %r が %s 内に見つかりました" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "モジュール %s をインポートできませんでした: %s" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "ソース内のカバレッジのテストが終了したら、%(outdir)spython.txt の結果を確認してください。" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "coverage_c_regexes 内に無効な正規表現 %r があります" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "モジュール %s をインポートできませんでした: %s" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2682,7 +2863,7 @@ msgstr "%sブロックにあるコード/出力 が %s にありません: %s" msgid "ignoring invalid doctest code: %r" msgstr "無効な doctest コードは無視されます: %r" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "====================== 最も遅い読み取り時間 =======================" @@ -2758,7 +2939,7 @@ msgstr "[グラフ: %s]" msgid "[graph]" msgstr "[グラフ]" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2766,7 +2947,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2776,99 +2957,39 @@ msgid "" "%r" msgstr "変換処理はエラー終了しました:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "convert コマンド %r は実行できません。image_converter の設定を確認してください" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "LaTeX コマンド %r を実行できません (数式表示のために必要です)。imgmath_latex の設定を確認してください" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "%s コマンド %r を実行できません (数式表示のために必要です)。imgmath_%s の設定を確認してください" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "latex の表示 %r: %s" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "latex のインライン表示 %r: %s" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "intersphinx インベントリは移動しました: %s -> %s" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "%s から intersphinx インベントリをロード中..." - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "いくつかのインベントリでいくつかの問題に遭遇しましたが、代替手段を持っていました:" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "以下の問題があるため、いくつかのインベントリは到達できませんでした:" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "(in %s v%s)" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "(in %s)" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "intersphinx 識別子 %r は文字列ではありません。無視します" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "intersphinx_mapping [%s] の読み取りに失敗しました。無視します: %r" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[ソース]" @@ -3044,23 +3165,23 @@ msgstr "%r のシグネチャの更新に失敗しました: パラメータが msgid "Failed to parse type_comment for %r: %s" msgstr "%rのtype_commentを解析できませんでした: %s" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "autosummary は除外したドキュメント %r を参照しています。無視されます。" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "autosummary: stubファイルが見つかりません%r。autosummary_generate設定を確認してください。" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "キャプション付きオートサマリーには :toctree: オプションが必要です。" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3068,46 +3189,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "%sの名前を解析できませんでした " -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "%sオブジェクトをインポートできませんでした " -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: ファイルが見つかりません: %s" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "autosummary: ドキュメント化する %r の決定に失敗しました。次の例外が発生しました:\n%s" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[autosummary] %s の autosummary を生成中" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "[autosummary] %s に書き込み中" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3115,7 +3242,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3130,36 +3257,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\nautosummary ディレクティブを使って ReStructuredText を生成します。\n\nsphinx-autogen は sphinx.ext.autosummary.generate のフロントエンドです。\n入力されたファイルを含む autosummary ディレクティブから reStructuredText ファイルを\n生成します。\n\nautosummary ディレクティブのフォーマットは\n``sphinx.ext.autosummary`` に記載されています。Pythonモジュールと :: を使って読むことができます。\n\npydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "rST ファイルを生成するためのソースファイル" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "すべての生成データを配置するディレクトリ" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "ファイルのデフォルト拡張子 (デフォルト: %(default)s)" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "カスタムテンプレートディレクトリ (デフォルト: %(default)s)" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "インポートしたメンバーのドキュメント (デフォルト: %(default)s)" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "モジュール __all__ 属性に含まれるメンバーのみを対象としたドキュメントを作成します。(デフォルト: %(default)s)" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "intersphinx 識別子 %r は文字列ではありません。無視します" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "intersphinx_mapping [%s] の読み取りに失敗しました。無視します: %r" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "いくつかのインベントリでいくつかの問題に遭遇しましたが、代替手段を持っていました:" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "以下の問題があるため、いくつかのインベントリは到達できませんでした:" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "intersphinx インベントリは移動しました: %s -> %s" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "(in %s v%s)" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "(in %s)" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "キーワード引数" @@ -3216,65 +3408,65 @@ msgstr "不正な文字列リテラル (終了引用符がありません): %s" msgid "malformed string literal (missing opening quote): %s" msgstr "不正な文字列リテラル (開始引用符がありません): %s" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "注意" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "注意" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "危険" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "エラー" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "ヒント" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "重要" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "注釈" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "参考" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "Tip" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "警告" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "前のページからの続き" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "次のページに続く" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "アルファベット以外" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "番号" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "ページ" @@ -3283,7 +3475,7 @@ msgstr "ページ" msgid "Table of Contents" msgstr "目次" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "検索" @@ -3341,12 +3533,12 @@ msgstr "全モジュール早見表" msgid "all functions, classes, terms" msgstr "関数、クラスおよび用語総覧" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" -msgstr "索引 – %(key)s" +msgid "Index – %(key)s" +msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3365,31 +3557,31 @@ msgstr "大きい場合があるので注意" msgid "Navigation" msgstr "ナビゲーション" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "%(docstitle)s 内を検索" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "このドキュメントについて" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "著作権" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "最終更新: %(last_updated)s" -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3492,7 +3684,7 @@ msgstr "検索中" msgid "Preparing search..." msgstr "検索を準備しています..." -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr ", in " @@ -3501,11 +3693,11 @@ msgid "Hide Search Matches" msgstr "検索結果を隠す" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "サイドバーをたたむ" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "サイドバーを展開" @@ -3513,26 +3705,26 @@ msgstr "サイドバーを展開" msgid "Contents" msgstr "コンテンツ" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "4列ベースのインデックスが見つかりました。あなたが使っている拡張子のバグかもしれません: %r" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "Footnote [%s] は参照されていません。" -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "Footnote [#] は参照されていません。" @@ -3581,17 +3773,17 @@ msgstr "%s:%s 参照先が見つかりません: %s" msgid "%r reference target not found: %s" msgstr "%r 参照先が見つかりません: %s" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "リモート画像を取得できませんでした: %s [%d]" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "リモート画像を取得できませんでした: %s [%s]" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "不明な画像フォーマット: %s..." @@ -3601,11 +3793,11 @@ msgstr "不明な画像フォーマット: %s..." msgid "undecodable source characters, replacing with \"?\": %r" msgstr "デコードできないソース文字です。\"?\" に置き換えます: %r" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "スキップしました" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "失敗しました" @@ -3616,12 +3808,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "不明なディレクティブまたはロール名: %s:%s" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "不明なノードタイプ: %r" @@ -3648,18 +3840,23 @@ msgid "" "it directly: %s" msgstr "日付形式が無効です。直接出力したい場合は、文字列を一重引用符で囲みます: %s" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "toctree に存在しないファイルへの参照が含まれています %r" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "only ディレクティブの条件式の評価中に例外が発生しました: %s" @@ -3669,45 +3866,50 @@ msgstr "only ディレクティブの条件式の評価中に例外が発生し msgid "default role %s not found" msgstr "デフォルトのロール %s が見つかりません" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "%s に numfig_format は定義されていません" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "いくつかの ID が %s ノードに割り当てられていません" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "画像サイズを取得できませんでした。:scale: オプションは無視されます。" @@ -3720,31 +3922,36 @@ msgstr "不明なクラス %r の toplevel_sectioning %r" msgid "too large :maxdepth:, ignored." msgstr ":maxdepth: が大きすぎるので無視されます。" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "ドキュメントのタイトルは、単一の Text ノードではありません" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "セクション、トピック、表、訓戒またはサイドバーにないタイトルノードが見つかりました。" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "注記" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "tabularcolumns と :widths: オプションの両方が設定されています。:widths: は無視されます。" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "ディメンション単位 %s が無効です。無視されます。" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "不明なインデックスエントリタイプ %s が見つかりました" @@ -3758,11 +3965,11 @@ msgstr "[画像: %s]" msgid "[image]" msgstr "[画像]" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "キャプションは図の中にはありません。" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "未実装のノードタイプ: %r" diff --git a/sphinx/locale/ka/LC_MESSAGES/sphinx.js b/sphinx/locale/ka/LC_MESSAGES/sphinx.js index 40eaf84..e3e2a6a 100644 --- a/sphinx/locale/ka/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/ka/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "\u10d2\u10d0\u10d3\u10d0\u10e1\u10d5\u10da\u10d0", "Hide Search Matches": "\u10eb\u10d4\u10d1\u10dc\u10d8\u10e1 \u10d3\u10d0\u10db\u10d7\u10ee\u10d5\u10d4\u10d5\u10d4\u10d1\u10d8\u10e1 \u10d3\u10d0\u10db\u10d0\u10da\u10d5\u10d0", "Index": "\u10d8\u10dc\u10d3\u10d4\u10e5\u10e1\u10d8", - "Index – %(key)s": "", + "Index – %(key)s": "", "Index pages by letter": "\u10d8\u10dc\u10d3\u10d4\u10e5\u10e1\u10d8\u10e1 \u10d2\u10d5\u10d4\u10e0\u10d3\u10d4\u10d1\u10d8 \u10d0\u10e1\u10dd\u10d4\u10d1\u10d8\u10e1 \u10db\u10d8\u10ee\u10d4\u10d3\u10d5\u10d8\u10d7", "Indices and tables:": "\u10d8\u10dc\u10d3\u10d4\u10e5\u10e1\u10d4\u10d1\u10d8 \u10d3\u10d0 \u10ea\u10ee\u10e0\u10d8\u10da\u10d4\u10d1\u10d8:", "Last updated on %(last_updated)s.": "\u10d1\u10dd\u10da\u10dd \u10d2\u10d0\u10dc\u10d0\u10ee\u10da\u10d4\u10d1\u10d8\u10e1 \u10d3\u10e0\u10dd %(last_updated)s.", diff --git a/sphinx/locale/ka/LC_MESSAGES/sphinx.mo b/sphinx/locale/ka/LC_MESSAGES/sphinx.mo index a568e60..a0f3aab 100644 Binary files a/sphinx/locale/ka/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ka/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ka/LC_MESSAGES/sphinx.po b/sphinx/locale/ka/LC_MESSAGES/sphinx.po index 10f4fe8..2325d8c 100644 --- a/sphinx/locale/ka/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ka/LC_MESSAGES/sphinx.po @@ -7,134 +7,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: Georgian (http://app.transifex.com/sphinx-doc/sphinx-1/language/ka/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: ka\n" "Plural-Forms: nplurals=2; plural=(n!=1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "წყარო საქაღალდე ვერ ვიპოვე (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "გამოტანის საქაღალდე (%s) საქაღალდე არაა" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "საწყისი და სამიზნე საქაღალდე ერთი და იგივე არ შეიძლება, იყოს" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "გაშვებულია Sphinx v%s" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "პროექტს Sphinx-ის მინიმალური v%s სჭირდება და ამიტომ ამ ვერსიით ვერ აიგება." -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "გამოტანის საქაღალდის შექმნა" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "გაფართოების %s მორგებისას:" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup', როგორც ის conf.py-შია ამჟამად აღწერილი, Python-ის მიერ გამოძახებადი არაა. შეცვალეთ აღწერა, რათა ის გამოძახებადი ფუნქცია გახდეს. ეს საჭიროა, რათა conf.py-ი, როგორც Sphinx-ის გაფართოება, მოიქცეს." -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "თარგმანების ჩატვირთვა [%s]... " -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "შესრულებულია" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "ჩაშენებული შეტყობინებებისთვის ხელმისაწვდომი არაა" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "დამჟავებული გარემოს ჩატვირთვა" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "შეცდომით: %s" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "ამგები არჩეული არაა. ვიყენებ ნაგულისხმევს: html" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "წარმატებული" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "დასრულდა პრობლემებით" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "აგება %s, %s გაფრთხილება (გაფრთხილებები აღქმული იქნება, როგორც შეცდომები)." -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "%s-ის აგება, %s გაფრთხილება." -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "%s-ის აგება, %s გაფრთხილება." -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "%s-ის აგება." -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "კვანძის კლასი %r უკვე რეგისტრირებულია. მისი მნახველები გადაფარული იქნება" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "დირექტივა %r უკვე რეგისტრირებულია. ის გადაფარული იქნება" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "როლი %r უკვე რეგისტრირებულია. ის გადაფარული იქნება" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "გაფართოება %s არ აღწერს, არის თუ არა ის უსაფრთხო პარალელური წაკითხვისთვის. ვთვლით, რომ არა - კითხეთ გაფართოების ავტორს და აშკარად აღწერეთ ის" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "%s გაფართოება პარალელური წაკითხვისთვის უსაფრთხო არაა" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,75 +155,77 @@ msgid "" "explicit" msgstr "გაფართოება %s არ აღწერს, არის თუ არა ის უსაფრთხო პარალელური ჩაწერისთვის. ვთვლით, რომ არა - კითხეთ გაფართოების ავტორს და აშკარად აღწერეთ ის" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "%s გაფართოება პარალელური ჩაწერისთვის უსაფრთხო არაა" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "ვაკეთებ სერიულს %s" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "კონფიგურაციის საქაღალდე ფაილს conf.py არ შეიცავს (%s)" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "აღმოჩენილია არასწორი კონფიგურაციის მნიშვნელობა: 'language = None'. განაახლეთ კონფიგურაცია და მიუთითეთ სწორი ენა. გადაირთვება 'en'-ზე (ინგლისური)." -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "ლექსიკონის კონფიგურაციის პარამეტრის %r გადაფარვა შეუძლებელია. ის გამოტოვებული იქნება (ინდივიდუალური ელემენტების დასაყენებლად გამოიყენეთ %r)" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "რიცხვი %r კონფიგურაციის მნიშვნელობისთვის %r არასწორია. ის გამოტოვებული იქნება" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "მხარდაუჭერელი ტიპის მქონე კონფიგურაციის პარამეტრის %r გადაფარვა შეუძლებელია. ის გამოტოვებული იქნება" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "გადაფარვაში მითითებული კონფიგურაციის მნიშვნელობა %r უცნობია. ის გამოტოვებული იქნება" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "კონფიგურაციის მნიშვნელობა %r უკვე არსებობს" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "თქვენს კონფიგურაციის ფაილში აღმოჩენილია შეცდომა: %s\n" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "კონფგურაციის ფაილმა (ან მოდულმა, რომელის მან შემოიტანა) sys.exit() გამოიძახა" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -231,78 +233,78 @@ msgid "" "%s" msgstr "თქვენს კონფიგურაციის ფაილში პროგრამირებადი შეცდომაა:\n\n%s" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "კონფიგურაციის მნიშვნელობას 'source_suffix' სტრიქონს, სტრიქონების სიას ან ლექსიკონს ელოდება. თქვენ კი '%r' მიუთითეთ." -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "სექცია %s" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "ნახ. %s" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "ცხრილი %s" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "ჩამონათვალი %s" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "კონფიგურაციის მნიშვნელობა `{name}` შეიძლება იყოს ერთ-ერთ სიიდან `{candidates}`, თქვენ კი `{current}` მიუთითეთ." -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "კონფიგურაციის მნიშვნელობის `{name}` ტიპია `{current.__name__}`, მე კი {permitted}-ს ველოდებოდი." -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "კონფიგურაციის მნიშვნელობის `{name}` ტიპია `{current.__name__}`, ნაგულისხმებია `{default.__name__}`." -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r ვერ ვიპოვე. ის გამოტოვებული იქნება." -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "Sphinx v2.0-ის შემდეგ root_doc-ს ნაგულისხმევად \"index\"-ს იყენებს. დაამატეთ თქვენს conf.py-ში 'root_doc = 'contents'\"." -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "მოვლენა %r უკვე არსებობს" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "უცნობი მოვლენის სახელი: %s" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "დამმუშავებელმა %r მოვლენისთვის %r გამონაკლისი გადმოგვცა" @@ -487,190 +489,342 @@ msgstr "არასწორი PEP ნომერი %s" msgid "invalid RFC number %s" msgstr "არასწორი RFC ნომერი %s" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "პარამეტრი %s.%s თემის კონფიგურაციებში აღმოჩენილი არაა" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "თემის პარამეტრი %r მხარდაჭერილი არაა" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "შეწყდა!" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "კოდირების შეცდომა:" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "რეკურსიის შეცდომა:" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "აღმოჩენილი გამონაკლისი:" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "აგება [mo]: " -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "გამოტანის ჩაწერა... " -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "სულ %d po ფაილი" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "%d po ფაილისთვის სამიზნე მითითებული არაა" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "%d po ფაილისთვის სამიზნე მოძველებულია" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "ყველა კოდის ფაილი" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "ბრძანების სტრიქონში მითითებული ფაილი %r არ არსებობს. " -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "ბრძანების სტრიქონში მითითებული ფაილი %r კოდის საქაღალდეში არაა. გამოტოვება" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "ბრძანების სტრიქონში მითითებული ფაილი %r სწორი დოკუმენტი არაა. გამოტოვება" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "ბრძანების სტრიქონში მითითებულია %d კოდის ფაილი" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "%d კოდის ფაილის სამიზნე მოძველებულია" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "აგება [%s]: " -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "მოძველებული ფაილების ძებნა... " -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "ნაპოვნია %d" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "არაფერია ნაპოვნი" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "დამჟავების გარემო" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "თანმიმდევრულობის შემოწმება" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "მოძველებული სამიზნეები აღმოჩენილი არაა." -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "გარემოს განახლება: " -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s დაემატა, %s შეიცვალა, %s წაიშალა" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "წყაროების კითხვა... " -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "ჩასაწერი დოკუმენტის სახელები: %s" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "დოკუმენტების მომზადება" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -679,7 +833,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "აღმოჩენილია დუბლირებული სარჩევის ჩანაწერი: %s" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "გამოსახულებების კოპირება... " @@ -689,7 +843,7 @@ msgstr "გამოსახულებების კოპირება.. msgid "cannot read image file %r: copying it instead" msgstr "გამოსახულების ფაილი %r ვერ წავიკითხე: ის, სამაგიეროდ, დაკოპირდება" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -704,28 +858,28 @@ msgstr "გამოსახულების ფაილის %r ჩაწ msgid "Pillow not found - copying image files" msgstr "Pillow ვერ ვიპოვე - სურათის ფაილების კოპირება" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "mimetype ფაილის ჩაწერა..." -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "მიმდინარეობს META-INF/container.xml ფაილის ჩაწერა..." -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "content.opf ფაილის ჩაწერა..." -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "უცნობი mimetype ფაილისთვის %s. გამოტოვება" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "toc.ncx ფაილის ჩაწერა..." -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "%s ფაილის ჩაწერა..." @@ -814,7 +968,7 @@ msgstr "კონფიგურაციის მნიშვნელობ msgid "conf value \"version\" should not be empty for EPUB3" msgstr "კონფიგურაციის მნიშვნელობა \"version\" EPUB3-სთვის ცარიელი არ უნდა იყოს" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "არასწორი css_file: %r. გამოტოვება" @@ -842,12 +996,17 @@ msgstr "შეტყობინების კატალოგების msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "გაფუჭებული ბმული: %s (%s)" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "მიმაგრება '%s' ვერ ვიპოვე" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -932,7 +1091,7 @@ msgstr "შეცდომა Makefile-ის ჩაწერისას: %s" msgid "The text files are in %(outdir)s." msgstr "ტექსტური ფაილების საქაღლდეა %(outdir)s." -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -958,13 +1117,13 @@ msgstr "აგების ინფორმაციის ფაილი გ msgid "The HTML pages are in %(outdir)s." msgstr "HTML გვერდების საქაღალდეა %(outdir)s." -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "აგების ინფორმაციის ფაილის წაკითხვის შეცდომა: %r" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -978,144 +1137,149 @@ msgstr "ზოგადი ინდექსი" msgid "index" msgstr "ინდექსი" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "შემდეგი" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "წინა" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "ინდექსების გენერაცია" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "დამატებითი გვერდების ჩაწერა" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "გადმოწერადი ფაილების კოპირება... " -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "გადმოწერადი ფაილის %r კოპირების შეცდომა:%s" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "ფაილის html_static_file-ში კოპირებს შეცდომა: %s: %r" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "სტატიკური ფაილების კოპირება" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "სტატიკური ფაილის %r კოპირების შეცდომა" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "დამატებითი ფაილების კოპირება" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "დამატებითი ფაილის %r კოპირების შეცდომა" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "აგების ინფორმაციის ფაილის ჩაწერის შეცდომა: %r" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "ძებნის ინდექსის ჩატვირთვა შეუძლებელია, მაგრამ ყველა დოკუმენტის აგება არ მოხდება: ინდექსი დაუსრულებელი იქნება." -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "შეცდომა %s გვერდის რენდერისას.\nმიზეზი: %r" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "ობიექტის ინვენტარის დამპი" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "%s-ში არსებული ძებნის ინდექსის დამპი" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "არასწორი js_file: %r, გამოტოვებულია" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "მითითებული math_renderer %r უცნობია." -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "html_extra_path ჩანაწერი %r არ არსებობს" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "html_extra_path ჩანაწერი %r გამოტანის საქაღალდეშია" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "html_static_path ჩანაწერი %r არ არსებობს" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "html_static_path ჩანაწერი %r გამოტანის საქაღალდეშია" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "ლოგოს ფაილი %r არ არსებობს" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "favicon ფაილი %r არ არსებობს" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "%s %s დოკუმენტაცია" @@ -1141,19 +1305,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "ინდექსი" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "გამოცემა" @@ -1211,18 +1377,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "აგებისას აღმოჩენილია გამონაკლისი. მიმდინარეობს გამმართველის გაშვება:" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "შეწყდა!" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "reST მარკაფის შეცდომა:" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "კოდირების შეცდომა:" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1230,27 +1388,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "რეკურსიის შეცდომა:" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "აღმოჩენილი გამონაკლისი:" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1262,7 +1399,7 @@ msgid "job number should be a positive number" msgstr "დავალების ნომერი დადებითი რიცხვი უნდა იყოს" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "მეტი ინფორმაციის მისაღებად ეწვიეთ <https://www.sphinx-doc.org/>." @@ -1351,7 +1488,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1362,7 +1499,7 @@ msgstr "კონსოლის გამოტანის პარამე msgid "increase verbosity (can be repeated)" msgstr "დიაგნოსტიკური შეტყობინებების სიხშირის გაზრდა (შეგიძლიათ, გაიმეოროთ)" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "stdout-ზე გამოტანილი არაფერი იქნება. მხოლოდ გაფრთხილებები, stderr-ზე" @@ -1644,12 +1781,12 @@ msgstr "შევქმნა Makefile? (y(დიახ)/n(არა))" msgid "Create Windows command file? (y/n)" msgstr "შევქმნა Windows-ის ბრძანებების ფაილი? (y(დიახ)/n(არა))" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "ფაილის შექმნა %s." -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "ფაილი %s უკვე არსებობს. ის გამოტოვებული იქნება." @@ -1758,12 +1895,12 @@ msgstr "epub-ის გამოყენება" msgid "Extension options" msgstr "გაფართოების პარამეტრები" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "%s გაფართოების ჩართვა" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1795,11 +1932,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "პროექტის ნიმუშები" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "ნიმუშების საქაღალდე ნიმუშის ფაილებისთვის" @@ -1827,85 +1964,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "არასწორი ნიმუშის ცვლადი: %s" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "არასწორი წარწერა: %s" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "\"%s\" და \"%s\" პარამეტრების ერთდროული გამოყენება შეუძლებელია" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "ჩასასმელი ფაილი %r ვერ ვიპოვე ან მისი წაკითხვა შეუძლებელია" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "ობიექტი სახელად %r ჩასასმელი ფაილში %r აღმოჩენილი არაა" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "აღმოჩენილია დუბლირებული სარჩევის ჩანაწერი: %s" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "სექციის ავტორი: " -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "მოდულის ავტორი: " -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "კოდის ავტორი: " -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "ავტორი: " @@ -1913,7 +2050,7 @@ msgstr "ავტორი: " msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1963,7 +2100,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s () (ჩაშენებული ფუნქცია)" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "%s () (%s მეთოდი)" @@ -1978,7 +2115,7 @@ msgstr "%s () (კლასი)" msgid "%s (global variable or constant)" msgstr "%s (გლობალური ცვლადი ან მუდმივა)" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s ატრიბუტი)" @@ -1987,52 +2124,52 @@ msgstr "%s (%s ატრიბუტი)" msgid "Arguments" msgstr "არგუმენტები" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "ისვრის" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "აბრუნებს" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "დაბრუნების ტიპი" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "%s (მოდული)" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "ფუნქცია" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "მეთოდი" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "კლასი" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "მონაცემები" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "ატრიბუტი" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "მოდული" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2042,7 +2179,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "არასწორი math_eqref_format: %r" @@ -2079,352 +2216,374 @@ msgstr "როლები" msgid "duplicate description of %s %s, other instance in %s" msgstr "%s %s-ის დუბლირებული აღწერა. სხვა ასლი %s-შია" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "%s (C %s)" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "პარამეტრები" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "დაბრუნებული მნიშვნელობები" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "წვერი" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "ცვლადი" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "მაკრო" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "სტრუქტურა" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "გაერთიანება" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "ჩამონათვალი" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "დამთვლელი" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "ტიპი" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "ფუნქციის პარამეტრი" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "შაბლონის პარამეტრები" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "კონცეფცია" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "შაბლონის პარამეტრი" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "%s () (მოდულში %s)" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "%s (მოდულში %s)" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "%s (ჩაშენებული ცვლადი)" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "%s (ჩაშენებული კლასი)" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "%s (კლასი %s-ში)" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "%s () (%s კლასის მეთოდი)" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "%s () (%s სტატიკური მეთოდი)" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "%s (%s თვისება)" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "Python-ის მოდულის ინდექსი" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "მოდულები" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "მოძველებულია" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "გამონაკლისი" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "კლასის მეთოდი" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "სტატიკური მეთოდი" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "თვისება" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr " (მოძველებული)" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "ცვლადები" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "გამონაკლისები" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "გარემოს ცვლადი; %s" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "%s ბრძანების სტრიქონის პარამეტრი" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "ბრძანების სტრიქონის ვარიანტი" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "სარჩევის ელემენტებს წინ ცარიელი ხაზი უნდა იყოს" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "სარჩევის ელემენტები ცარიელი ხაზებით უნდა გამოყოთ" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "სარჩევის ფორმატი არასწორია. გადაამოწმეთ შეწევა" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "სარჩევის ელემენტი" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "გრამატიკის კოდი" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "მიმართვის ჭდე" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "გარემოს ცვლადი" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "პროგრამის პარამეტრი" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "დოკუმენტი" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "მოდულის ინდექსი" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "ძებნის გვერდი" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "დუბლირებული ჭდე %s. სხვა აღწერა %s-შია" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "დუბლირებული %s აღწერისთვის %s. სხვა ასლი %s-შია" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig გამორთულია. :numref: გამოტოვებული იქნება." -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "ბმულს წარწერა არ გააჩნია: %s" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "არასწორი numfig_format: %s (%r)" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "არასწორი numfig_format: %s" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "აღუწერელი ჭდე: %r" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "ახალი კონფიგურაცია" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "კონფიგურაცია შეიცვალა" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "გაფართოებები შეიცვალა" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "აგების გარემოს ვერსია მიმდინარე არაა" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "საწყისი საქაღალდე შეიცვალა" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "გარემო არჩეულ ამგებთან თავსებადი არაა. აირჩიეთ სხვა დოკუმენტების ხის საქაღალდე." -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "%s-ში დოკუმენტების სკანირება შეუძლებელია: %r" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "დომენი %r რეგისტრირებული არაა" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "დოკუმენტი არც ერთ სარჩევის ხეში ჩასმული არაა" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "აღმოჩენილია თვითმიმართვადი სარჩევის ხე. გამოტოვებულია." -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "იხილეთ %s" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "აგრეთვე იხილეთ %s" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "უცნობი ინდექსის ჩანაწერის ტიპი %r" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "სიმბოლოები" @@ -2460,17 +2619,17 @@ msgstr "გამოსახულების ფაილი %s წაკი msgid "download file not readable: %s" msgstr "გადმოწერილი ფაილი წაკითხვადი არაა: %s" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "შეიქმნებოდა ფაილი %s." -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2482,149 +2641,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "ბილიკი მოდულიდან დოკუმენტამდე" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "არსებულ ფაილებზე გადაწერა" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "სკრიპტის ფაილების შექმნის გარეშე გაშვება" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "\"_private\" მოდულების ჩასმა" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "სარჩევის ფაილი არ შეიქმნება" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "ფაილის სუფიქსი (ნაგულისხმევი: rst)" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "sphinx-quickstart-ით სრული პროექტის გენარაცია" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "როცა მითითებულია --full, module_path-ი sys.path-ის ბოლოში მიეწერება" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "პროექტის სახელი (ნაგულისხმევი: ძირითადი მოდულის სახელი)" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "პროექტის ავტორ(ებ)-ი. გამოიყენება, როცა მიუთითებთ პარამეტრს --full" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "პროექტის ვერსია. გამოიყენება, როცა მითითებულია --full" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "პროექტის რელიზი. გამოიყენება, როცა მითითებულია --full. ნაგულისხმებ მნიშვნელობაა იგივე, რაც --doc-version" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "გაფართოების პარამეტრები" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "%s საქაღალდეს არ წარმოადგენს." +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "სექცია \"%s\" მიიღებს ჭდეს \"%s\"" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "არასწორი რეგულარული გამოსახულება %r %s-ში" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2665,7 +2846,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2741,7 +2922,7 @@ msgstr "[გრაფიკი: %s]" msgid "[graph]" msgstr "[გრაფიკი]" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2749,7 +2930,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2759,99 +2940,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "(%s v%s-ში)" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" @@ -3027,23 +3148,23 @@ msgstr "%r-სთვის ხელმოწერის განახლე msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3051,46 +3172,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "სახელის %s დამუშავების შეცომა" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "ობიექტის %s შემოტანის შეცდომა" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: ფაილი ვერ ვიპოვე: %s" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "[autosummary] %s-ში ჩაწერა" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3098,7 +3225,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3113,36 +3240,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "rST ფაილების დასაგენერირებელიკოდის ფაილები" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "გამოტანის ჩასაწერი საქაღალდე" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "ფაილის ნაგულიხმევი სუფიქსი (ნაგულისხმევი: %(default)s)" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "მომხმარებლის ნიმუშების საქაღალდე (ნაგულისხმევი: %(default)s)" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "(%s v%s-ში)" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "საკვანძო სიტყვების არგუმენტები" @@ -3199,65 +3391,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "ყურადღება" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "გაფრთხილება" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "საფრთხე" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "შეცდომა" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "მინიშნება" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "მნიშვნელოვანი" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "ნოტი" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "ასევე იხილეთ" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "რჩევა" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "ყურადღება" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "წინა გვერდიდან" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "გრძელდება შემდეგ გვერდზე" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "არაანბანური" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "რიცხვები" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "პანელი" @@ -3266,7 +3458,7 @@ msgstr "პანელი" msgid "Table of Contents" msgstr "სარჩევი" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "ძებნა" @@ -3324,12 +3516,12 @@ msgstr "სწრაფი წვდომა ყველა მოდულთ msgid "all functions, classes, terms" msgstr "ყველა ფუნქცია, კლასი, წესი" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" +msgid "Index – %(key)s" msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3348,31 +3540,31 @@ msgstr "შეიძლება უზარმაზარი იყოს" msgid "Navigation" msgstr "ნავიგაცია" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "%(docstitle)s-ში ძებნა" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "ამ დოკუმენტების შესახებ" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "საავტორო უფლებები" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "ბოლო განახლების დრო %(last_updated)s." -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3475,7 +3667,7 @@ msgstr "ძებნა" msgid "Preparing search..." msgstr "ძებნის მომზადება..." -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr "" @@ -3484,11 +3676,11 @@ msgid "Hide Search Matches" msgstr "ძებნის დამთხვევების დამალვა" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "გვერდითი ზოლის ჩაკეცვა" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "გვერდითი ზოლის გაფართოება" @@ -3496,26 +3688,26 @@ msgstr "გვერდითი ზოლის გაფართოება" msgid "Contents" msgstr "შიგთავსი" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "ნაკვალევი [%s] მიმართული არაა." -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "ნაკვალევი [#] მიმართული არაა." @@ -3564,17 +3756,17 @@ msgstr "%s:%s მიმართვის სამიზნე ვერ ვი msgid "%r reference target not found: %s" msgstr "%r მიმართვის სამიზნე ვერ ვიპოვე: %s" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "დაშორებული გამოსახულების მიღების შეცდომა: %s [%d]" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "დაშორებული გამოსახულების მიღების შეცდომა: %s [%s]" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "უცნობი გამოსახულების ფორმატი: %s..." @@ -3584,11 +3776,11 @@ msgstr "უცნობი გამოსახულების ფორმ msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "გამოტოვებული" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "შეცდომით" @@ -3599,12 +3791,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "უცნობი დირექტივა ან როლის სახელი: %s:%s" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "უცნობი კვანძის ტიპი: %r" @@ -3631,18 +3823,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3652,45 +3849,50 @@ msgstr "" msgid "default role %s not found" msgstr "ნაგულისხმევი როლი %s ვერ ვიპოვე" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "numfig_format-ი %s-სთვის აღწერილი არაა" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "ნებისმიერი ID, რომელიც %s კვანძზე მინიჭებული არაა" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "გამოსახულების ზომის მიღება შეუძლებელია. :scale: მოხდება პარამეტრის გამოტოვება." @@ -3703,31 +3905,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "ძალიან დიდი :maxdepth:. გამოტოვება." -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "დოკუმენტის სათაური ერთი ტექსტური კვანძი არაა" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "სქოლიოები" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "ზომის ერთეული %s არასწორია. გამოტოვება." -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "აღმოჩენილია ინდექსის ჩანაწერის უცნობი ტიპი %s" @@ -3741,11 +3948,11 @@ msgstr "[გამოსახულება: %s]" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "წარწერა ფიგურის შიგნით არაა." -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "განუხორციელებელი კვანძის ტიპი: %r" diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.js b/sphinx/locale/ko/LC_MESSAGES/sphinx.js index aba01b9..4cfc8ce 100644 --- a/sphinx/locale/ko/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/ko/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "\uc774\ub3d9", "Hide Search Matches": "\uac80\uc0c9 \uc77c\uce58 \uc228\uae30\uae30", "Index": "\uc0c9\uc778", - "Index – %(key)s": "\uc0c9\uc778 – %(key)s", + "Index – %(key)s": "", "Index pages by letter": "\uc54c\ud30c\ubcb3\ubcc4 \uc0c9\uc778", "Indices and tables:": "\uc0c9\uc778 \ubc0f \ud45c \ubaa9\ub85d:", "Last updated on %(last_updated)s.": "\ucd5c\uc885 \uc5c5\ub370\uc774\ud2b8: %(last_updated)s", diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo index 49dcb80..29bebdc 100644 Binary files a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.po b/sphinx/locale/ko/LC_MESSAGES/sphinx.po index 6c4d708..464ee97 100644 --- a/sphinx/locale/ko/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ko/LC_MESSAGES/sphinx.po @@ -9,134 +9,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: YT H <dev@theYT.net>, 2019-2022\n" "Language-Team: Korean (http://app.transifex.com/sphinx-doc/sphinx-1/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "원본 디렉토리를 찾을 수 없습니다 (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "출력 디렉토리 %s은(는) 디렉토리가 아닙니다." -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "원본 디렉토리와 대상 디렉토리는 같을 수 없습니다" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "Sphinx 버전 %s 실행 중" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "이 프로젝트는 최소 Sphinx 버전 %s이(가) 필요하므로 현재 버전으로 빌드할 수 없습니다." -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "출력 디렉토리 만드는 중" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "확장 기능 %s 설정 중:" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "현재 conf.py 파일에 정의된 'setup'은 호출 가능한 Python 객체가 아닙니다. 호출 가능한 함수가 되도록 정의를 수정하십시오.\n이것은 conf.py가 Sphinx 확장 기능으로 동작하는 데 필요합니다." -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "번역을 불러오는 중 [%s]… " -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "완료" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "기본 제공 메시지를 사용할 수 없습니다" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "pickle로 저장된 환경을 불러오는 중" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "실패: %s" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "선택한 빌더가 없으므로, 기본값인 html을 사용합니다" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "성공" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "완료했으나 문제점 발견" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "빌드 %s, 경고가 %s 개 발생했습니다 (경고를 오류로 처리)." -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "빌드 %s, 경고가 %s 개 발생했습니다 (경고를 오류로 처리)." -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "빌드 %s, 경고가 %s 개 발생했습니다." -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "빌드 %s, 경고가 %s 개 발생했습니다." -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "빌드 %s." -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "%r 노드 클래스가 이미 등록되어 있으며, 방문자를 무시합니다" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "%r 지시문이 이미 등록되어 있으며, 재정의됩니다" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "%r 역할이 이미 등록되어 있으며, 재정의됩니다" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -144,12 +144,12 @@ msgid "" "explicit" msgstr "%s 확장 기능은 병렬 읽기에 안전한지 선언하지 않았으므로, 그렇지 않다고 가정합니다. 확장 기능 작성자에게 확인하고 명시하도록 요청하십시오" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "%s 확장 기능은 병렬 읽기에 안전하지 않습니다" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,75 +157,77 @@ msgid "" "explicit" msgstr "%s 확장 기능은 병렬 쓰기에 안전한지 선언하지 않았으므로, 그렇지 않다고 가정합니다. 확장 기능 작성자에게 확인하고 명시하도록 요청하십시오" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "%s 확장 기능은 병렬 쓰기에 안전하지 않습니다" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "병렬 %s 처리" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "설정 디렉토리에 conf.py 파일이 없습니다 (%s)" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "잘못된 구성 값을 찾았습니다: 'language = None'. 유효한 언어 코드로 구성을 업데이트하십시오. 대신 'en'(영어)을 사용합니다." -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "Dictionary 구성 설정 %r을(를) 재정의할 수 없으며, 무시합니다 (개별 요소를 설정하기 위해 %r 사용)" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "숫자 %r이(가) 설정값 %r에 대해 유효하지 않으며, 무시합니다" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "지원되지 않는 유형의 구성 설정 %r을(를) 재정의 할 수 없으며, 무시합니다" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "재정의 중 알 수 없는 설정값 %r, 무시합니다" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "설정값 %r이(가) 이미 존재합니다" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "구성 파일에 구문 오류가 있습니다: %s\n" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "구성 파일(또는 가져온 모듈 중 하나)에서 sys.exit()을 호출했습니다" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -233,78 +235,78 @@ msgid "" "%s" msgstr "구성 파일에 프로그램 오류가 있습니다:\n\n%s" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "설정값 'source_suffix'는 문자열, 문자열의 목록 또는 dictionary를 예상합니다. 그러나 `%r'이(가) 지정되었습니다." -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "제 %s 절" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "그림 %s" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "표 %s" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "예시 %s" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "설정값 `{name}`은(는) {candidates} 중 하나여야 하지만, `{current}`이(가) 지정되었습니다." -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "설정값 `{name}'은(는) `{current.__name__}' 유형이지만, {permitted} 유형을 기대했습니다." -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "설정값 `{name}'은(는) `{current.__name__}' 유형이지만, 기본값은 `{default.__name__}'입니다." -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r(이)가 없으므로, 무시합니다." -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "2.0 버전부터 Sphinx는 기본적으로 \"index\"를 root_doc으로 사용합니다. conf.py에 \"root_doc = 'contents'\"를 추가하십시오." -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "이벤트 %r이(가) 이미 존재합니다" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "알 수 없는 이벤트 이름: %s" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "처리기 %r (이벤트 %r에 대한) 에서 예외를 발생했습니다" @@ -489,190 +491,342 @@ msgstr "잘못된 PEP 번호 %s" msgid "invalid RFC number %s" msgstr "잘못된 RFC 번호 %s" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "검색된 테마 구성에서 %s.%s 설정이 존재하지 않습니다" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "지원하지 않는 테마 옵션 %r을(를) 설정했습니다" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "테마 경로의 %r 파일이 유효한 ZIP 파일이 아니거나 테마를 포함하지 않습니다" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "중단되었습니다!" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "인코딩 오류:" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "재귀 오류:" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "이 상황은 매우 크거나 많이 중첩된 원본 파일에서 발생할 수 있습니다. 다음과 같이 conf.py에서 Python 재귀 제한 기본값 1000을 늘릴 수 있습니다 (주의):" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "예외 발생:" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "사용자 오류인 경우에도 이를 보고하여, 다음에 더 나은 오류 메시지를 제공할 수 있도록 해 주십시오." + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "%s 빌더에 적합한 이미지를 찾을 수 없음: %s (%s)" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "%s 빌더에 적합한 이미지를 찾을 수 없음: %s" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "빌드 중 [mo]: " -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "출력을 쓰는 중… " -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "모든 %d 개의 po 파일" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "지정된 %d 개의 po 파일 대상" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "오래된 %d 개의 po 파일 대상" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "모든 원본 파일" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "명령줄에 지정된 파일 %r이(가) 원본 디렉토리에 있지 않으므로, 무시합니다" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "명령줄에 지정된 %d 개의 원본 파일" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "오래된 %d 개의 원본 파일 대상" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "빌드 중 [%s]: " -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "오래된 파일을 찾는 중… " -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "%d 개 찾음" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "찾은 것이 없음" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "pickle로 환경을 저장하는 중" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "일관성 확인 중" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "오래된 대상이 없습니다." -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "환경을 갱신하는 중: " -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s 개 추가됨, %s 개 변경됨, %s 개 제거됨" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "원본을 읽는 중… " -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "기록할 문서 이름: %s" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "문서 준비 중" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -681,7 +835,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "중복된 목차 항목 발견: %s" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "이미지를 복사하는 중… " @@ -691,7 +845,7 @@ msgstr "이미지를 복사하는 중… " msgid "cannot read image file %r: copying it instead" msgstr "이미지 파일 %r을(를) 읽을 수 없으며, 대신 복사합니다" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -706,28 +860,28 @@ msgstr "이미지 파일 %r을(를) 기록할 수 없습니다: %s" msgid "Pillow not found - copying image files" msgstr "Pillow를 찾을 수 없습니다 - 이미지 파일을 복사합니다" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "mimetype 파일 쓰는 중…" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "META-INF/container.xml 파일 쓰는 중…" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "content.opf 파일 쓰는 중…" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "%s은(는) 알 수 없는 MIME 유형이며, 무시합니다" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "toc.ncx 파일 쓰는 중…" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "%s 파일을 기록하는 중…" @@ -816,7 +970,7 @@ msgstr "설정값 \"epub_identifier\"는 EPUB3의 경우 비워 둘 수 없습 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "설정값 \"version\"은 EPUB3의 경우 비워 둘 수 없습니다" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "잘못된 css_file: %r, 무시합니다" @@ -844,12 +998,17 @@ msgstr "메시지 카탈로그 작성 중… " msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "위의 출력 또는 %(outdir)s/output.txt 파일에서 오류를 확인하십시오" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "끊어진 링크: %s (%s)" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "앵커 '%s'을(를) 찾을 수 없습니다" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "linkcheck_allowed_redirects에서 정규식을 컴파일하지 못했습니다: %r %s" @@ -934,7 +1093,7 @@ msgstr "Makefile 쓰기 오류: %s" msgid "The text files are in %(outdir)s." msgstr "텍스트 파일은 %(outdir)s에 있습니다." -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -960,13 +1119,13 @@ msgstr "빌드 정보 파일이 손상되었습니다: %r" msgid "The HTML pages are in %(outdir)s." msgstr "HTML 페이지는 %(outdir)s에 있습니다." -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "빌드 정보 파일을 읽을 수 없습니다: %r" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -980,144 +1139,149 @@ msgstr "전체 색인" msgid "index" msgstr "색인" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "다음" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "이전" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "색인 생성 중" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "추가 페이지 작성 중" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "다운로드 가능한 파일을 복사하는 중… " -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "다운로드 가능한 파일 %r을(를) 복사할 수 없습니다: %s" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "html_static_file에 있는 파일을 복사할 수 없습니다: %s: %r" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "정적 파일을 복사하는 중" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "정적 파일을 복사할 수 없습니다: %r" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "추가 파일을 복사하는 중" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "추가 파일을 복사할 수 없습니다: %r" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "빌드 정보 파일 쓰기 실패: %r" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "검색 색인을 불러올 수 없지만 모든 문서가 작성되지는 않은 것은 아닙니다. 색인이 불완전합니다." -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "%s 페이지가 html_sidebars의 두 패턴(%r 및 %r)과 일치합니다" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "%s 페이지를 렌더링 할 때 유니코드 오류가 발생했습니다. ASCII가 아닌 내용을 포함하는 모든 설정값이 유니코드 문자열인지 확인하십시오." -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "%s 페이지를 렌더링하는 중에 오류가 발생했습니다.\n원인: %r" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "객체 인벤토리 덤프 중" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "%s에서 검색 인덱스 덤프 중" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "잘못된 js_file: %r, 무시합니다" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "여러 math_renderers가 등록되어 있습니다. 하지만 math_renderer가 선택되지 않았습니다." -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "알 수 없는 math_renderer %r이(가) 지정되었습니다." -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "html_extra_path 항목 %r이(가) 없습니다" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "html_extra_path 항목 %r이(가) outdir 안에 있습니다" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "html_static_path 항목 %r이(가) 없습니다" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "html_static_path 항목 %r이(가) outdir 안에 있습니다" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "로고 파일 %r이(가) 존재하지 않습니다" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "Favicon 파일 %r이(가) 존재하지 않습니다" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "%s %s 문서" @@ -1143,19 +1307,21 @@ msgstr "\"latex_documents\" 설정값이 없으므로, 문서를 작성하지 msgid "\"latex_documents\" config value references unknown document %s" msgstr "\"latex_documents\" 설정값이 알 수 없는 문서 %s을(를) 참조합니다" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "색인" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "릴리스" @@ -1213,18 +1379,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "빌드하는 동안 예외 발생, 디버거 시작:" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "중단되었습니다!" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "reST 마크업 오류:" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "인코딩 오류:" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1232,27 +1390,6 @@ msgid "" "the developers." msgstr "개발자에게 문제를 보고할 경우를 위해, 전체 역추적 정보가 %s에 저장되었습니다." -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "재귀 오류:" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "이 상황은 매우 크거나 많이 중첩된 원본 파일에서 발생할 수 있습니다. 다음과 같이 conf.py에서 Python 재귀 제한 기본값 1000을 늘릴 수 있습니다 (주의):" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "예외 발생:" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "사용자 오류인 경우에도 이를 보고하여, 다음에 더 나은 오류 메시지를 제공할 수 있도록 해 주십시오." - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1264,7 +1401,7 @@ msgid "job number should be a positive number" msgstr "작업 숫자는 양수여야 합니다" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "자세한 내용은 <https://www.sphinx-doc.org/>를 참조하십시오." @@ -1353,7 +1490,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "태그를 정의: 태그가 있는 \"only\" 블록을 포함" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1364,7 +1501,7 @@ msgstr "콘솔 출력 옵션" msgid "increase verbosity (can be repeated)" msgstr "상세도 높임 (반복 가능)" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "stdout에 출력하지 않고, stderr에 경고만 표시" @@ -1646,12 +1783,12 @@ msgstr "Makefile을 만드시겠습니까? (y/n)" msgid "Create Windows command file? (y/n)" msgstr "Windows 명령 파일을 만드시겠습니까? (y/n)" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "%s 파일을 만드는 중입니다." -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "%s 파일이 이미 존재하여, 건너뜁니다." @@ -1760,12 +1897,12 @@ msgstr "EPUB 사용" msgid "Extension options" msgstr "확장 기능 옵션" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "%s 확장 기능 사용" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "임의의 확장 기능 사용" @@ -1797,11 +1934,11 @@ msgstr "Makefile/make.bat에서 make 모드 사용" msgid "do not use make-mode for Makefile/make.bat" msgstr "Makefile/make.bat에서 make 모드 사용하지 않음" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "프로젝트 템플릿" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "템플릿 파일에 대한 템플릿 디렉토리" @@ -1829,85 +1966,85 @@ msgstr "sphinx-quickstart는 빈 디렉토리에만 생성됩니다. 새 루트 msgid "Invalid template variable: %s" msgstr "잘못된 템플릿 변수: %s" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "내어쓰기에 의해 비 공백 문자가 제거됨" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "잘못된 캡션: %s" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "줄 번호 지정이 범위를 벗어남 (1-%d): %r" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "\"%s\"과(와) \"%s\" 옵션을 모두 사용할 수 없습니다" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "포함 파일 %r을(를) 찾을 수 없거나 읽지 못했습니다" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "포함 파일 %r을 읽는데 사용한 %r 인코딩이 잘못된 것 같습니다. :encoding: 옵션을 지정해 보십시오" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "포함 파일 %r에서 이름이 %r 인 객체를 찾을 수 없습니다" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "분리된 \"lines\" 집합과 함께 \"lineno-match\"를 사용할 수 없습니다" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "행 지정 %r: 포함 파일 %r에서 가져온 줄이 없습니다" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "toctree glob 패턴 %r 이(가) 어느 문서와도 일치하지 않습니다" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "toctree에 제외된 문서 %r에 대한 참조가 있음" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "toctree에 존재하지 않는 문서 %r에 대한 참조가 있음" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "toctree에서 중복 항목이 발견됨: %s" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "구역 작성자: " -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "모듈 작성자: " -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "코드 작성자: " -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "작성자: " @@ -1915,7 +2052,7 @@ msgstr "작성자: " msgid ".. acks content is not a list" msgstr ".. acks 내용이 목록이 아닙니다" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr ".. hlist 내용이 목록이 아닙니다" @@ -1965,7 +2102,7 @@ msgstr "인용 [%s]이(가) 참조되지 않았습니다." msgid "%s() (built-in function)" msgstr "%s() (내장 함수)" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s 메서드)" @@ -1980,7 +2117,7 @@ msgstr "%s() (클래스)" msgid "%s (global variable or constant)" msgstr "%s (전역 변수 또는 상수)" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s의 속성)" @@ -1989,52 +2126,52 @@ msgstr "%s (%s의 속성)" msgid "Arguments" msgstr "인수" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "예외" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "반환" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "반환 형식" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "%s (모듈)" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "함수" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "메서드" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "클래스" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "데이터" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "속성" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "모듈" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "중복된 %s 설명 (%s에 대한), 다른 항목은 %s (%s)에 있음" @@ -2044,7 +2181,7 @@ msgstr "중복된 %s 설명 (%s에 대한), 다른 항목은 %s (%s)에 있음" msgid "duplicate label of equation %s, other instance in %s" msgstr "중복 레이블의 수식 %s, 다른 인스턴스는 %s에 있음" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "잘못된 math_eqref_format: %r" @@ -2081,352 +2218,374 @@ msgstr "역할" msgid "duplicate description of %s %s, other instance in %s" msgstr "중복된 %s %s 설명, 다른 인스턴스는 %s에 있음" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "%s (C %s)" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "중복 C 선언이며, %s:%s에 정의되었습니다.\n선언은 '.. c:%s:: %s' 입니다." -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "매개변수" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "반환값" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "멤버 변수" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "변수" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "매크로" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "구조체" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "공용체" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "열거형" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "열거자" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "자료형" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "함수 매개변수" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "템플릿 매개변수" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "중복 C++ 선언이며, %s:%s에 정의되었습니다.\n선언은 '.. cpp:%s:: %s' 입니다." -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "콘셉트" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "템플릿 매개변수" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s 모듈)" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "%s (%s 모듈)" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "%s (내장 변수)" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "%s (내장 클래스)" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "%s (%s 클래스)" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s의 클래스 메서드)" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s의 정적 메서드)" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "%s (%s의 특성)" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "Python 모듈 목록" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "모듈" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "폐지됨" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "예외" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "클래스 메서드" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "정적 메서드" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "특성" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "상호 참조 %r에 대해 둘 이상의 대상을 찾았습니다: %s" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr " (폐지됨)" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "변수" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "예외 발생" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "환경 변수; %s" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "잘못된 옵션 설명 %r, \"opt\", \"-opt args\", \"--opt args\", \"/opt args\", \"+opt args\"와 같은 형식이어야 합니다" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "%s 명령줄 옵션" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "명령줄 옵션" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "용어 앞에는 빈 줄이 와야 합니다" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "용어 정의는 빈 줄로 구분하면 안됩니다." -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "용어 정의 형식이 잘못된 것 같습니다. 들여쓰기를 확인하십시오" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "용어 항목" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "문법 토큰" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "참조 레이블" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "환경 변수" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "프로그램 옵션" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "문서" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "모듈 목록" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "검색 페이지" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "중복 레이블 %s, 다른 인스턴스는 %s에 있음" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "중복된 %s 설명 (%s에 대한), 다른 인스턴스는 %s에 있음" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig가 비활성화되었습니다. :numref:는 무시됩니다." -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "상호 참조를 생성하지 못했습니다. 어떤 번호도 할당되지 않았습니다: %s" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "링크에 캡션이 없습니다: %s" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "잘못된 numfig_format: %s (%r)" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "잘못된 numfig_format: %s" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "정의되지 않은 레이블: %r" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "상호 참조를 생성하지 못했습니다. 제목 또는 캡션을 찾을 수 없습니다: %r" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "새로운 설정" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "설정이 변경됨" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "확장 기능이 변경됨" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "빌드 환경 버전이 최신이 아님" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "원본 디렉토리가 변경됨" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "이 환경은 선택한 빌더와 호환되지 않습니다. 다른 doctree 디렉토리를 선택하십시오." -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "%s에서 문서를 탐색하지 못했습니다: %r" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "%r 영역이 등록되지 않았습니다" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "문서가 어느 toctree에도 포함되어 있지 않음" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "자체 참조된 toctree가 발견되었습니다. 무시합니다." -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "%s 문서" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "%s 참조" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "알 수 없는 색인 항목 유형 %r" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "기호" @@ -2462,17 +2621,17 @@ msgstr "이미지 파일 %s을(를) 읽을 수 없음: %s" msgid "download file not readable: %s" msgstr "다운로드 가능 파일을 읽을 수 없음: %s" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "%s에 이미 구역 번호가 할당되었습니다 (중첩된 번호 붙인 toctree?)" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "%s 파일을 작성합니다." -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2484,149 +2643,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "\n<MODULE_PATH>에서 Python 모듈 및 패키지를 재귀적으로 찾고\nautomodule 지시문이 있는 패키지 당 하나의 reST 파일을 <OUTPUT_PATH>에 만듭니다.\n\n<EXCLUDE_PATTERN>은 생성에서 제외할 파일 또는 디렉토리 패턴일 수 있습니다.\n\n참고: 기본적으로이 스크립트는 이미 생성된 파일을 덮어 쓰지 않습니다." -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "문서에 대한 모듈 경로" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "생성에서 제외할 fnmatch 형식의 파일 또는 디렉토리 패턴" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "모든 출력을 저장할 디렉토리" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "목차에 표시할 하위 모듈의 최대 깊이 (기본값: 4)" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "기존 파일 덮어쓰기" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "심볼릭 링크를 따라갑니다. collective.recipe.omelette과 결합하면 강력합니다." -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "파일을 생성하지 않고 스크립트 실행" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "각 모듈에 대한 문서를 개별 페이지에 배치" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "\"_private\" 모듈 포함" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "목차의 파일 이름 (기본값: modules)" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "목차 파일을 만들지 않음" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "모듈/패키지에 대한 제목을 만들지 않음 (예: docstring에 이미 포함된 경우)" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "서브 모듈 문서 앞에 모듈 문서를 넣음" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "PEP-0420 암시적 네임 스페이스 사양에 따라 모듈 경로 해석" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "파일 확장자 (기본값: rst)" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "sphinx-quickstart로 전체 프로젝트 생성" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "--full이 주어졌을 때, sys.path에 module_path 추가" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "프로젝트 이름 (기본값: 루트 모듈 이름)" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "--full이 주어졌을 때, 프로젝트 작성자" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "--full이 주어졌을 때, 프로젝트 버전" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "--full이 주어졌을 때, 프로젝트의 릴리스이며 기본값은 --doc-version 값과 같음" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "확장 기능 옵션" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "%s은(는) 디렉토리가 아닙니다." +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "잘못된 정규식 %r (%s에서)" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "%s 모듈을 가져올 수 없습니다: %s" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "소스에서 커버리지 테스트가 완료되었으며, %(outdir)s/python.txt 에서 결과를 확인하십시오." -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "coverage_c_regexes의 잘못된 정규표현식 %r" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "문서화되지 않은 C API: %s [%s], 파일 %s" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "%s 모듈을 가져올 수 없습니다: %s" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "문서화되지 않은 Python 함수: %s :: %s" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "문서화되지 않은 Python 클래스: %s :: %s" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "문서화되지 않은 Python 메소드: %s :: %s :: %s" @@ -2667,7 +2848,7 @@ msgstr "%s 블록(%s:%s)에 코드/출력 없음" msgid "ignoring invalid doctest code: %r" msgstr "잘못된 doctest 코드 무시: %r" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "====================== 가장 느린 읽기 시간 =======================" @@ -2743,7 +2924,7 @@ msgstr "[그래프: %s]" msgid "[graph]" msgstr "[그래프]" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2751,7 +2932,7 @@ msgid "" "Traceback: %s" msgstr "이미지 변환 명령 %r을(를) 실행할 수 없습니다. 'sphinx.ext.imgconverter'에는 기본적으로 ImageMagick이 필요합니다. 해당 프로그램이 설치되어 있는지 확인하거나, 'image_converter' 옵션을 사용자 정의 변환 명령으로 설정하십시오.\n\n역추적: %s" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2761,99 +2942,39 @@ msgid "" "%r" msgstr "convert가 오류와 함께 종료되었습니다:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "변환 명령 %r을(를) 실행할 수 없습니다. image_converter 설정을 확인하십시오." -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "LaTeX 명령 %r을(를) 실행할 수 없습니다 (수식 표시에 필요). imgmath_latex 설정을 확인하십시오" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "%s 명령 %r을(를) 실행할 수 없습니다 (수식 표시에 필요). imgmath_%s 설정을 확인하십시오" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "표시 LaTeX %r: %s" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "인라인 LaTeX %r: %s" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "intersphinx 인벤토리가 이동함: %s -> %s" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "%s 에서 intersphinx 인벤토리 로드 중…" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "일부 인벤토리에서 몇 가지 문제가 발생했지만, 동작하는 대체 인벤토리로 처리했습니다:" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "다음 문제가 있어 어느 인벤토리도 도달하지 못했습니다:" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "(%s v%s에서)" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "(%s에서)" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "외부 %s:%s 참조 대상을 찾을 수 없음: %s" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "intersphinx 식별자 %r이(가) 문자열이 아닙니다. 무시합니다" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "intersphinx_mapping[%s]을(를) 읽지 못했으며, 무시합니다: %r" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[소스]" @@ -3029,23 +3150,23 @@ msgstr "%r에 대한 서명을 업데이트하지 못했습니다. 매개변수 msgid "Failed to parse type_comment for %r: %s" msgstr "%r에 대한 type_comment를 해석하지 못했습니다: %s" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "autosummary가 제외된 문서 %r을(를) 참조합니다. 무시합니다." -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "autosummary: 스텁 파일 %r을(를) 찾을 수 없습니다. autosummary_generate 설정을 확인하십시오." -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "캡션이 있는 자동 요약에는 :toctree: 옵션이 필요합니다. 무시합니다." -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3053,46 +3174,52 @@ msgid "" "%s" msgstr "autosummary: %s을(를) import 하지 못했습니다.\n가능한 힌트:\n%s" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "이름 %s을(를) 해석하지 못함" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "객체 %s을(를) import 하지 못함" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: 파일을 찾을 수 없음: %s" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "autosummary: 문서화 할 %r을(를) 결정하지 못했으며, 다음 예외가 발생했습니다:\n%s" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[autosummary] 자동 요약 생성: %s" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "[autosummary] %s에 기록" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3100,7 +3227,7 @@ msgid "" "%s" msgstr "[autosummary] %s을(를) import 하지 못했습니다.\n가능한 힌트:\n%s" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3115,36 +3242,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\nautosummary 지시문을 사용하여 ReStructuredText를 생성합니다.\n\nsphinx-autogen은 sphinx.ext.autosummary.generate의 프런트엔드입니다.\n주어진 입력 파일에 포함된 autosummary 지시문에서 reStructuredText 파일을 생성합니다.\n\nautosummary 지시문의 형식은 ``sphinx.ext.autosummary`` Python 모듈에 문서화되어 있으며 다음 명령을 사용하여 읽을 수 있습니다.\n\n pydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "rST 파일을 생성할 원본 파일" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "모든 출력을 저장할 디렉토리" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "파일의 기본 확장자 (기본값: %(default)s)" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "사용자 정의 템플릿 디렉토리 (기본값: %(default)s)" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "가져온 멤버 문서화 (기본값: %(default)s)" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "모듈 __all__ 속성의 구성원만 정확히 문서화합니다. (기본값: %(default)s)" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "intersphinx 식별자 %r이(가) 문자열이 아닙니다. 무시합니다" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "intersphinx_mapping[%s]을(를) 읽지 못했으며, 무시합니다: %r" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "일부 인벤토리에서 몇 가지 문제가 발생했지만, 동작하는 대체 인벤토리로 처리했습니다:" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "다음 문제가 있어 어느 인벤토리도 도달하지 못했습니다:" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "intersphinx 인벤토리가 이동함: %s -> %s" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "(%s v%s에서)" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "(%s에서)" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "외부 %s:%s 참조 대상을 찾을 수 없음: %s" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "키워드 매개변수" @@ -3201,65 +3393,65 @@ msgstr "잘못된 문자열 리터럴 (닫는 따옴표 누락): %s" msgid "malformed string literal (missing opening quote): %s" msgstr "잘못된 문자열 리터럴 (여는 따옴표 누락): %s" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "주의" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "조심" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "위험" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "오류" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "힌트" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "중요" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "참고" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "더 보기" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "팁" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "경고" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "이전 페이지에서 계속" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "다음 페이지에 계속" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "알파벳 이외" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "숫자" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "페이지" @@ -3268,7 +3460,7 @@ msgstr "페이지" msgid "Table of Contents" msgstr "목차" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "검색" @@ -3326,12 +3518,12 @@ msgstr "모든 모듈 조견표" msgid "all functions, classes, terms" msgstr "함수, 클래스 및 용어 개관" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" -msgstr "색인 – %(key)s" +msgid "Index – %(key)s" +msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3350,31 +3542,31 @@ msgstr "큰 경우가 있으므로 주의" msgid "Navigation" msgstr "탐색" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "%(docstitle)s에서 찾기" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "이 문서 정보" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "저작권" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "최종 업데이트: %(last_updated)s" -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3477,7 +3669,7 @@ msgstr "검색 중" msgid "Preparing search..." msgstr "검색 준비 중…" -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr ", 문서 - " @@ -3486,11 +3678,11 @@ msgid "Hide Search Matches" msgstr "검색 일치 숨기기" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "사이드바 닫기" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "사이드바 열기" @@ -3498,26 +3690,26 @@ msgstr "사이드바 열기" msgid "Contents" msgstr "내용" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "4 개 열 기반 색인을 찾았습니다. 사용하고 있는 확장 기능의 버그일 수 있습니다: %r" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "각주 [%s]이(가) 참조되지 않았습니다." -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "각주 [#]이 참조되지 않았습니다." @@ -3566,17 +3758,17 @@ msgstr "%s:%s 참조 대상을 찾을 수 없음: %s" msgid "%r reference target not found: %s" msgstr "%r 참조 대상을 찾을 수 없음: %s" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "원격 이미지를 가져올 수 없습니다: %s [%d]" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "원격 이미지를 가져올 수 없습니다: %s [%s]" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "알 수 없는 이미지 형식: %s…" @@ -3586,11 +3778,11 @@ msgstr "알 수 없는 이미지 형식: %s…" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "디코드 할 수 없는 원본 문자이며, \"?\"로 대체합니다: %r" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "건너뜀" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "실패" @@ -3601,12 +3793,12 @@ msgid "" "not in the domain." msgstr "%s 영역에서 문제 발생: 필드가 '%s' 역할을 사용해야 하지만, 해당 역할이 도메인에 없습니다." -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "알 수 없는 지시문 또는 역할 이름: %s:%s" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "알 수 없는 노드 유형: %r" @@ -3633,18 +3825,23 @@ msgid "" "it directly: %s" msgstr "잘못된 날짜 형식입니다. 바로 출력하려면 작은 따옴표로 문자열을 인용하십시오: %s" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "toctree에 존재하지 않는 파일 %r에 대한 참조가 있음" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "only 지시문 식을 평가하는 동안 예외 발생: %s" @@ -3654,45 +3851,50 @@ msgstr "only 지시문 식을 평가하는 동안 예외 발생: %s" msgid "default role %s not found" msgstr "기본 역할 %s을(를) 찾을 수 없음" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "numfig_format이 %s에 대해 정의되지 않음" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "%s 노드에 할당되지 않은 ID" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "이미지 크기를 얻어올 수 없습니다. :scale: 옵션을 무시합니다." @@ -3705,31 +3907,36 @@ msgstr "알 수 없는 %r toplevel_sectioning (클래스 %r)" msgid "too large :maxdepth:, ignored." msgstr ":maxdepth:가 너무 크며, 무시합니다." -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "문서 제목이 단일 텍스트 노드가 아님" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "구역, 주제, 표, 조언, 사이드바 안에 있지 않은 제목 노드가 발견됨" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "각주" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "tabularcolumns와 :widths: 옵션이 모두 설정되었습니다. :widths:는 무시됩니다." -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "치수 단위 %s이(가) 잘못되었습니다. 무시합니다." -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "알 수 없는 색인 항목 유형 %s이(가) 발견됨" @@ -3743,11 +3950,11 @@ msgstr "[그림: %s]" msgid "[image]" msgstr "[그림]" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "캡션이 그림 안에 있지 않습니다." -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "구현되지 않은 노드 유형: %r" diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.js b/sphinx/locale/lt/LC_MESSAGES/sphinx.js index 149fbc2..5a90b52 100644 --- a/sphinx/locale/lt/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/lt/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "Pirmyn", "Hide Search Matches": "Pasl\u0117pti paie\u0161kos rezultatus", "Index": "Indeksas", - "Index – %(key)s": "Indeksas – %(key)s", + "Index – %(key)s": "", "Index pages by letter": "Indekso puslapiai pagal raid\u0119", "Indices and tables:": "Indeksai ir lentel\u0117s:", "Last updated on %(last_updated)s.": "Paskutinis atnaujinimas %(last_updated)s.", diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.mo b/sphinx/locale/lt/LC_MESSAGES/sphinx.mo index 1ad1093..f28e8fe 100644 Binary files a/sphinx/locale/lt/LC_MESSAGES/sphinx.mo and b/sphinx/locale/lt/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.po b/sphinx/locale/lt/LC_MESSAGES/sphinx.po index 6830a27..b53bf94 100644 --- a/sphinx/locale/lt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/lt/LC_MESSAGES/sphinx.po @@ -8,134 +8,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: DALIUS DOBRAVOLSKAS <DALIUS@SANDBOX.LT>, 2010\n" "Language-Team: Lithuanian (http://app.transifex.com/sphinx-doc/sphinx-1/language/lt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: lt\n" "Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,75 +156,77 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -232,78 +234,78 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" @@ -488,190 +490,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -680,7 +834,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" @@ -690,7 +844,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -705,28 +859,28 @@ msgstr "" msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "" @@ -815,7 +969,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -843,12 +997,17 @@ msgstr "" msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -933,7 +1092,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -959,13 +1118,13 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -979,144 +1138,149 @@ msgstr "Bendras indeksas" msgid "index" msgstr "indeksas" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "kitas" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "praeitas" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "" @@ -1142,19 +1306,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "Indeksas" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "Leidimas" @@ -1212,18 +1378,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1231,27 +1389,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1263,7 +1400,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1352,7 +1489,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1363,7 +1500,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1645,12 +1782,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1759,12 +1896,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1796,11 +1933,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1828,85 +1965,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "Skyriaus autorius: " -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "Modulio autorius: " -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "Kodo autorius: " -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "Autorius: " @@ -1914,7 +2051,7 @@ msgstr "Autorius: " msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1964,7 +2101,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (itaisytoji funkcija)" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metodas)" @@ -1979,7 +2116,7 @@ msgstr "%s() (klasė)" msgid "%s (global variable or constant)" msgstr "%s (globalus kintamasis arba konstanta)" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atributas)" @@ -1988,52 +2125,52 @@ msgstr "%s (%s atributas)" msgid "Arguments" msgstr "Argumentais" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "Išmeta" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "Grąžinamos reikšmės" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "Grąžinamos reikšmės tipas" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "%s (modulis)" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "funkcija" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "metodas" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "klasė" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "duomenys" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "atribudas" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "modulis" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2043,7 +2180,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2080,352 +2217,374 @@ msgstr "rolė" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "Parametrai" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "narys" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "kintamasis" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "makrokomanda" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "tipas" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "%s() (modulyje %s)" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "%s (modulje %s)" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "%s (įtaisytasis kintamasis)" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "%s (įtaisytoji klasė)" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "%s (klasė iš %s)" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klasės metodas)" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statinis metodas)" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "moduliai" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "Atmestas" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "išimtis" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "klasės metodas" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "statinis metodas" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr " (atmestas)" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "Kintamieji" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "Sukelia" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "aplinkos kintamasis; %s" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "aiškinamasis terminas" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "gramatinė leksema" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "nuorodos požymis" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "aplinkos kintamasis" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "programos parinktis" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "Modulio indeksas" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Paieškos puslapis" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "" @@ -2461,17 +2620,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2483,149 +2642,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2666,7 +2847,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2742,7 +2923,7 @@ msgstr "" msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2750,7 +2931,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2760,99 +2941,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[šaltinis]" @@ -3028,23 +3149,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3052,46 +3173,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3099,7 +3226,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3114,36 +3241,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" @@ -3200,65 +3392,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "Dėmesio" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "Atsargiai" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "Pavojinga" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "Klaida" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "Patarimas" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "Svarbu" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "Pastaba" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "Taip pat žiūrėkite" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "Patarimas" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "Įspėjimas" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "tęsinys iš praeito puslapio" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "" @@ -3267,7 +3459,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Paieška" @@ -3325,12 +3517,12 @@ msgstr "greitas visų modulių pasiekimas" msgid "all functions, classes, terms" msgstr "visos funkcijos, klasės ir terminai" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" -msgstr "Indeksas – %(key)s" +msgid "Index – %(key)s" +msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3349,31 +3541,31 @@ msgstr "gali būti didelis" msgid "Navigation" msgstr "Navigacija" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "Ieškoti tarp %(docstitle)s" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "Apie šiuos dokumentus" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "Autoriaus teisės" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Paskutinis atnaujinimas %(last_updated)s." -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3476,7 +3668,7 @@ msgstr "" msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr "" @@ -3485,11 +3677,11 @@ msgid "Hide Search Matches" msgstr "Paslėpti paieškos rezultatus" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "Paslėpti šoninę juostą" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "Išplėsti šoninę juostą" @@ -3497,26 +3689,26 @@ msgstr "Išplėsti šoninę juostą" msgid "Contents" msgstr "Turinys" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "" @@ -3565,17 +3757,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3585,11 +3777,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "" @@ -3600,12 +3792,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3632,18 +3824,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3653,45 +3850,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3704,31 +3906,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "Išnašos" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3742,11 +3949,11 @@ msgstr "" msgid "[image]" msgstr "[paveiksliukas]" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.js b/sphinx/locale/lv/LC_MESSAGES/sphinx.js index 5648f47..29d5e58 100644 --- a/sphinx/locale/lv/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/lv/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "Izpild\u012bt", "Hide Search Matches": "Pasl\u0113pt atlases v\u0101rdus", "Index": "Indekss", - "Index – %(key)s": "Indekss – %(key)s", + "Index – %(key)s": "", "Index pages by letter": "Lappu\u0161u indekss p\u0113c burtiem", "Indices and tables:": "Indeksi un tabulas:", "Last updated on %(last_updated)s.": "P\u0113d\u0113jas izmai\u0146as %(last_updated)s.", diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.mo b/sphinx/locale/lv/LC_MESSAGES/sphinx.mo index 0f8699d..455c62c 100644 Binary files a/sphinx/locale/lv/LC_MESSAGES/sphinx.mo and b/sphinx/locale/lv/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.po b/sphinx/locale/lv/LC_MESSAGES/sphinx.po index 27f8739..fbe4a4e 100644 --- a/sphinx/locale/lv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/lv/LC_MESSAGES/sphinx.po @@ -7,134 +7,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: Latvian (http://app.transifex.com/sphinx-doc/sphinx-1/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,75 +155,77 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -231,78 +233,78 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" @@ -487,190 +489,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -679,7 +833,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" @@ -689,7 +843,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -704,28 +858,28 @@ msgstr "" msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "" @@ -814,7 +968,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -842,12 +996,17 @@ msgstr "" msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -932,7 +1091,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -958,13 +1117,13 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -978,144 +1137,149 @@ msgstr "Vispārējs indekss" msgid "index" msgstr "indekss" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "nākošais" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "iepriekšējs" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "" @@ -1141,19 +1305,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "Indekss" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "Izlaidums" @@ -1211,18 +1377,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1230,27 +1388,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1262,7 +1399,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1351,7 +1488,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1362,7 +1499,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1644,12 +1781,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1758,12 +1895,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1795,11 +1932,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1827,85 +1964,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "Sekcijas autors: " -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "Moduļa autors: " -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "Koda autors: " -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "Autors: " @@ -1913,7 +2050,7 @@ msgstr "Autors: " msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1963,7 +2100,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (iebūvēta funkcija)" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metods)" @@ -1978,7 +2115,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "%s (globālais mainīgais vai konstanta)" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atributs)" @@ -1987,52 +2124,52 @@ msgstr "%s (%s atributs)" msgid "Arguments" msgstr "Argumenti" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "Izmet" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "Atgriež" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "Atgriežamais tips" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "%s (modulis)" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "funkcija" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "metods" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "klase" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "dati" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "atributs" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "modulis" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2042,7 +2179,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2079,352 +2216,374 @@ msgstr "role" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "Parametri" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "loceklis" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "mainīgais" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "makross" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "tips" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "%s() (moduļī %s)" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "%s (moduļī %s)" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "%s (iebūvētais mainīgais)" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "%s (iebūvēta klase)" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "%s (klase iekš %s)" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klases metods)" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statiskais metods)" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "moduļi" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "Nav ieteicams" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "izņēmums" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "klases metods" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "statiskais metods" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr "" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "Mainīgie" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "Ceļ" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "apkārtnes mainīgais; %s" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "glosārija termins" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "gramatiskais marķieris" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "atsauces virsraksts" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "apkārtnes mainīgais" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "programmas opcija" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "Moduļu indekss" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Atlases lapa" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "" @@ -2460,17 +2619,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2482,149 +2641,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2665,7 +2846,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2741,7 +2922,7 @@ msgstr "" msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2749,7 +2930,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2759,99 +2940,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[kods]" @@ -3027,23 +3148,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3051,46 +3172,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3098,7 +3225,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3113,36 +3240,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" @@ -3199,65 +3391,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "Uzmanību" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "Uzmanies" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "Bīstami" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "Kļūda" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "Mājiens" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "Svarīgi" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "Piezīme" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "Skat.arī" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "Padoms" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "Brīdinājums" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "turpinājums no iepriekšējās lappuses" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "" @@ -3266,7 +3458,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Meklēt" @@ -3324,12 +3516,12 @@ msgstr "ātra piekļuve visiem moduliem" msgid "all functions, classes, terms" msgstr "visas funkcijas, klases un termini" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" -msgstr "Indekss – %(key)s" +msgid "Index – %(key)s" +msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3348,31 +3540,31 @@ msgstr "var būt milzīgs" msgid "Navigation" msgstr "Navigācija" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "Meklēt iekš %(docstitle)s" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "Par šiem dokumentiem" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "Copyright" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Pēdējas izmaiņas %(last_updated)s." -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3475,7 +3667,7 @@ msgstr "" msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr "" @@ -3484,11 +3676,11 @@ msgid "Hide Search Matches" msgstr "Paslēpt atlases vārdus" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "Savērst sānjoslu" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "Izplest sānjoslu" @@ -3496,26 +3688,26 @@ msgstr "Izplest sānjoslu" msgid "Contents" msgstr "Saturs" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "" @@ -3564,17 +3756,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3584,11 +3776,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "" @@ -3599,12 +3791,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3631,18 +3823,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3652,45 +3849,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3703,31 +3905,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "Vēres" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3741,11 +3948,11 @@ msgstr "[attēls: %s]" msgid "[image]" msgstr "[attēls]" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.js b/sphinx/locale/mk/LC_MESSAGES/sphinx.js index 6482f35..8bbf24e 100644 --- a/sphinx/locale/mk/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/mk/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "", "Hide Search Matches": "", "Index": "", - "Index – %(key)s": "", + "Index – %(key)s": "", "Index pages by letter": "", "Indices and tables:": "", "Last updated on %(last_updated)s.": "", diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.mo b/sphinx/locale/mk/LC_MESSAGES/sphinx.mo index 045073c..c16dacd 100644 Binary files a/sphinx/locale/mk/LC_MESSAGES/sphinx.mo and b/sphinx/locale/mk/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.po b/sphinx/locale/mk/LC_MESSAGES/sphinx.po index 800a7be..8634998 100644 --- a/sphinx/locale/mk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/mk/LC_MESSAGES/sphinx.po @@ -8,134 +8,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Vasil Vangelovski <vvangelovski@gmail.com>, 2013\n" "Language-Team: Macedonian (http://app.transifex.com/sphinx-doc/sphinx-1/language/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,75 +156,77 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -232,78 +234,78 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" @@ -488,190 +490,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -680,7 +834,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" @@ -690,7 +844,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -705,28 +859,28 @@ msgstr "" msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "" @@ -815,7 +969,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -843,12 +997,17 @@ msgstr "" msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -933,7 +1092,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -959,13 +1118,13 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -979,144 +1138,149 @@ msgstr "Главна содржина" msgid "index" msgstr "содржина" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "следна" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "претходна" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "%s %s документација" @@ -1142,19 +1306,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "" @@ -1212,18 +1378,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1231,27 +1389,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1263,7 +1400,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1352,7 +1489,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1363,7 +1500,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1645,12 +1782,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1759,12 +1896,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1796,11 +1933,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1828,85 +1965,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "Автор на секцијата:" -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "Автор на модул:" -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "Автор на код:" -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "Автор: " @@ -1914,7 +2051,7 @@ msgstr "Автор: " msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1964,7 +2101,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (вградена функција)" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s метод)" @@ -1979,7 +2116,7 @@ msgstr "%s() (класа)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -1988,52 +2125,52 @@ msgstr "" msgid "Arguments" msgstr "" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "Фрла" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "Враќа" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "Повратен тип" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "функција" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "класа" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2043,7 +2180,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2080,352 +2217,374 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "Параметри" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "член" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "променлива" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "макро" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "тип" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr "" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "погледни %s" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "погледни %s" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "Симболи" @@ -2461,17 +2620,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2483,149 +2642,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2666,7 +2847,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2742,7 +2923,7 @@ msgstr "" msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2750,7 +2931,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2760,99 +2941,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" @@ -3028,23 +3149,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3052,46 +3173,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3099,7 +3226,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3114,36 +3241,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" @@ -3200,65 +3392,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "" @@ -3267,7 +3459,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "" @@ -3325,12 +3517,12 @@ msgstr "" msgid "all functions, classes, terms" msgstr "" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" +msgid "Index – %(key)s" msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3349,31 +3541,31 @@ msgstr "" msgid "Navigation" msgstr "" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3476,7 +3668,7 @@ msgstr "" msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr "" @@ -3485,11 +3677,11 @@ msgid "Hide Search Matches" msgstr "" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "" @@ -3497,26 +3689,26 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "" @@ -3565,17 +3757,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3585,11 +3777,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "" @@ -3600,12 +3792,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3632,18 +3824,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3653,45 +3850,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3704,31 +3906,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3742,11 +3949,11 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.js b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.js index 6a28698..34e805c 100644 --- a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "G\u00e5", "Hide Search Matches": "Skjul s\u00f8keresultat", "Index": "Index", - "Index – %(key)s": "Index – %(key)s", + "Index – %(key)s": "", "Index pages by letter": "Registersider per bokstav", "Indices and tables:": "Registre og tabeller", "Last updated on %(last_updated)s.": "Sist oppdatert %(last_updated)s.", diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo index 019f627..4120df5 100644 Binary files a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo and b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po index b705044..677fcca 100644 --- a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po @@ -8,134 +8,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Per Christian Gaustad, 2024\n" "Language-Team: Norwegian Bokmål (Norway) (http://app.transifex.com/sphinx-doc/sphinx-1/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,75 +156,77 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -232,78 +234,78 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" @@ -488,190 +490,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -680,7 +834,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" @@ -690,7 +844,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -705,28 +859,28 @@ msgstr "" msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "" @@ -815,7 +969,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -843,12 +997,17 @@ msgstr "" msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -933,7 +1092,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -959,13 +1118,13 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -979,144 +1138,149 @@ msgstr "Hovedindex" msgid "index" msgstr "index" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "neste" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "forrige" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "" @@ -1142,19 +1306,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "Index" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "Utgivelse" @@ -1212,18 +1378,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1231,27 +1389,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1263,7 +1400,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1352,7 +1489,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1363,7 +1500,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1645,12 +1782,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1759,12 +1896,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1796,11 +1933,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1828,85 +1965,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "Forfatter av avsnitt: " -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "Forfatter av modul: " -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "Forfatter av kildekode: " -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "Forfatter: " @@ -1914,7 +2051,7 @@ msgstr "Forfatter: " msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1964,7 +2101,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (innebygd funksjon)" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metode)" @@ -1979,7 +2116,7 @@ msgstr "%s() (klasse)" msgid "%s (global variable or constant)" msgstr "%s (global variabel eller konstant)" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribut)" @@ -1988,52 +2125,52 @@ msgstr "%s (%s attribut)" msgid "Arguments" msgstr "Argument" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "Kaster" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "Returnere" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "Retur type" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "funksjon" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "metode" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "klasse" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "attributt" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "modul" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2043,7 +2180,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2080,352 +2217,374 @@ msgstr "rolle" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "Parametere" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "medlem" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "variabel" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "makro" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "type" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "%s() (i modul %s)" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "%s (i modul %s)" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "%s (innebygd variabel)" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "%s (innebygd klasse)" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "%s (klasse i %s)" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klassemetode)" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statisk metode)" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "Python Modulindex" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "moduler" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "Foreldet" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "untak" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "klassemetode" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "statisk metode" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr " (foreldet)" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "Variabler" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "Hever" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "miljøvariabel; %s" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "ordliste" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "grammatikk token" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "referanse-etikett" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "miljøvariabel" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "programvalg" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "Modulindex" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Søkeside" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "se %s" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "se også %s" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "" @@ -2461,17 +2620,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2483,149 +2642,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2666,7 +2847,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2742,7 +2923,7 @@ msgstr "" msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2750,7 +2931,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2760,99 +2941,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[kilde]" @@ -3028,23 +3149,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3052,46 +3173,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3099,7 +3226,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3114,36 +3241,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" @@ -3200,65 +3392,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "Obs" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "Advarsel" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "Fare" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "Feil" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "Hint" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "Viktig" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "Merknad" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "Se også" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "Tips" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "Advarsel" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "fortsettelse fra forrige side" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "fortsetter på neste side" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "Ikke-alfabetisk" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "Tall" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "side" @@ -3267,7 +3459,7 @@ msgstr "side" msgid "Table of Contents" msgstr "Innholdsfortegnelse" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Søk" @@ -3325,12 +3517,12 @@ msgstr "snarvei til alle moduler" msgid "all functions, classes, terms" msgstr "alla funksjoner, klasser, termer" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" -msgstr "Index – %(key)s" +msgid "Index – %(key)s" +msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3349,31 +3541,31 @@ msgstr "kan bli stor" msgid "Navigation" msgstr "Navigering" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "Søk blant %(docstitle)s" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "Om disse dokumentene" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "Opphavsrett" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "© %(copyright_prefix)s %(copyright)s." -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Sist oppdatert %(last_updated)s." -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3476,7 +3668,7 @@ msgstr "Søker" msgid "Preparing search..." msgstr "Forbereder søk …" -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr ", i " @@ -3485,11 +3677,11 @@ msgid "Hide Search Matches" msgstr "Skjul søkeresultat" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "Skjul sidepanelet" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "Utvid sidepanelet" @@ -3497,26 +3689,26 @@ msgstr "Utvid sidepanelet" msgid "Contents" msgstr "Innhold" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "" @@ -3565,17 +3757,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3585,11 +3777,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "" @@ -3600,12 +3792,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3632,18 +3824,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3653,45 +3850,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3704,31 +3906,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "Fotnoter" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3742,11 +3949,11 @@ msgstr "" msgid "[image]" msgstr "[bilde]" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.js b/sphinx/locale/ne/LC_MESSAGES/sphinx.js index ce802c9..1fb80c4 100644 --- a/sphinx/locale/ne/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/ne/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "\u091c\u093e\u0928\u0941\u0939\u094b\u0938\u094d", "Hide Search Matches": "\u0916\u094b\u091c\u0947\u0915\u094b \u0928\u0924\u093f\u091c\u093e\u0939\u0930\u0941 \u0932\u0941\u0915\u093e\u0909\u0928\u0941\u0939\u094b\u0938\u094d", "Index": "\u0905\u0928\u0941\u0938\u0941\u091a\u0940", - "Index – %(key)s": "Index – %(key)s", + "Index – %(key)s": "", "Index pages by letter": "\u0905\u0915\u094d\u0937\u0930 \u0905\u0928\u0941\u0938\u093e\u0930 \u0905\u0928\u0941\u0938\u0941\u091a\u0940\u0915\u093e \u092a\u093e\u0928\u093e", "Indices and tables:": "\u0907\u0928\u094d\u0921\u0940\u0938\u0940\u0938\u094d\u0938 \u0930 \u0924\u0932\u093f\u0915\u093e", "Last updated on %(last_updated)s.": "\u092f\u094b \u092d\u0928\u094d\u0926\u093e \u0905\u0917\u093e\u0921\u0940 %(last_updated)s \u092e\u093e \u0905\u092a\u0921\u0947\u091f \u092d\u090f\u0915\u094b", diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.mo b/sphinx/locale/ne/LC_MESSAGES/sphinx.mo index 74340e3..dceca07 100644 Binary files a/sphinx/locale/ne/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ne/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.po b/sphinx/locale/ne/LC_MESSAGES/sphinx.po index 64bdc69..d721306 100644 --- a/sphinx/locale/ne/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ne/LC_MESSAGES/sphinx.po @@ -9,134 +9,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>, 2016\n" "Language-Team: Nepali (http://app.transifex.com/sphinx-doc/sphinx-1/language/ne/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: ne\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -144,12 +144,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,75 +157,77 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -233,78 +235,78 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" @@ -489,190 +491,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -681,7 +835,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" @@ -691,7 +845,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -706,28 +860,28 @@ msgstr "" msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "" @@ -816,7 +970,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -844,12 +998,17 @@ msgstr "" msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -934,7 +1093,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -960,13 +1119,13 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -980,144 +1139,149 @@ msgstr "सामान्य अनुसुची" msgid "index" msgstr "अनुसुची" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "पछिल्लो" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "अघिल्लो" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "" @@ -1143,19 +1307,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "अनुसुची" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "रीलीज" @@ -1213,18 +1379,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1232,27 +1390,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1264,7 +1401,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1353,7 +1490,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1364,7 +1501,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1646,12 +1783,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1760,12 +1897,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1797,11 +1934,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1829,85 +1966,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "सेक्सनको लेखक" -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "मडुलको लेखक" -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "Codeको लेखक " -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "लेखक" @@ -1915,7 +2052,7 @@ msgstr "लेखक" msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1965,7 +2102,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (built-in function)" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s विधी)" @@ -1980,7 +2117,7 @@ msgstr "%s() (कक्षा)" msgid "%s (global variable or constant)" msgstr "%s (global variable or constant)" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribute)" @@ -1989,52 +2126,52 @@ msgstr "%s (%s attribute)" msgid "Arguments" msgstr "Arguments" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "Throws" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "Returns" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "Return type" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "%s (मडुल)" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "फन्क्सन" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "विधी" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "कक्षा" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "attribute" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "मडुल" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2044,7 +2181,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2081,352 +2218,374 @@ msgstr "भूमिका" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "Parameters" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "सदस्य" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "चल" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "बृहत" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "किसिम" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "%s() (in मडुल %s)" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "%s (in मडुल %s)" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "%s (built-in चल)" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "%s (built-in कक्षा)" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "%s (कक्षा in %s)" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s कक्षा विधी)" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s static विधी)" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "Python Module Index" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "modules" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "Deprecated" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "अपबाद" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "कक्षा विधी" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "static विधी" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr "(deprecated)" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "चलहरू" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "Raises" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "environment variable; %s" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "शब्द-अर्थमा भएको" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "grammar token" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "सन्दर्व सामग्री" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "environment variable" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "कार्यक्रमका बिकल्प" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "मडुल अनुसुची" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "पानामा खोज्नुहोस्" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "%s हेर्नुहोस्" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "%s पनि हेर्नुहोस् " -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "" @@ -2462,17 +2621,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2484,149 +2643,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2667,7 +2848,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2743,7 +2924,7 @@ msgstr "" msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2751,7 +2932,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2761,99 +2942,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[स्रोत]" @@ -3029,23 +3150,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3053,46 +3174,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3100,7 +3227,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3115,36 +3242,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" @@ -3201,65 +3393,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "ध्यानाकर्षण" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "होसियार " -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "खतरा" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "गलत" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "सङ्केत" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "जरुरी" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "टिप्पणी" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "पनि हेर्नुहोस" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "Tip" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "साबधान" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "अघिल्लो पानासँग जोडीएको" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "" @@ -3268,7 +3460,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "खोज्नुहोस् " @@ -3326,12 +3518,12 @@ msgstr "सबै मोदुलेसमा छिटै जानुहोस msgid "all functions, classes, terms" msgstr "सबै फन्क्सनस्, कक्षाहरू र टर्मस्" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" -msgstr "Index – %(key)s" +msgid "Index – %(key)s" +msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3350,31 +3542,31 @@ msgstr "धेरै ठुलो हुन सक्छ" msgid "Navigation" msgstr "नेभिगेसन " -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "यी डकुमेन्टहरुको बारेमा" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "कपिराइट " -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "यो भन्दा अगाडी %(last_updated)s मा अपडेट भएको" -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3477,7 +3669,7 @@ msgstr "" msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr "" @@ -3486,11 +3678,11 @@ msgid "Hide Search Matches" msgstr "खोजेको नतिजाहरु लुकाउनुहोस्" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "साइडबर सानो बनाउनुहोस्" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "साइडबर ठुलो बनाउनुहोस्" @@ -3498,26 +3690,26 @@ msgstr "साइडबर ठुलो बनाउनुहोस्" msgid "Contents" msgstr "विषयसूची" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "" @@ -3566,17 +3758,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3586,11 +3778,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "" @@ -3601,12 +3793,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3633,18 +3825,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3654,45 +3851,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3705,31 +3907,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "फूट्नोट्स" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3743,11 +3950,11 @@ msgstr "" msgid "[image]" msgstr "[चित्र]" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.js b/sphinx/locale/nl/LC_MESSAGES/sphinx.js index beb790c..c2db594 100644 --- a/sphinx/locale/nl/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/nl/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "Zoek", "Hide Search Matches": "Zoekresultaten verbergen", "Index": "Index", - "Index – %(key)s": "Index – %(key)s", + "Index – %(key)s": "", "Index pages by letter": "Index pagineerd per letter", "Indices and tables:": "Indices en tabellen:", "Last updated on %(last_updated)s.": "Laatste aanpassing op %(last_updated)s.", diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.mo b/sphinx/locale/nl/LC_MESSAGES/sphinx.mo index d8da438..5024379 100644 Binary files a/sphinx/locale/nl/LC_MESSAGES/sphinx.mo and b/sphinx/locale/nl/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.po b/sphinx/locale/nl/LC_MESSAGES/sphinx.po index 879b2bd..1a939cb 100644 --- a/sphinx/locale/nl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nl/LC_MESSAGES/sphinx.po @@ -14,134 +14,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>, 2021\n" "Language-Team: Dutch (http://app.transifex.com/sphinx-doc/sphinx-1/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "Kan bronmap niet vinden (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "Bron- en doelmap kunnen niet identiek zijn" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "Sphinx v%s start op" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Dit project vereist tenminste Sphinx v%s, en kan daarom niet worden gebouwd met deze versie." -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "aanmaken doelmap" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' gedefinieerd in conf.py is niet aanroepbaar (geen Python-callable). Pas a.u.b. de definitie aan zodat het een oproepbare functie wordt. Dit is nodig voor conf.py om zich als een Sphinx extensie te gedragen." -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "laden van vertalingen [%s]... " -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "klaar" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "mislukt: %s" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "Geen bouwer geselecteerd, dus de standaardbouwer wordt gebruikt: html" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "gelukt" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "afgerond met problemen" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "bouwen %s, %s waarschuwing." -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "bouwen %s." -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +149,12 @@ msgid "" "explicit" msgstr "de %s extensie geeft niet aan of deze veilig is voor parallel lezen, er wordt aangenomen dat dit niet zo is - vraag de auteur van de extensie om dit te controleren en expliciet te maken" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,75 +162,77 @@ msgid "" "explicit" msgstr "de %s extensie geeft niet aan of deze veilig is voor parallel schrijven, er wordt aangenomen dat dit niet zo is - vraag de auteur van de extensie om dit te controleren en expliciet te maken" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "seriële verwerking van %s" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "configuratiemap bevat geen conf.py bestand (%s)" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "kan dictionary-instelling %r niet overschrijven in configuratie, wordt genegeerd (gebruik %r om individuele elementen te overschrijven)" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "ongeldig getal %r voor configuratiewaarde %r, wordt genegeerd" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "kan instelling %r niet overschrijven met zo'n waarde van een niet-ondersteund type; wordt genegeerd" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "onbekende configuratiewaarde %r tijdens overschrijven, wordt genegeerd" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "Configuratiewaarde %r was reeds aangevoerd" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -238,78 +240,78 @@ msgid "" "%s" msgstr "Een fout heeft zich voorgedaan in uw configuratiebestand:\n\n%s" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "Sectie %s" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "Fig. %s" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "Tabel %s" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "Codefragment %s" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r onbekend, wordt genegeerd." -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "Gebeurtenis %r bestaat reeds" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "Onbekende gebeurtenisnaam: %s" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" @@ -494,190 +496,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "instelling %s.%s komt niet voor in de doorzochte thema configuraties" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "bestand %r in thema pad is geen geldige zipfile of bevat geen thema" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "bestand %r zoals gegeven op de opdrachtregel is niet aanwezig in de bronmap, wordt genegeerd" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -686,7 +840,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" @@ -696,7 +850,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -711,28 +865,28 @@ msgstr "" msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "" @@ -821,7 +975,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -849,12 +1003,17 @@ msgstr "" msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -939,7 +1098,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -965,13 +1124,13 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -985,144 +1144,149 @@ msgstr "Algemene index" msgid "index" msgstr "index" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "volgende" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "vorige" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "%s %s documentatie" @@ -1148,19 +1312,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "Index" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "Release" @@ -1218,18 +1384,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1237,27 +1395,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1269,7 +1406,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1358,7 +1495,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1369,7 +1506,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1651,12 +1788,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1765,12 +1902,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1802,11 +1939,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "sjabloonmap voor sjabloonbestanden" @@ -1834,85 +1971,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "Ongeldig onderschrift: %s" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "Gebruik van zowel \"%s\" als \"%s\" opties is niet toegestaan" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "Include bestand %r is niet gevonden of het lezen is mislukt" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "Encodering %r gebruikt voor het lezen van include-bestand %r lijkt verkeerd, probeer een :encoding: optie te specificeren" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "Object met naam %r is niet gevonden in include bestand %r" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "\"lineno-match\" kan niet gebruikt worden met een disjuncte set \"lines\"" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "Regels %r: geen regels gebruikt uit include-bestand %r" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "Auteur van deze sectie: " -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "Auteur van deze module: " -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "Auteur van deze broncode:" -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "Auteur: " @@ -1920,7 +2057,7 @@ msgstr "Auteur: " msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1970,7 +2107,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (ingebouwde functie)" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s methode)" @@ -1985,7 +2122,7 @@ msgstr "%s() (klasse)" msgid "%s (global variable or constant)" msgstr "%s (globale variabele of constante)" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribuut)" @@ -1994,52 +2131,52 @@ msgstr "%s (%s attribuut)" msgid "Arguments" msgstr "Argumenten" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "Werpt" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "Returns" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "Return type" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "%s (module)" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "functie" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "methode" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "klasse" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "attribuut" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "module" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2049,7 +2186,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "duplicaatlabel van formule %s, andere in %s" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2086,352 +2223,374 @@ msgstr "rol" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "Parameters" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "member" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "variabele" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "macro" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "enum" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "type" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "Sjabloonparameters" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "concept" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "%s() (in module %s)" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "%s (in module %s)" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "%s (geïntegreerde variabele)" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "%s (geïntegreerde klasse)" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "%s (klasse in %s)" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klassemethode)" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statische methode van %s)" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "Python-moduleïndex" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "modules" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "Verouderd" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "exceptie" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "klassemethode" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "statische methode" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr " (verouderd)" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "Variabelen" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "Veroorzaakt" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "omgevingsvariabele; %s" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "woordenlijstterm" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "grammaticatoken" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "verwijzingslabel" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "omgevingsvariabele" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "programmaoptie" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "document" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "Module-index" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Zoekpagina" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "onderschrift ontbreekt voor link: %s" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "bronmap is gewijzigd" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "zie %s" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "zie %s" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "Symbolen" @@ -2467,17 +2626,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2489,149 +2648,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "bestandsextensie (standaardwaarde: rst)" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "%s is geen map." +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2672,7 +2853,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2748,7 +2929,7 @@ msgstr "[graaf: %s]" msgid "[graph]" msgstr "[graaf]" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2756,7 +2937,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2766,99 +2947,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "(in %s v%s)" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "(in %s)" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[broncode]" @@ -3034,23 +3155,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3058,46 +3179,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3105,7 +3232,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3120,36 +3247,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "(in %s v%s)" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "(in %s)" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "Sleutelwoordargumenten" @@ -3206,65 +3398,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "Let op" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "Pas op" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "Gevaar" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "Fout" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "Hint" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "Belangrijk" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "Notitie" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "Zie ook" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "Tip" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "Waarschuwing" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "Vervolgd van vorige pagina" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "Vervolgt op volgende pagina" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "pagina" @@ -3273,7 +3465,7 @@ msgstr "pagina" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Zoeken" @@ -3331,12 +3523,12 @@ msgstr "sneltoegang naar alle modules" msgid "all functions, classes, terms" msgstr "alle functies, klasses en begrippen" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" -msgstr "Index – %(key)s" +msgid "Index – %(key)s" +msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3355,31 +3547,31 @@ msgstr "kan heel groot zijn" msgid "Navigation" msgstr "Navigatie" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "Zoeken in %(docstitle)s" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "Over deze documenten" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "Copyright" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Laatste aanpassing op %(last_updated)s." -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3482,7 +3674,7 @@ msgstr "Bezig met zoeken" msgid "Preparing search..." msgstr "Zoeken aan het voorbereiden..." -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr ", in" @@ -3491,11 +3683,11 @@ msgid "Hide Search Matches" msgstr "Zoekresultaten verbergen" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "Zijpaneel inklappen" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "Zijpaneel uitklappen" @@ -3503,26 +3695,26 @@ msgstr "Zijpaneel uitklappen" msgid "Contents" msgstr "Inhoudsopgave" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "" @@ -3571,17 +3763,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3591,11 +3783,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "" @@ -3606,12 +3798,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3638,18 +3830,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3659,45 +3856,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3710,31 +3912,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "Voetnoten" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3748,11 +3955,11 @@ msgstr "[afbeelding: %s]" msgid "[image]" msgstr "[afbeelding]" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "onderschrift niet binnen figuur." -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.js b/sphinx/locale/pl/LC_MESSAGES/sphinx.js index 9b08b8a..cd67d7b 100644 --- a/sphinx/locale/pl/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/pl/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "Szukaj", "Hide Search Matches": "Ukryj wyniki wyszukiwania", "Index": "Indeks", - "Index – %(key)s": "Indeks – %(key)s", + "Index – %(key)s": "", "Index pages by letter": "Strony indeksu alfabetycznie", "Indices and tables:": "Indeksy i tablice:", "Last updated on %(last_updated)s.": "Ostatnia modyfikacja %(last_updated)s.", diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.mo b/sphinx/locale/pl/LC_MESSAGES/sphinx.mo index 379c19f..523e1fc 100644 Binary files a/sphinx/locale/pl/LC_MESSAGES/sphinx.mo and b/sphinx/locale/pl/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.po b/sphinx/locale/pl/LC_MESSAGES/sphinx.po index 3035227..5808432 100644 --- a/sphinx/locale/pl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pl/LC_MESSAGES/sphinx.po @@ -13,134 +13,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Adam C <adam.chyla@gmail.com>, 2023\n" "Language-Team: Polish (http://app.transifex.com/sphinx-doc/sphinx-1/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: pl\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "Nie odnaleziono katalogu źródłowego (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "Katalog wyjściowy (%s) nie jest katalogiem" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "Katalog źródłowy i katalog docelowy nie mogą być identyczne" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "Uruchamianie Sphinksa v%s" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Ten projekt potrzebuje Sphinksa w wersji co najmniej %s, dlatego nie może zostać zbudowany z tą wersją." -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "tworzenie katalogu wyjścia" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "podczas ustawiania rozszerzenia %s:" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' podany w conf.py nie jest wywoływalny. Prosimy zmienić jego definicję tak, aby była wywoływalną funkcją. Jest to potrzebne w conf.py, aby zachowywało się jak rozszerzenie Sphinksa." -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "ładowanie tłumaczeń [%s]..." -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "gotowe" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "niedostępne dla wbudowanych wiadomości" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "ładowanie zapakowanego środowiska" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "nie powiodło się: %s" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "Nie wybrano buildera, używamy domyślnego: html" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "zakończony sukcesem" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "zakończony z problemami" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "build %s, %s ostrzeżenie (z ostrzeżeniami traktowanymi jako błędy)." -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "build %s, %s ostrzeżenie." -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "build %s." -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "klasa %r jest już zarejestrowana, jej wizytorzy zostaną nadpisani" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "dyrektywa %r jest już zarejestrowana, jej wizytorzy zostaną nadpisani" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "rola %r jest już zarejestrowana, jej wizytorzy zostaną nadpisani" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -148,12 +148,12 @@ msgid "" "explicit" msgstr "rozszerzenie %s nie deklaruje, czy jest bezpieczne do czytania współbieżnego, zakładamy że nie jest – prosimy zapytać autora rozszerzenie o sprawdzenie i zadeklarowania tego wprost" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -161,75 +161,77 @@ msgid "" "explicit" msgstr "rozszerzenie %s nie deklaruje, czy jest bezpieczne do pisania współbieżnego, zakładamy że nie jest – prosimy zapytać autora rozszerzenia o sprawdzenie i zadeklarowanie tego wprost" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "tworzenie serii %s" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "folder konfiguracyjny nie zawiera pliku conf.py (%s)" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "nie można nadpisać słownikowego ustawienia konfiguracji %r, ignorowanie (użyj %r, by ustawić poszczególne elementy)" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "niepoprawna liczba %r dla wartości konfiguracji %r, ignorowanie" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "nie można nadpisać ustawienia konfiguracji %r nie wspieranym typem, ignorowanie" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "nieznana wartość konfiguracji %r w nadpisaniu, ignorowanie" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "Wartość konfiguracji %r już podana" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "W twoim piku konfiguracyjnym jest błąd składniowy: %s\n" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Plik konfiguracyjny (albo jeden z modułów przez niego zaimportowanych) wywołał sys.exit()" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -237,78 +239,78 @@ msgid "" "%s" msgstr "W twoim piku konfiguracyjnym jest błąd programowalny: \n\n%s" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "Rozdział %s" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "Rys. %s" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "Tabela %s" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "Listing %s" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "Wartość konfiguracyjna `{name}` musi być jednym z {candidates}, a podany jest `{current}`." -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "Nie odnaleziono primary_domain %r, zignorowano." -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "Zdarzenie %r już obecne" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "Nieznana nazwa zdarzenia: %s" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" @@ -493,190 +495,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "ustawienie %s.%s nie występuje w żadnej z przeszukiwanych konfiguracji motywów" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "plik %r na ścieżce motywu nie jest poprawnym plikiem zip lub nie zawiera motywu" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "Błąd kodowania:" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "Błąd rekursji:" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "Wystąpił wyjątek:" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "budowanie [mo]:" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "pisanie wyjścia..." -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "wszystkie z %d plików po" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "wsztstkie pliki źródłowe" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "plik %r podany w wierszu poleceń nie znajduje się w katalogu źródłowym, ignoruję" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "%d plików źródłowych podano w wierszu poleceń" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "znaleziono %d" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "nic nie znaleziono" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -685,7 +839,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "kopiowanie obrazków..." @@ -695,7 +849,7 @@ msgstr "kopiowanie obrazków..." msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -710,28 +864,28 @@ msgstr "" msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "nieznany mimetype dla %s, ignoruję" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "pisanie pliku %s..." @@ -820,7 +974,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "nieprawidłowy css_file: %r, zignorowano" @@ -848,12 +1002,17 @@ msgstr "" msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "zepsuty odnośnik: %s (%s)" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "Nie znaleziono kotwicy '%s'" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -938,7 +1097,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "Pliki tekstowe są w %(outdir)s." -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -964,13 +1123,13 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "Strony HTML są w %(outdir)s." -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -984,144 +1143,149 @@ msgstr "Indeks ogólny" msgid "index" msgstr "indeks" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "dalej" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "wstecz" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "kopiowanie plików do pobrania..." -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "nie można skopiować pliku statycznego %r" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "nie można skopiować dodatkowego pliku %r" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "Wystąpił błąd podczas renderowania strony %s.\nPowód: %r" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "nieprawidłowy js_file: %r, zignorowano" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "Podano nieznany math_renderer %r." -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "plik favicon %r nie istnieje" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "%s %s - dokumentacja" @@ -1147,19 +1311,21 @@ msgstr "nie znaleziono wartości konfiguracyjnej \"latex_documents\"; żadne dok msgid "\"latex_documents\" config value references unknown document %s" msgstr "wartość konfiguracyjna \"latex_documents\" odwołuje się do nieznanego dokumentu %s" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "Indeks" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "Wydanie" @@ -1217,18 +1383,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "Błąd kodowania:" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1236,27 +1394,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "Błąd rekursji:" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "Wystąpił wyjątek:" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1268,7 +1405,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1357,7 +1494,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1368,7 +1505,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "zwiększ szczegółowość (może być powtórzone)" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1650,12 +1787,12 @@ msgstr "Stworzyć Makefile? (y/n)" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "Tworzenie pliku %s." -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "Plik %s już istnieje, pomijam." @@ -1764,12 +1901,12 @@ msgstr "" msgid "Extension options" msgstr "Opcje rozszerzeń" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "włącz rozszerzenie %s" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1801,11 +1938,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1833,85 +1970,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "Nieprawidłowy podpis: %s" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "Nie można użyć jednocześnie opcji \"%s\" i \"%s\"" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "Plik include %r nie znaleziony lub nie powiódł się jego odczyt" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "Kodowanie %r użyte do odczytu pliku include %r wydaje się być złe, spróbuj dając opcję :encoding:" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "Nie znaleziono obiektu o nazwie %r w pliku include %r" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "Nie można użyć „lineno-match” z rozłącznym zbiorem „lines”" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "Specyfikacja linii %r: nie wyciągnięto żadnych linii z pliku include %r" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "Autor rozdziału: " -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "Autor modułu: " -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "Autor kodu: " -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "Autor: " @@ -1919,7 +2056,7 @@ msgstr "Autor: " msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1969,7 +2106,7 @@ msgstr "Cytat [%s] nie ma odniesienia." msgid "%s() (built-in function)" msgstr "%s() (funkcja wbudowana)" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metoda)" @@ -1984,7 +2121,7 @@ msgstr "%s() (klasa)" msgid "%s (global variable or constant)" msgstr "%s (zmienna globalna lub stała)" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atrybut)" @@ -1993,52 +2130,52 @@ msgstr "%s (%s atrybut)" msgid "Arguments" msgstr "Argumenty" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "Wyrzuca" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "Zwraca" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "Typ zwracany" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "%s (moduł)" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "funkcja" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "metoda" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "klasa" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "dane" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "atrybut" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "moduł" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2048,7 +2185,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "zduplikowana etykieta równania %s, inne wystąpienie w %s" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "Nieprawidłowy math_eqref_format: %r" @@ -2085,352 +2222,374 @@ msgstr "rola" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "Parametry" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "pole" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "zmienna" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "makro" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "unia" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "enum" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "typ" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "Parametry szablonu" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "koncepcja" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "%s() (w module %s)" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "%s (w module %s)" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "%s (zmienna wbudowana)" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "%s (klasa wbudowana)" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "%s (klasa w module %s)" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s metoda klasy)" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s metoda statyczna)" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "Indeks modułów Pythona" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "moduły" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "Niezalecane" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "wyjątek" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "metoda klasy" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "statyczna metoda" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr " (niezalecane)" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "Zmienne" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "Wyrzuca" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "zmienna środowiskowa; %s" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "termin glosariusza" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "symbol gramatyki" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "etykieta odsyłacza" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "zmienna środowiskowa" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "opcja programu" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "dokument" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "Indeks modułów" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Wyszukiwanie" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "nowa konfiguracja" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "konfiguracja zmieniona" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "rozszerzenie zmienione" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "katalog źródłowy został zmieniony" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "Domena %r nie jest zarejestrowana" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "zobacz %s" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "zobacz także %s" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "Symbole" @@ -2466,17 +2625,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2488,149 +2647,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "maksymalna głębokość submodułów wyświetlanych w spisie treści (domyślnie: 4)" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "nadpisz istniejące pliki" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "wykonaj skrypt bez tworzenia plików" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "nie twórz pliku spisu treści" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "rozszerzenie pliku (domyślnie: rst)" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "%s nie jest katalogiem." +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "nieprawidłowe wyrażenie regularne %r w %s" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "moduł %s nie mógł zostać zaimportowany: %s" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "nieprawidłowe wyrażenie regularne %r w coverage_c_regexes" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "moduł %s nie mógł zostać zaimportowany: %s" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2671,7 +2852,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2747,7 +2928,7 @@ msgstr "[wykres: %s]" msgid "[graph]" msgstr "[wykres]" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2755,7 +2936,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2765,99 +2946,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "(w %s v%s)" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr " (w %s)" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[źródło]" @@ -3033,23 +3154,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3057,46 +3178,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3104,7 +3231,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3119,36 +3246,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "domyślny sufiks dla plików (domyślnie: %(default)s)" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "(w %s v%s)" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr " (w %s)" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "Argumenty Nazwane" @@ -3205,65 +3397,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "Uwaga" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "Ostrzeżenie" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "Niebezpieczeństwo" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "Błąd" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "Podpowiedź" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "Ważne" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "Informacja" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "Zobacz także" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "Wskazówka" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "Ostrzeżenie" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "kontynuacja poprzedniej strony" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "ciąg dalszy na następnej stronie" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "Niealfabetyczny" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "Liczby" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "strona" @@ -3272,7 +3464,7 @@ msgstr "strona" msgid "Table of Contents" msgstr "Spis treści" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Szukaj" @@ -3330,12 +3522,12 @@ msgstr "szybki dostęp do wszystkich modułów" msgid "all functions, classes, terms" msgstr "wszystkie funkcje, klasy, terminy" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" -msgstr "Indeks – %(key)s" +msgid "Index – %(key)s" +msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3354,31 +3546,31 @@ msgstr "może być ogromny" msgid "Navigation" msgstr "Nawigacja" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "Szukaj pośród %(docstitle)s" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "O tych dokumentach" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "Copyright" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Ostatnia modyfikacja %(last_updated)s." -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3481,7 +3673,7 @@ msgstr "Wyszukiwanie" msgid "Preparing search..." msgstr "Inicjalizacja wyszukiwania..." -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr ", w " @@ -3490,11 +3682,11 @@ msgid "Hide Search Matches" msgstr "Ukryj wyniki wyszukiwania" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "Zwiń pasek boczny" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "Rozwiń pasek boczny" @@ -3502,26 +3694,26 @@ msgstr "Rozwiń pasek boczny" msgid "Contents" msgstr "Treść" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "" @@ -3570,17 +3762,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "Nieznany format obrazka: %s..." @@ -3590,11 +3782,11 @@ msgstr "Nieznany format obrazka: %s..." msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "" @@ -3605,12 +3797,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3637,18 +3829,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3658,45 +3855,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3709,31 +3911,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "Przypisy" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "%s" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3747,11 +3954,11 @@ msgstr "[obraz: %s]" msgid "[image]" msgstr "[obraz]" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.js b/sphinx/locale/pt/LC_MESSAGES/sphinx.js index 71c62bb..92521cc 100644 --- a/sphinx/locale/pt/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/pt/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "", "Hide Search Matches": "", "Index": "", - "Index – %(key)s": "", + "Index – %(key)s": "", "Index pages by letter": "", "Indices and tables:": "", "Last updated on %(last_updated)s.": "", diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt/LC_MESSAGES/sphinx.mo index 9e04a6c..b975362 100644 Binary files a/sphinx/locale/pt/LC_MESSAGES/sphinx.mo and b/sphinx/locale/pt/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.po b/sphinx/locale/pt/LC_MESSAGES/sphinx.po index 01d79c2..d470544 100644 --- a/sphinx/locale/pt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt/LC_MESSAGES/sphinx.po @@ -7,134 +7,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: Portuguese (http://app.transifex.com/sphinx-doc/sphinx-1/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: pt\n" "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,75 +155,77 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -231,78 +233,78 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" @@ -487,190 +489,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -679,7 +833,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" @@ -689,7 +843,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -704,28 +858,28 @@ msgstr "" msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "" @@ -814,7 +968,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -842,12 +996,17 @@ msgstr "" msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -932,7 +1091,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -958,13 +1117,13 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -978,144 +1137,149 @@ msgstr "" msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "" @@ -1141,19 +1305,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "" @@ -1211,18 +1377,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1230,27 +1388,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1262,7 +1399,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1351,7 +1488,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1362,7 +1499,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1644,12 +1781,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1758,12 +1895,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1795,11 +1932,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1827,85 +1964,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "" @@ -1913,7 +2050,7 @@ msgstr "" msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1963,7 +2100,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1978,7 +2115,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -1987,52 +2124,52 @@ msgstr "" msgid "Arguments" msgstr "" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2042,7 +2179,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2079,352 +2216,374 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr "" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "" @@ -2460,17 +2619,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2482,149 +2641,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2665,7 +2846,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2741,7 +2922,7 @@ msgstr "" msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2749,7 +2930,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2759,99 +2940,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" @@ -3027,23 +3148,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3051,46 +3172,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3098,7 +3225,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3113,36 +3240,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" @@ -3199,65 +3391,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "" @@ -3266,7 +3458,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "" @@ -3324,12 +3516,12 @@ msgstr "" msgid "all functions, classes, terms" msgstr "" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" +msgid "Index – %(key)s" msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3348,31 +3540,31 @@ msgstr "" msgid "Navigation" msgstr "" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3475,7 +3667,7 @@ msgstr "" msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr "" @@ -3484,11 +3676,11 @@ msgid "Hide Search Matches" msgstr "" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "" @@ -3496,26 +3688,26 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "" @@ -3564,17 +3756,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3584,11 +3776,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "" @@ -3599,12 +3791,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3631,18 +3823,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3652,45 +3849,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3703,31 +3905,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3741,11 +3948,11 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.js b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.js index 149b8e6..005618f 100644 --- a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "Ir", "Hide Search Matches": "Esconder Resultados da Busca", "Index": "\u00cdndice", - "Index – %(key)s": "\u00cdndice – %(key)s", + "Index – %(key)s": "\u00cdndice – %(key)s", "Index pages by letter": "P\u00e1ginas de \u00edndice por letra", "Indices and tables:": "\u00cdndices e Tabelas:", "Last updated on %(last_updated)s.": "\u00daltima atualiza\u00e7\u00e3o em %(last_updated)s.", diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo index a200764..9f959ba 100644 Binary files a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo and b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po index 4943f0e..37411b3 100644 --- a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po @@ -13,134 +13,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2019-2024\n" "Language-Team: Portuguese (Brazil) (http://app.transifex.com/sphinx-doc/sphinx-1/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: pt_BR\n" "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "Não foi possível encontrar o diretório de origem (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "O diretório de saída (%s) não é um diretório" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "Diretório de origem e o diretório de destino não podem ser idênticos" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "Executando Sphinx v%s" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Este projeto precisa de pelo menos Sphinx v%s e, portanto, não pode ser construído com esta versão." -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "criando o diretório de saída" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "enquanto definia a extensão %s:" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "“setup”, conforme definido atualmente em conf.py, não é um invocável do Python. Modifique sua definição para torná-la uma função que pode ser chamada. Isso é necessário para o conf.py se comportar como uma extensão do Sphinx." -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "carregando traduções [%s]… " -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "feito" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "não disponível para mensagens internas" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "carregando ambiente com pickle" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "falha: %s" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "Nenhum construtor selecionado, usando padrão: html" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "bem-sucedida" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "finalizada com problemas" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "construção %s, %s aviso. (com avisos tratados como erros)." -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "construção %s, %s avisos (com avisos tratados como erros)." -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "construção %s, %s aviso." -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "construção %s, %s avisos." -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "construção %s." -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "classe de nodo %r já está registrada, seus visitantes serão sobrescritos" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "diretiva %r já está registrada, ela será sobrescrita" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "papel %r já está registrado, ele será sobrescrito" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -148,12 +148,12 @@ msgid "" "explicit" msgstr "a extensão %s não declara se é segura para leitura em paralelo, supondo que não seja – peça ao autor da extensão para verificar e torná-la explícita" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "a extensão %s não é segura para leitura em paralelo" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -161,75 +161,77 @@ msgid "" "explicit" msgstr "a extensão %s não declara se é segura para escrita em paralelo, supondo que não seja – peça ao autor da extensão para verificar e torná-la explícita" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "a extensão %s não é segura para escrita em paralelo" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "fazendo serial %s" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "o diretório de configuração não contém um arquivo conf.py (%s)" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "Valor de configuração inválido encontrado: 'language = None'. Atualize sua configuração para um código de idioma válido. Voltando para 'en' (inglês)." -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "não foi possível sobrescrever a configuração do dicionário %r ignorando (use %r para definir elementos individuais)" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "número inválido %r para valor de configuração %r, ignorando" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "não é possível sobrescrever a configuração %r com tipo sem suporte, ignorando" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "valor de configuração desconhecido %r na sobrescrita, ignorando" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "Valor de configuração inexistente: %r" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "Valor da configuração %r já presente" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" -msgstr "não é possível fazer cache de valor de configuração não serializável com pickle: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" +msgstr "não é possível armazenar em cache o valor de configuração não selecionável: %r (porque contém uma função, classe ou objeto de módulo)" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Há um erro de sintaxe em seu arquivo de configuração: %s\n" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "O arquivo de configuração (ou um dos módulos que ele importa) chamou sys.exit()" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -237,78 +239,78 @@ msgid "" "%s" msgstr "Há um erro de programável em seu arquivo de configuração:\n\n%s" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "Falha ao converter %r em um conjunto ou tupla" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "O valor da configuração “source_suffix” espera uma string, lista de strings ou dicionário. Mas “%r” é fornecido." -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "Seção %s" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "Fig. %s" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "Tabela %s" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "Listagem %s" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "O valor da configuração “{name}” deve ser um entre {candidates}, mas “{current}” é fornecido." -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "O valor da configuração “{name}” possui tipo “{current.__name__}”; esperava {permitted}." -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "O valor da configuração “{name}” possui tipo “{current.__name__}”; o padrão é “{default.__name__}”." -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r não encontrado, ignorado." -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "Desde v2.0, Sphinx usa \"index\" como root_doc por padrão. Adicione \"root_doc = 'contents'\" ao seu conf.py." -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "Evento %r já presente" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "Nome de evento desconhecido: %s" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "O manipulador %r para evento %r levantou uma exceção" @@ -481,7 +483,7 @@ msgstr "a extensão %r retornou um objeto não suportado de sua função setup() #: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" -msgstr "Propostas Estendidas Python; PEP %s" +msgstr "Propostas de Melhorias do Python; PEP %s" #: sphinx/roles.py:222 #, python-format @@ -493,190 +495,342 @@ msgstr "Número de PEP inválido %s" msgid "invalid RFC number %s" msgstr "Número de RFC inválido %s" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "As seções de configuração de tema diferentes de [theme] e [options] não são suportadas, retornando o valor padrão (tentei obter um valor de %r)" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "a configuração %s.%s ocorre em nenhuma das configurações de tema pesquisadas" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "sem suporte à opção de tema %r fornecida" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "o arquivo %r no caminho de tema não é um arquivo zip válido ou contém nenhum tema" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "nenhum tema chamado %r encontrado (faltando theme.toml?)" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "O tema %r tem uma hierarquia circular" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "O tema %r herda de %r, que não é um tema carregado. Temas carregados são: %s" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "O tema %r tem muitos ancestrais" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "nenhum arquivo de configuração de tema encontrado em %r" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "o tema %r não tem a tabela “theme”" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "A tabela \"[theme]\" do tema %r não é uma tabela" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "O tema %r deve definir a configuração \"theme.inherit\"." -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "A tabela \"[options]\" do tema %r não é uma tabela" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "A configuração \"theme.pygments_style\" deve ser uma tabela. Dica: \"%s\"" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "Uso:" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "{0} [OPÇÕES] <COMMAND> [<ARGS>]" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr " O gerador de documentação Sphinx." + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "Comandos:" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "Opções" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "Para mais informações, visite https://www.sphinx-doc.org/pt-br/master/man/." + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "{0}: erro: {1}\nExecute '{0} --help' para informações" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr " Gerencia documentação com Sphinx" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "Mostra a versão e sai." + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "Mostra esta mensagem e sai" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "Logging" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "Aumenta a verbosidade (pode ser repetido)" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "Só imprime erros e avisos." + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "Nenhuma saída" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "<comando>" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "Veja 'sphinx --help'.\n" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "Ocorreu uma exceção, iniciando o depurador:" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "Interrompido!" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "Erro de marcação reStructuredText:" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "Erro de codificação:" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "Erro de recursão:" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "Isso pode acontecer com arquivos fonte muito grande e profundamente aninhados. Você pode aumentar com cuidado o limite padrão de recursão do Python de 1000 no conf.py com, por exemplo:" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "Ocorreu uma exceção:" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "O traceback completo foi salvo em:" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "Para relatar este erro aos desenvolvedores, por favor abra uma issue em <https://github.com/sphinx-doc/sphinx/issues/>. Obrigado!" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "Por favor, relate isso também se houver um erro do usuário, para que uma mensagem de erro melhor possa ser fornecida na próxima vez." + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "uma imagem adequada para o construtor %s não encontrada: %s (%s)" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "uma imagem adequada para o construtor %s não encontrada: %s" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "construindo [mo]: " -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "escrevendo saída… " -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "todos os %d arquivos po" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "alvos para %d arquivos po que estão especificados" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "alvos para %d arquivos po que estão desatualizados" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "todos os arquivos-fonte" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "arquivo %r fornecido na linha de comando não existe," -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "o arquivo %r fornecido na linha de comando não está dentro do diretório fonte, ignorando" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "o arquivo %r fornecido na linha de comando não é um documento válido, ignorando" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "%d arquivos-fonte dados na linha de comando" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "alvos para %d arquivos fonte que estão desatualizados" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "construindo [%s]: " -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "procurando por arquivos agora desatualizados… " -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "%d encontrado" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "nenhum encontrado" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "tornando um ambiente pickle" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "verificando consistência" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "nenhum alvo está desatualizado." -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "atualizando ambiente: " -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s adicionado(s), %s alterado(s), %s removido(s)" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "O Sphinx não consegue carregar o documento mestre (%s) porque ele corresponde a um padrão de exclusão embutido %r. Mova seu documento mestre para um local diferente." + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "O Sphinx não consegue carregar o documento mestre (%s) porque ele corresponde a um padrão de exclusão especificado no conf.py, %r. Remova este padrão do conf.py." + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "O Sphinx não consegue carregar o documento mestre (%s) porque ele não está incluído no include_patterns = %r personalizado. Certifique-se de que um padrão em include_patterns corresponda ao documento mestre." + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "O Sphinx não consegue carregar o documento mestre (%s). O documento mestre deve estar no diretório fonte ou em um subdiretório dele." + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "lendo fontes… " -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "docnames para escrever: %s" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "preparando documentos" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "copiando ativos" @@ -685,7 +839,7 @@ msgstr "copiando ativos" msgid "duplicated ToC entry found: %s" msgstr "entrada de tabela de conteúdos duplicada encontrada: %s" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "copiando imagens… " @@ -695,7 +849,7 @@ msgstr "copiando imagens… " msgid "cannot read image file %r: copying it instead" msgstr "não foi possível ler o arquivo de imagem %r: copiando-o" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -710,28 +864,28 @@ msgstr "não foi possível escrever arquivo de imagem %r: %s" msgid "Pillow not found - copying image files" msgstr "Pillow não encontrado – copiando arquivos de imagem" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "escrevendo o arquivo mimetype..." -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "escrevendo o arquivo META-INF/container.xml..." -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "escrevendo o arquivo content.opf..." -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "tipo mime desconhecido para %s, ignorando" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "escrevendo o arquivo toc.ncx..." -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "escrevendo arquivo %s…" @@ -820,7 +974,7 @@ msgstr "o valor da configuração “epub_identifier” não deve estar vazio pa msgid "conf value \"version\" should not be empty for EPUB3" msgstr "o valor da configuração “version” não deve estar vazio para EPUB3" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "css_file inválido: %r, ignorado" @@ -848,12 +1002,17 @@ msgstr "escrevendo catálogos de mensagens… " msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "Procure por quaisquer erros na saída acima ou em %(outdir)s/output.txt" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "link quebrado: %s (%s)" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "Âncora “%s” não encontrada" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "Falha ao compilar regex em linkcheck_allowed_redirects: %r %s" @@ -938,7 +1097,7 @@ msgstr "erro ao escrever o arquivo Makefile: %s" msgid "The text files are in %(outdir)s." msgstr "Os arquivos texto estão em %(outdir)s." -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -964,13 +1123,13 @@ msgstr "arquivo de informações da construção está quebrado: %r" msgid "The HTML pages are in %(outdir)s." msgstr "As páginas HTML estão em %(outdir)s." -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "Falha ao ler o arquivo de informações de construção: %r" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -984,144 +1143,149 @@ msgstr "Índice Geral" msgid "index" msgstr "índice" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "Logo de %s" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "próximo" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "anterior" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "gerando índices" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "escrevendo páginas adicionais" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "copiando arquivos baixáveis… " -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "não foi possível copiar o arquivo baixável %r: %s" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "Falha ao copiar um arquivo em html_static_file: %s: %r" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "copiando arquivos estáticos" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "não foi possível copiar o arquivo estático %r" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "copiando arquivos extras" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "não foi possível copiar o arquivo extra %r" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "Falha ao escrever o arquivo de informações de construção: %r" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "não foi possível carregar o índice de pesquisa, mas nem todos os documentos serão construídos: o índice ficará incompleto." -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "a página %s corresponde a dois padrões em html_sidebars: %r e %r" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "ocorreu um erro Unicode ao renderizar a página %s. Verifique se todos os valores de configuração que contêm conteúdo não ASCII são strings Unicode." -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "Ocorreu um erro ao renderizar a página %s.\nMotivo: %r" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "despejando inventário de objetos" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "despejando índice de pesquisa em %s" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "js_file inválido: %r, ignorado" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "Muitos math_renders estão registrados, mas nenhum math_renderer está selecionado." -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "math_renderer desconhecido %r é fornecido." -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "a entrada de html_extra_path %r não existe" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "entrada de html_extra_path %r está posicionada dentro de outdir" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "a entrada de html_static_path %r não existe" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "entrada de html_static_path %r está posicionada dento de outdir" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "o arquivo logo %r não existe" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "o arquivo favicon %r não existe" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "HTML 4 não encontra mais suporte no Sphinx. (\"html4_writer=True\" detectado nas opções de configuração)" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "Documentação %s %s" @@ -1147,19 +1311,21 @@ msgstr "nenhuma valor da configuração “latex_documents” encontrado; nenhum msgid "\"latex_documents\" config value references unknown document %s" msgstr "o valor da configuração “latex_documents” faz referência a um documento desconhecido %s" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "Índice" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "Release" @@ -1217,18 +1383,10 @@ msgstr "Nenhuma nota de rodapé foi encontrada para o nó de referência %r" msgid "Exception occurred while building, starting debugger:" msgstr "Ocorreu uma exceção enquanto construía, iniciando depurador:" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "Interrompido!" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "Erro de marcação reST:" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "Erro de codificação:" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1236,27 +1394,6 @@ msgid "" "the developers." msgstr "O rastro completo foi salvo em %s, caso você queira relatar o problema aos desenvolvedores." -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "Erro de recursão:" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "Isso pode acontecer com arquivos fonte muito grande e profundamente aninhados. Você pode aumentar com cuidado o limite padrão de recursão do Python de 1000 no conf.py com, por exemplo:" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "Ocorreu uma exceção:" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "Por favor, relate isso também se houver um erro do usuário, para que uma mensagem de erro melhor possa ser fornecida na próxima vez." - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1268,7 +1405,7 @@ msgid "job number should be a positive number" msgstr "número de tarefas deve ser um número positivo" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "Para mais informações, visite <https://www.sphinx-doc.org/>." @@ -1357,7 +1494,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "define tag: inclui blocos “only” com TAG" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "modo exigente: avisa sobre todas as referências em falta" #: sphinx/cmd/build.py:184 @@ -1368,7 +1505,7 @@ msgstr "opções de saída do console" msgid "increase verbosity (can be repeated)" msgstr "aumenta o nível de detalhamento (pode ser repetido)" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "nenhuma saída para stdout, apenas avisos na stderr" @@ -1650,12 +1787,12 @@ msgstr "Criar um Makefile? (y/n)" msgid "Create Windows command file? (y/n)" msgstr "Criar um arquivo de comando do Windows? (y/n)" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "Criando o arquivo %s." -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "O arquivo %s já existe, ignorando." @@ -1764,12 +1901,12 @@ msgstr "usa epub" msgid "Extension options" msgstr "Opções extensão" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "habilita a extensão %s" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "habilita extensões arbitrárias" @@ -1801,11 +1938,11 @@ msgstr "usa modo make para Makefile/make.bat" msgid "do not use make-mode for Makefile/make.bat" msgstr "não usa modo make para Makefile/make.bat" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "Modelo de projeto" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "diretório para arquivos de modelos" @@ -1833,85 +1970,85 @@ msgstr "sphinx-quickstart só gera em um diretório vazio. Especifique um novo c msgid "Invalid template variable: %s" msgstr "Variável de modelo inválida: %s" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "espaços não em branco eliminados por dedent" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "Legenda inválida: %s" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "especificação de número de linha está fora da faixa(1-%d): %r" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "Não é possível usar as opções “%s” e “%s” juntas" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "Arquivo incluído %r não encontrado ou sua leitura falhou" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "A codificação %r usada para ler o arquivo incluído %r parece estar errada, tente passar uma opção :encoding:" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "O objeto chamado %r não foi encontrado no arquivo incluído %r" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "Não é possível usar “lineo-match” com um conjunto separado de “lines”" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "Especificação de linha %r: nenhuma linha obtida do arquivo incluído %r" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "o padrão de glob do toctree %r não correspondeu a nenhum documento." -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "toctree contém referência ao documento excluído %r" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "toctree contém referência ao documento inexistente %r" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "entrada duplicada encontrada no toctree: %s" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "Autor da seção: " -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "Autor do módulo: " -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "Autor do código: " -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "Autor: " @@ -1919,7 +2056,7 @@ msgstr "Autor: " msgid ".. acks content is not a list" msgstr ".. conteúdo acks não está na lista" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr ".. conteúdo hlist não está na lista" @@ -1969,7 +2106,7 @@ msgstr "citação [%s] não é referenciada." msgid "%s() (built-in function)" msgstr "%s() (função interna)" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "%s() (método %s)" @@ -1984,7 +2121,7 @@ msgstr "%s() (classe)" msgid "%s (global variable or constant)" msgstr "%s (variável global ou constante)" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "%s (atributo %s)" @@ -1993,52 +2130,52 @@ msgstr "%s (atributo %s)" msgid "Arguments" msgstr "Argumentos" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "Lança" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "Retorna" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "Tipo de retorno" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "%s (módulo)" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "função" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "método" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "classe" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "dado" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "atributo" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "módulo" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "descrição duplicada de %s de %s, outro %s em %s" @@ -2048,7 +2185,7 @@ msgstr "descrição duplicada de %s de %s, outro %s em %s" msgid "duplicate label of equation %s, other instance in %s" msgstr "rótulo duplicado da equação %s, outra instância em %s" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "math_eqref_format inválido: %r" @@ -2085,352 +2222,374 @@ msgstr "papel" msgid "duplicate description of %s %s, other instance in %s" msgstr "descrição duplicada de %s %s, outra instância em %s" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "%s (C %s)" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "Declaração C duplicada, também definida em %s:%s.\nA declaração é '.. c:%s:: %s'." -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "Parâmetros" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "Valores de retorno" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "membro" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "variável" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "macro" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "struct" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "união" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "enum" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "enumerador" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "tipo" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "parâmetro de função" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "Parâmetros do Modelo" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "Declaração C++ duplicada, também definida em %s:%s.\nA declaração é '.. cpp:%s:: %s'." -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "conceito" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "parâmetro de modelo" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "%s() (no módulo %s)" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "%s (no módulo %s)" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "%s (variável interna)" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "%s (classe interna)" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "%s (classe em %s)" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "%s() (método de classe %s)" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "%s() (método estático %s)" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "%s (propriedade %s )" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "%s (apelido de tipo em %s)" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "Índice de Módulos Python" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "módulos" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "Obsoleto" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "exceção" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "método de classe" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "método estático" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "propriedade" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "apelido de tipo" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "descrição duplicada de objeto de %s, outra instância em %s, use :no-index: para um deles" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "mais de um alvo localizado para referência cruzada %r: %s" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr " (obsoleto)" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "Variáveis" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "Levanta" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "variável de ambiente; %s" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "%s; valor de configuração" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "Type" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "Default" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "Descrição de opção %r malformada, deve se parecer com “opt”, “-opt args”, “--opt args”, “/opt args” ou “+opt args”" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "%s opção de linha de comando" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "opção de linha de comando" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "um termo de glossário deve ser precedido por uma linha vazia" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "termos de glossário não devem ser separados por linhas vazias" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "o glossário parece estar mal formatado, confira o recuo" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "Glossário de Termos" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "termo gramatical" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "marca referencial" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "variável de ambiente" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "opção do programa" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "documento" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "Índice do Módulo" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Página de Busca" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "rótulo duplicada %s, outra instância em %s" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "descrição duplicada de %s de %s, outra instância em %s" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig está desabilitado. :numref: é ignorado." -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "Falha ao criar uma referência cruzada. Qualquer número não foi atribuído: %s" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "o link não possui legenda: %s" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "numfig_format inválido: %s (%r)" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "numfig_format inválido: %s" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "rótulo não definido: %r" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "Falha ao criar uma referência cruzada. Título ou legenda não encontrado: %r" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "nova configuração" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "configuração alterada" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "extensões alteradas" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "a versão do ambiente de construção não é a atual" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "diretório de fontes foi alterado" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "Este ambiente é incompatível com o construtor selecionado, por favor escolha outro diretório de doctree." -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "Falha ao procurar documentos em %s: %r" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "O domínio %r ainda não está registrado" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "o documento não está incluído em nenhum toctree" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "toctree autorreferenciada encontrada. Ignorado." -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "veja %s" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "veja também %s" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "tipo desconhecido de entrada de índice %r" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "Símbolos" @@ -2466,17 +2625,17 @@ msgstr "arquivo de imagem %s não legível: %s" msgid "download file not readable: %s" msgstr "arquivo de download não legível: %s" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "%s já tem números de seção atribuídos (toctree numerada aninhada?)" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "Criaria o arquivo %s." -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2488,149 +2647,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "\nProcura recursivamente em <MODULE_PATH> módulos e pacotes Python e cria um\narquivo reST com diretivas automodule por pacote no <OUTPUT_PATH>.\n\nOs <EXCLUDE_PATTERN>s podem ser padrões de arquivo e/ou diretório que serão\nexcluídos da geração.\n\nNota: Por padrão, este script não substituirá os arquivos já criados." -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "caminho para o módulo a ser documentado" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "padrões de diretório e/ou arquivo no estilo fnmatch para excluir da geração" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "diretório para colocar toda a saída" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "profundidade máxima de submódulos para mostrar no TOC (padrão: 4)" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "sobrescreve arquivos existentes" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "segue links simbólicos. Poderoso quando combinado com collective.recipe.omelette." -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "escreve o script sem criar arquivos" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "coloca a documentação para cada módulo em sua própria página" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "inclui módulos “_private”" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "nome de arquivo da tabela de conteúdo (padrão: modules)" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "não cria um arquivo de tabela de conteúdo" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "não cria títulos para os pacotes de módulo/pacote (p.ex., quando as docstrings já os contêm)" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "coloca documentação de módulo antes da documentação do submódulo" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "interpreta caminhos de módulos de acordo com a especificação de espaços de nomes implícitos PEP-0420" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "sufixo dos arquivos (padrão: rst)" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "Remove os arquivos existentes no diretório de saída que não foram gerados" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "gera um projeto completo com sphinx-quickstart" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "acrescenta module_path a sys.path, usando quando --full é fornecido" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "nome do projeto (padrão nome do módulo raiz)" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "autor(e)s do projeto, usado quando --full é fornecido" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "versão do projeto, usado quando --full é fornecido" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "lançamento do projeto, usado quando --full é fornecido, padrão é --doc-version" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "opções de extensão" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "%s não é um diretório." +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "Falha ao remover %s: %s" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "a seção \"%s\" fica rotulada como \"%s\"" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "regex inválida %r em %s" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "o módulo %s não pôde ser importado: %s" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "os seguintes módulos estão documentados, mas não foram especificados em coverage_modules: %s" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "os seguintes módulos estão especificados em coverage_modules, mas não foram documentados" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "Teste de cobertura nos fontes finalizada, confira os resultados em %(outdir)spython.txt." -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "regex inválida %r em coverage_c_regexes" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "api c não documentada: %s [%s] no arquivo %s" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "o módulo %s não pôde ser importado: %s" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "função python não documentada: %s :: %s" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "classe python não documentada: %s :: %s" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "método python não documentado: %s :: %s :: %s" @@ -2671,7 +2852,7 @@ msgstr "nenhum código/saída no bloco %s em %s:%s" msgid "ignoring invalid doctest code: %r" msgstr "ignorando código de doctest inválido: %r" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "=================== durações de leitura mais lentas ====================" @@ -2747,7 +2928,7 @@ msgstr "[gráfico: %s]" msgid "[graph]" msgstr "[gráfico]" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2755,7 +2936,7 @@ msgid "" "Traceback: %s" msgstr "Não é possível executar o comando de conversão de imagem %r. 'sphinx.ext.imgconverter' requer ImageMagick por padrão. Verifique se ele está instalado ou defina a opção 'image_converter' para um comando de conversão personalizado.\n\nRastreamento: %s" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2765,102 +2946,42 @@ msgid "" "%r" msgstr "convert encerrado com erro:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "comando de conversão %r não pode ser executado, verifique a configuração image_converter" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "o comando LaTeX %r não pode ser executado (necessário para exibir matemáticas), verifique a configuração imgmath_latex" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "o comando %s %r não pode ser executado (necessário para exibir matemáticas), verifique a configuração imgmath_%s" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "exibe latex %r: %s" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "latex em linha %r: %s" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "Link para esta equação" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "o inventário intersphinx foi movido: %s -> %s" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "carregando inventário intersphinx de %s…" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "encontrados alguns problemas com alguns dos inventários, mas eles tem alternativas em funcionamento:" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "falha ao alcançar todos os inventários com os seguintes problemas:" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "(em %s v%s)" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "(em %s)" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "inventário para referência cruzada externa não encontrado: %r" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "sufixo inválido de referência cruzada externa: %r" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "domínio para referência cruzada externa não encontrado: %r" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "alvo da referência externa %s:%s não encontrado: %s" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "identificador intersphinx %r não é uma string. Ignorado" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "Falha ao ler intersphinx_mapping[%s], ignorado: %r" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" -msgstr "[código fonte]" +msgstr "[código-fonte]" #: sphinx/ext/todo.py:69 msgid "Todo" @@ -2899,7 +3020,7 @@ msgstr "Código do módulo" #: sphinx/ext/viewcode.py:310 #, python-format msgid "<h1>Source code for %s</h1>" -msgstr "<h1>Código fonte para %s</h1>" +msgstr "<h1>Código-fonte para %s</h1>" #: sphinx/ext/viewcode.py:336 msgid "Overview: module code" @@ -3033,23 +3154,23 @@ msgstr "Falha ao atualizar a assinatura para %r: parâmetro não encontrado: %s" msgid "Failed to parse type_comment for %r: %s" msgstr "Falha ao analisar type_comment para %r: %s" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "referências de autosummmary excluíram o documento %r. Ignorado." -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "autosummary: arquivo stub não encontrado %r. Verifique sua configuração autosummary_generate." -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "Um autosummary com legenda requer a opção :toctree:. Ignorado." -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3057,46 +3178,52 @@ msgid "" "%s" msgstr "autosummary: falha ao importar %s\nPossíveis dicas:\n%s" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "falha ao analisar o nome %s" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "falha ao importar o objecto %s" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "Os itens resumidos não devem incluir o módulo atual. Substitua %r por %r." + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: arquivo não encontrado: %s" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "autosummary gera arquivos .rst internamente. Mas seu source_suffix não contém .rst. Ignorado." -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "autosummary: falhou em determinar %r a ser documentado, a seguinte exceção foi levantada:\n%s" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[autosummary] gerando autosummary para: %s" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "[autosummary] escrevendo em %s" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3104,7 +3231,7 @@ msgid "" "%s" msgstr "[autosummary] falha ao importar %s\nPossíveis dicas:\n%s" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3119,36 +3246,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\nGera ReStructuredText usando diretivas de resumo automático.\n\nsphinx-autogen é um frontend para sphinx.ext.autosummary.generate.\nEle gera os arquivos reStructuredText a partir de diretivas autosummary\ncontidas nos arquivos de entrada fornecidos.\n\nO formato da diretiva autosummary está documentado no módulo Python\n``sphinx.ext.autosummary`` e pode ser lido usando:\n\n pydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "arquivos-fonte para gerar arquivos rST" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "diretório para colocar toda a saída" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "sufixo padrão para arquivos (padrão: %(default)s)" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "diretório de modelos personalizado (padrão: %(default)s)" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "documenta membros importados (padrão: %(default)s)" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "documenta exatamente os membros no módulo atributo __all__. (padrão: %(default)s)" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "identificador intersphinx %r não é uma string. Ignorado" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "Falha ao ler intersphinx_mapping[%s], ignorado: %r" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "carregando inventário intersphinx '%s' de %s..." + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "encontrados alguns problemas com alguns dos inventários, mas eles tem alternativas em funcionamento:" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "falha ao alcançar todos os inventários com os seguintes problemas:" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "o inventário intersphinx foi movido: %s -> %s" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "(em %s v%s)" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "(em %s)" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "Inventário '%s': várias correspondências encontradas para %s:%s" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "inventário para referência cruzada externa não encontrado: %r" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "sufixo inválido de referência cruzada externa: %r" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "domínio para referência cruzada externa não encontrado: %r" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "alvo da referência externa %s:%s não encontrado: %s" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "Argumentos de Palavras-chave" @@ -3205,65 +3397,65 @@ msgstr "string literal malformada (faltando aspas de fechamento): %s" msgid "malformed string literal (missing opening quote): %s" msgstr "string literal malformada (faltando aspas de abertura): %s" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "Atenção" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "Cuidado" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "Perigo" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "Erro" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "Dica" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "Importante" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "Nota" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "Ver também" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "Dica" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "Aviso" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "continuação da página anterior" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "continua na próxima página" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "Não alfabético" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "Números" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "página" @@ -3272,7 +3464,7 @@ msgstr "página" msgid "Table of Contents" msgstr "Tabela de Conteúdo" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Buscar" @@ -3330,12 +3522,12 @@ msgstr "acesso rápido para todos os módulos" msgid "all functions, classes, terms" msgstr "todas funções, classes, termos" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" -msgstr "Índice – %(key)s" +msgid "Index – %(key)s" +msgstr "Índice – %(key)s" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3354,31 +3546,31 @@ msgstr "pode ser enorme" msgid "Navigation" msgstr "Navegação" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "Pesquisar dentro de %(docstitle)s" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "Sobre esses documentos" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "Copyright" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "© %(copyright_prefix)s %(copyright)s." -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Última atualização em %(last_updated)s." -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3481,7 +3673,7 @@ msgstr "Buscando" msgid "Preparing search..." msgstr "Preparando a busca..." -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr ", em " @@ -3490,11 +3682,11 @@ msgid "Hide Search Matches" msgstr "Esconder Resultados da Busca" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "Recolher painel lateral" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "Expandir painel lateral" @@ -3502,26 +3694,26 @@ msgstr "Expandir painel lateral" msgid "Contents" msgstr "Conteúdos" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "não foi possível calcular o progresso da tradução!" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "nenhum elemento traduzido!" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "Um índice de 4 colunas encontrado. Pode ser um erro de extensões que você usa: %r" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "Nota de rodapé [%s] não é referenciada." -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "Nota de rodapé [#] não é referenciada." @@ -3570,17 +3762,17 @@ msgstr "%s:alvo de referência %s não encontrado: %s" msgid "%r reference target not found: %s" msgstr "alvo de referência %r não encontrado: %s" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "Não foi possível obter imagem remota: %s [%d]" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "Não foi possível obter imagem remota: %s [%s]" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "Formato de imagem desconhecido: %s…" @@ -3590,11 +3782,11 @@ msgstr "Formato de imagem desconhecido: %s…" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "caracteres de origem não codificáveis, substituindo por “?”: %r" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "ignorado" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "falhou" @@ -3605,12 +3797,12 @@ msgid "" "not in the domain." msgstr "Problema no domínio %s: o campo deveria usar o papel \"%s\", mas esse papel não está no domínio." -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "diretiva ou nome de papel desconhecida(o): %s:%s" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "tipo de nó desconhecido: %r" @@ -3637,18 +3829,23 @@ msgid "" "it directly: %s" msgstr "Formato de data inválido. Envolva a string com aspas simples se desejar emiti-la diretamente: %s" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "inventário <%s> contém várias definições para %s" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "%r foi descontinuado para entradas de índice (da entrada %r). Use \"pair: %s\"." -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "toctree contém referência ao arquivo inexistente %r" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "exceção ao avaliar apenas a expressão da diretiva: %s" @@ -3658,45 +3855,50 @@ msgstr "exceção ao avaliar apenas a expressão da diretiva: %s" msgid "default role %s not found" msgstr "papel padrão %s não encontrado" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "Link para esta definição" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "numfig_format não está definido para %s" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "Quaisquer IDs não atribuídos ao nó %s" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "Link para este termo" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "Link para este cabeçalho" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "Link para esta tabela" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "nível de cabeçalho de rubric não suportado: %s" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "Link para este código" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "Link para esta imagem" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "Link para este toctree" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "Não foi possível obter o tamanho da imagem. A opção :scale: foi ignorada." @@ -3709,31 +3911,36 @@ msgstr "toplevel_sectioning %r desconhecido para a classe %r" msgid "too large :maxdepth:, ignored." msgstr ":maxdepth: grande demais, ignorado." -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "modelo %s não encontrado; carregando do legado %s em vez disso" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "título do documento não é um nó único em Text" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "nó de título encontrado não na section, topic, table, admonition ou sidebar" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "Notas de rodapé" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "tabularcolumns e opção :widths: foram fornecidas. :widths: foi ignorada." -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "a unidade de dimensão %s é inválida. Ignorada." -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "tipo desconhecido de entrada de índice %s encontrado" @@ -3747,11 +3954,11 @@ msgstr "[imagem: %s]" msgid "[image]" msgstr "[imagem]" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "legenda não dentro de uma imagem." -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "tipo de nó não implementado: %r" diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.js b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.js index c3a1ceb..9abd11e 100644 --- a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "Ir", "Hide Search Matches": "Esconder Resultados da Pesquisa", "Index": "\u00cdndice", - "Index – %(key)s": "\u00cdndice – %(key)s", + "Index – %(key)s": "", "Index pages by letter": "Paginas de \u00edndice por letra", "Indices and tables:": "\u00cdndices e tabelas:", "Last updated on %(last_updated)s.": "\u00daltima actualiza\u00e7\u00e3o em %(last_updated)s.", diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo index 395ac72..f5f0224 100644 Binary files a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo and b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po index acf5826..e62cb66 100644 --- a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po @@ -9,134 +9,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>, 2016\n" "Language-Team: Portuguese (Portugal) (http://app.transifex.com/sphinx-doc/sphinx-1/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: pt_PT\n" "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -144,12 +144,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,75 +157,77 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -233,78 +235,78 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" @@ -489,190 +491,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -681,7 +835,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" @@ -691,7 +845,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -706,28 +860,28 @@ msgstr "" msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "" @@ -816,7 +970,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -844,12 +998,17 @@ msgstr "" msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -934,7 +1093,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -960,13 +1119,13 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -980,144 +1139,149 @@ msgstr "Índice Geral" msgid "index" msgstr "índice" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "próximo" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "anterior" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "Documentação %s %s" @@ -1143,19 +1307,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "Índice" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "Versão" @@ -1213,18 +1379,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1232,27 +1390,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1264,7 +1401,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1353,7 +1490,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1364,7 +1501,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1646,12 +1783,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1760,12 +1897,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1797,11 +1934,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1829,85 +1966,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "Autor da secção: " -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "Autor do módulo: " -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "Autor do código: " -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "Autor: " @@ -1915,7 +2052,7 @@ msgstr "Autor: " msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1965,7 +2102,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (função interna)" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "%s() (método %s)" @@ -1980,7 +2117,7 @@ msgstr "%s() (classe)" msgid "%s (global variable or constant)" msgstr "%s (variável global ou constante)" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "%s (atributo %s)" @@ -1989,52 +2126,52 @@ msgstr "%s (atributo %s)" msgid "Arguments" msgstr "Parâmetros" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "Gera" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "Retorno" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "Tipo de retorno" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "%s (módulo)" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "função" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "método" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "classe" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "dados" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "atributo" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "módulo" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2044,7 +2181,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2081,352 +2218,374 @@ msgstr "papel" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "Parâmetros" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "membro" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "variável" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "macro" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "tipo" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "%s() (no módulo %s)" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "%s (no módulo %s)" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "%s (variável interna)" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "%s (classe interna)" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "%s (classe em %s)" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "%s() (método de classe %s)" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "%s() (método estático %s)" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "Índice de Módulos do Python" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "módulos" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "Obsoleto" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "excepção" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "método de classe" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "método estático" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr " (obsoleto)" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "Variáveis" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "Levanta" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "variável de ambiente; %s" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "Termo de glossário" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "token de gramática" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "rótulo de referência" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "variável de ambiente" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "opção de programa" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "Índice de Módulos" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Página de Pesquisa" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "ver %s" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "ver também %s" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "Símbolos" @@ -2462,17 +2621,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2484,149 +2643,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2667,7 +2848,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2743,7 +2924,7 @@ msgstr "[gráfico: %s]" msgid "[graph]" msgstr "[gráfico]" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2751,7 +2932,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2761,99 +2942,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "(em %s v%s)" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[código fonte]" @@ -3029,23 +3150,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3053,46 +3174,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3100,7 +3227,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3115,36 +3242,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "(em %s v%s)" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" @@ -3201,65 +3393,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "Atenção" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "Cuidado" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "Perigo" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "Erro" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "Dica" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "Importante" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "Nota" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "Veja também" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "Dica" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "Aviso" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "continuação da página anterior" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "" @@ -3268,7 +3460,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Pesquisar" @@ -3326,12 +3518,12 @@ msgstr "acesso rápido a todos os módulos" msgid "all functions, classes, terms" msgstr "todas as funções, classes, termos" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" -msgstr "Índice – %(key)s" +msgid "Index – %(key)s" +msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3350,31 +3542,31 @@ msgstr "pode ser enorme" msgid "Navigation" msgstr "Navegação" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "Pesquisar dentro de %(docstitle)s" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "Sobre estes documentos" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "Copyright" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Última actualização em %(last_updated)s." -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3477,7 +3669,7 @@ msgstr "A Pesquisar" msgid "Preparing search..." msgstr "A preparar a pesquisa..." -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr ", em" @@ -3486,11 +3678,11 @@ msgid "Hide Search Matches" msgstr "Esconder Resultados da Pesquisa" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "Recolher painel lateral" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "Expandir painel lateral" @@ -3498,26 +3690,26 @@ msgstr "Expandir painel lateral" msgid "Contents" msgstr "Conteúdo" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "" @@ -3566,17 +3758,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3586,11 +3778,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "" @@ -3601,12 +3793,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3633,18 +3825,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3654,45 +3851,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3705,31 +3907,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "Notas de rodapé" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3743,11 +3950,11 @@ msgstr "[imagem: %s]" msgid "[image]" msgstr "[imagem]" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.js b/sphinx/locale/ro/LC_MESSAGES/sphinx.js index fc286c6..0d2696c 100644 --- a/sphinx/locale/ro/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/ro/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "Caut\u0103", "Hide Search Matches": "Ascunde Rezultatele C\u0103ut\u0103rii", "Index": "Index", - "Index – %(key)s": "Index – %(key)s", + "Index – %(key)s": "", "Index pages by letter": "Indexeaz\u0103 paginile dupa liter\u0103", "Indices and tables:": "Indici \u0219i tabele:", "Last updated on %(last_updated)s.": "Ultima actualizare la %(last_updated)s.", diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.mo b/sphinx/locale/ro/LC_MESSAGES/sphinx.mo index 941b215..ad7edb4 100644 Binary files a/sphinx/locale/ro/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ro/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.po b/sphinx/locale/ro/LC_MESSAGES/sphinx.po index 73b0bab..0d1b2b6 100644 --- a/sphinx/locale/ro/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ro/LC_MESSAGES/sphinx.po @@ -9,134 +9,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Razvan Stefanescu <razvan.stefanescu@gmail.com>, 2015-2017\n" "Language-Team: Romanian (http://app.transifex.com/sphinx-doc/sphinx-1/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Proiectul necesită minim Sphinx v%s și de aceea nu poate fi construit cu această versiune." -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "eșuat: %s" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "a reușit" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "a fost finalizat cu probleme" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -144,12 +144,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,75 +157,77 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -233,78 +235,78 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "Fig. %s" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "Tabelul %s" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "Cod %s" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" @@ -489,190 +491,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -681,7 +835,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" @@ -691,7 +845,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -706,28 +860,28 @@ msgstr "" msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "" @@ -816,7 +970,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -844,12 +998,17 @@ msgstr "" msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -934,7 +1093,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -960,13 +1119,13 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -980,144 +1139,149 @@ msgstr "Index General" msgid "index" msgstr "index" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "următor" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "precedent" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "%s %s documentație" @@ -1143,19 +1307,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "Index" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "Versiune" @@ -1213,18 +1379,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1232,27 +1390,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1264,7 +1401,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1353,7 +1490,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1364,7 +1501,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1646,12 +1783,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1760,12 +1897,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1797,11 +1934,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1829,85 +1966,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "Autorul secțiunii:" -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "Autorul modulului:" -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "Autorul codului:" -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "Autor:" @@ -1915,7 +2052,7 @@ msgstr "Autor:" msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1965,7 +2102,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (funcție integrată)" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "%s() (metoda %s)" @@ -1980,7 +2117,7 @@ msgstr "%s() (clasă)" msgid "%s (global variable or constant)" msgstr "%s (variabilă globală sau constantă)" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" @@ -1989,52 +2126,52 @@ msgstr "%s (atribut %s)" msgid "Arguments" msgstr "Argumente" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "Generează" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "Întoarce" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "Tipul întors" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "funcție" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "metodă" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "clasă" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "atribut" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "modul" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2044,7 +2181,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2081,352 +2218,374 @@ msgstr "rol" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "Parametrii" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "membru" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "variabilă" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "macro" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "enumerator" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "tip" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "%s() (în modulul %s)" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "%s (în modulul %s)" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "%s (variabilă integrată)" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "%s (clasă integrată)" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "%s (clasa în %s)" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "%s() (metoda clasei %s)" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "%s() (metoda statică %s)" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "Indexul de Module Python" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "module" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "Învechit" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "excepție" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "metoda clasei" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "metodă statică" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr "(învechit)" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "Variabile" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "Generează" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "variabilă de mediu; %s" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "termen de glosar" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "element de gramatică" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "etichetă de referință" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "variabilă de mediu" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "opțiune a programului" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "Index al modulelor" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Pagină de Căutare" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "vezi %s" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "vezi și %s" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "Simboluri" @@ -2462,17 +2621,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2484,149 +2643,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2667,7 +2848,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2743,7 +2924,7 @@ msgstr "[grafic: %s]" msgid "[graph]" msgstr "[grafic]" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2751,7 +2932,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2761,99 +2942,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "(în %s v%s)" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[sursă]" @@ -3029,23 +3150,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3053,46 +3174,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3100,7 +3227,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3115,36 +3242,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "(în %s v%s)" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" @@ -3201,65 +3393,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "Atenție" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "Avertisment" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "Pericol" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "Eroare" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "Sugestie" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "Important" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "Notă" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "Vezi și" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "Sfat" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "Atenționare" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "continuare din pagina precedentă" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "" @@ -3268,7 +3460,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Căutare" @@ -3326,12 +3518,12 @@ msgstr "acces rapid la toate modulele" msgid "all functions, classes, terms" msgstr "toate funcțiile, clasele, termenii" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" -msgstr "Index – %(key)s" +msgid "Index – %(key)s" +msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3350,31 +3542,31 @@ msgstr "poate fi extrem de mare" msgid "Navigation" msgstr "Navigare" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "Caută în %(docstitle)s" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "Despre aceste documente" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "Drepturi de autor" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Ultima actualizare la %(last_updated)s." -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3477,7 +3669,7 @@ msgstr "Căutare" msgid "Preparing search..." msgstr "Se pregătește căutarea..." -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr ", în" @@ -3486,11 +3678,11 @@ msgid "Hide Search Matches" msgstr "Ascunde Rezultatele Căutării" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "Ascundere bară laterală" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "Expandare bară laterală" @@ -3498,26 +3690,26 @@ msgstr "Expandare bară laterală" msgid "Contents" msgstr "Cuprins" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "" @@ -3566,17 +3758,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3586,11 +3778,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "" @@ -3601,12 +3793,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3633,18 +3825,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3654,45 +3851,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3705,31 +3907,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "Note de subsol" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3743,11 +3950,11 @@ msgstr "[figura: %s]" msgid "[image]" msgstr "[figură]" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.js b/sphinx/locale/ru/LC_MESSAGES/sphinx.js index 4bf2ff7..5c2caae 100644 --- a/sphinx/locale/ru/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/ru/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "\u0418\u0441\u043a\u0430\u0442\u044c", "Hide Search Matches": "\u0421\u043d\u044f\u0442\u044c \u0432\u044b\u0434\u0435\u043b\u0435\u043d\u0438\u0435", "Index": "\u0410\u043b\u0444\u0430\u0432\u0438\u0442\u043d\u044b\u0439 \u0443\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u044c", - "Index – %(key)s": "\u0410\u043b\u0444\u0430\u0432\u0438\u0442\u043d\u044b\u0439 \u0443\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u044c – %(key)s", + "Index – %(key)s": "", "Index pages by letter": "\u0423\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u0438 \u043f\u043e \u0431\u0443\u043a\u0432\u0430\u043c \u0430\u043b\u0444\u0430\u0432\u0438\u0442\u0430", "Indices and tables:": "\u0422\u0430\u0431\u043b\u0438\u0446\u044b \u0438 \u0443\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u0438:", "Last updated on %(last_updated)s.": "\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u043e: %(last_updated)s.", diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo index 3bf0c33..7fdb85b 100644 Binary files a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.po b/sphinx/locale/ru/LC_MESSAGES/sphinx.po index 01dc19f..097db25 100644 --- a/sphinx/locale/ru/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ru/LC_MESSAGES/sphinx.po @@ -5,143 +5,146 @@ # Translators: # Alex Salikov <Salikvo57@gmail.com>, 2019 # Dmitry Shachnev <mitya57@gmail.com>, 2013 +# Dunaevsky Maxim <dunmaksim@yandex.ru>, 2024 # ferm32 <ferm32@gmail.com>, 2014,2016,2019 # FIRST AUTHOR <EMAIL@ADDRESS>, 2013 # Il'ya <ilya@marshal.dev>, 2022 # Konstantin Molchanov <moigagoo@live.com>, 2016 # PyHedgehog <pywebmail@list.ru>, 2015,2017 +# Евгений Ярыкин <yarykin.zhen@yandex.ru>, 2024 +# Евгений Ярыкин <yarykin.zhen@yandex.ru>, 2024 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" -"Last-Translator: Il'ya <ilya@marshal.dev>, 2022\n" +"Last-Translator: Dunaevsky Maxim <dunmaksim@yandex.ru>, 2024\n" "Language-Team: Russian (http://app.transifex.com/sphinx-doc/sphinx-1/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" -msgstr "" +msgstr "Целевой путь (%s) не является каталогом" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" -msgstr "" +msgstr "Исходный и целевой каталоги не должны совпадать" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" -msgstr "" +msgstr "Запуск Sphinx v%s" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Проект требует версию Sphinx не ниже v%s и не может быть построен текущей версией." -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" -msgstr "" +msgstr "создание целевого каталога" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" -msgstr "" +msgstr "при настройку расширения %s:" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " -msgstr "" +msgstr "загрузка переводов [%s]... " -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "готово" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" -msgstr "" +msgstr "недоступно для встроенных сообщений" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "ошибка: %s" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "Сборщик не указан, по умолчанию используется html" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "успешно" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" -msgstr "с ошибками" +msgstr "завершено с ошибками" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." -msgstr "" +msgstr "сборка %s, %s предупреждение (с предупреждениями, рассматриваемыми как ошибки)." -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." -msgstr "" +msgstr "сборка %s, %s предупреждений(-я) (с предупреждениями, рассматриваемыми как ошибки)." -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." -msgstr "" +msgstr "сборка %s, %s предупреждение." -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." -msgstr "" +msgstr "сборка %s, %s предупреждений(-я)." -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "сборка завершена %s." -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" -msgstr "" +msgstr "директива %r уже зарегистрирована, она будет переопределена" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" -msgstr "" +msgstr "роль %r уже зарегистрирована, она будет переопределена" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +152,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" -msgstr "" +msgstr "расширение %s не безопасно для параллельного чтения" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,75 +165,77 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "в конфигурационной папке нет файла conf.py file (%s)" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" -msgstr "" +msgstr "некорректное число %r для настройки %r, пропускается" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" -msgstr "" +msgstr "не удалось переопределить настройку %r с неподдерживаемым типом, пропускается" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" -msgstr "" +msgstr "неизвестное значение параметра конфигурации %r в переопределении, пропускается" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" -msgstr "" +msgstr "Нет такого значения конфигурации: %r" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "Ключ конфигурации %r уже существует" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" -msgstr "" +msgstr "Синтаксическая ошибка в вашем файле конфигурации: %s\n" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Файл конфигурации (или один из импортированных модулей) вызвал sys.exit()" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -238,81 +243,81 @@ msgid "" "%s" msgstr "В вашем файле конфигурации программная ошибка:\n\n%s" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" -msgstr "" +msgstr "Ошибка преобразования %r во множество или кортеж" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "Раздел %s" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "Рис. %s" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "Таблица %s" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "Список %s" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." -msgstr "" +msgstr "primary_domain %r не найден, пропускается." -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." -msgstr "" +msgstr "Начиная с v2.0, Sphinx использует \"index\" как root_doc по умолчанию. Пожалуйста, добавьте \"root_doc = 'contents'\" в свой conf.py." -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "Событие %r уже существует" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "Неизвестное событие: %s" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" -msgstr "" +msgstr "Обработчик %r для события %r возбудил исключение" #: sphinx/extension.py:55 #, python-format @@ -331,7 +336,7 @@ msgstr "" #: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" -msgstr "" +msgstr "Неизвестный лексер Pygments %r" #: sphinx/highlighting.py:189 #, python-format @@ -350,7 +355,7 @@ msgstr "" #: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." -msgstr "" +msgstr "Пропущен нечитаемый документ %r." #: sphinx/registry.py:142 #, python-format @@ -375,12 +380,12 @@ msgstr "Сборщик %s не зарегистрирован." #: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" -msgstr "" +msgstr "домен %s уже зарегистрирован" #: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" -msgstr "" +msgstr "домен %s не зарегистрирован" #: sphinx/registry.py:198 #, python-format @@ -390,7 +395,7 @@ msgstr "" #: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" -msgstr "" +msgstr "Роль %r уже зарегистрирована в домене %s" #: sphinx/registry.py:221 #, python-format @@ -425,7 +430,7 @@ msgstr "" #: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" -msgstr "" +msgstr "Перевод для %r уже существует" #: sphinx/registry.py:334 #, python-format @@ -456,7 +461,7 @@ msgstr "Изначальное исключение:\n" #: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" -msgstr "Не могу загрузить модуль расширения %s" +msgstr "Не удалось загрузить расширение %s" #: sphinx/registry.py:461 #, python-format @@ -487,216 +492,368 @@ msgstr "Предложения об улучшениях Python; PEP %s" #: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" -msgstr "" +msgstr "неверный номер PEP %s" #: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" +msgstr "неверный номер RFC %s" + +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" -msgstr "" +msgstr "указана неподдерживаемая опция темы %r" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" -msgstr "" +msgstr "Тема %r имеет циклическое наследование" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" -msgstr "" +msgstr "У темы %r слишком много предков" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" -msgstr "" +msgstr "файл конфигурации темы не найден в %r" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" -msgstr "" +msgstr "тема %r не имеет таблицы \"theme\"" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "Использование:" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "Генератор документации Sphinx." + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "Команды:" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "Опции" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "Для получения дополнительной информации посетите https://www.sphinx-doc.org/en/master/man/." + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "Управление документацией со Sphinx." + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "Показать версию и выйти." + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "Показать это сообщение и выйти." + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "Журналирование" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "Увеличить подробность (можно указать несколько раз)" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "Выводить только ошибки и предупреждения." + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "См. 'sphinx --help'.\n" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "Произошло исключение, запуск отладчика:" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "Прервано!" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "ошибка разметки reStructuredText:" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "Ошибка декодирования:" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "Ошибка рекурсии:" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "Произошло исключение:" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " -msgstr "" +msgstr "сборка [mo]:" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " -msgstr "" +msgstr "запись вывода..." -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" -msgstr "" +msgstr "все из %d po-файлов" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" -msgstr "" +msgstr "цели для %d файлов PO указаны" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" -msgstr "" +msgstr "цели для %d файлов PO устарели" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" -msgstr "" +msgstr "все исходные файлы" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " -msgstr "" +msgstr "файл %r, указанный в аргументах командной строки, не существует," -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " -msgstr "" +msgstr "сборка [%s]: " -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" -msgstr "" +msgstr "%d найден" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" -msgstr "" +msgstr "ничего не найдено" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" -msgstr "" +msgstr "проверка целостности" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." -msgstr "" +msgstr "нет устаревших целей." -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " -msgstr "" +msgstr "обновление окружения:" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 -msgid "reading sources... " +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 +msgid "reading sources... " +msgstr "чтение исходных файлов..." + +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" -msgstr "" +msgstr "подготовка документов" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" -msgstr "" +msgstr "копирование материалов" #: sphinx/builders/_epub_base.py:215 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " -msgstr "" +msgstr "копирование изображений..." #: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "Не получается считать файл изображение %r: скопируйте его" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -709,30 +866,30 @@ msgstr "Не получается записать файл изображени #: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" -msgstr "" +msgstr "Pillow не найден - копирование файлов изображений" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." -msgstr "" +msgstr "запись файла mimetype..." -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." -msgstr "" +msgstr "запись файла content.opf..." -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." -msgstr "" +msgstr "запись файла toc.ncx..." -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "записывается %s файл..." @@ -745,7 +902,7 @@ msgstr "" #: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." -msgstr "" +msgstr "нет изменений в версии %s." #: sphinx/builders/changes.py:61 msgid "writing summary file..." @@ -761,7 +918,7 @@ msgstr "Модуль" #: sphinx/builders/changes.py:123 msgid "copying source files..." -msgstr "" +msgstr "копирование исходных файлов..." #: sphinx/builders/changes.py:130 #, python-format @@ -779,7 +936,7 @@ msgstr "" #: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." -msgstr "" +msgstr "запись файла nav.xhtml..." #: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" @@ -787,44 +944,44 @@ msgstr "" #: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" -msgstr "" +msgstr "значение настройки \"epub_uid\" должно быть равно XML NAME для EPUB3" #: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" -msgstr "" +msgstr "значение настройки \"epub_title\" (или \"html_title\") должно быть не пустым для EPUB3" #: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" -msgstr "" +msgstr "значение настройки \"epub_author\" должно быть не пустым для EPUB3" #: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" -msgstr "" +msgstr "значение настройки \"epub_contributor\" должно быть не пустым для EPUB3" #: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" -msgstr "" +msgstr "значение настройки \"epub_description\" должно быть не пустым для EPUB3" #: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" -msgstr "" +msgstr "значение настройки \"epub_publisher\" должно быть не пустым для EPUB3" #: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" -msgstr "" +msgstr "значение настройки \"epub_copyright\" (или \"copyright\") должно быть не пустым для EPUB3" #: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" -msgstr "" +msgstr "значение настройки \"epub_identifier\" должно быть не пустым для EPUB3" #: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" -msgstr "" +msgstr "значение настройки \"version\" должно быть не пустым для EPUB3" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" -msgstr "" +msgstr "некорректный css_file: %r, пропускается" #: sphinx/builders/gettext.py:222 #, python-format @@ -838,7 +995,7 @@ msgstr "" #: sphinx/builders/gettext.py:248 msgid "reading templates... " -msgstr "" +msgstr "чтение шаблонов..." #: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " @@ -849,12 +1006,17 @@ msgstr "" msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" +msgstr "сломанная ссылка: %s (%s)" + +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -862,7 +1024,7 @@ msgstr "" #: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." -msgstr "" +msgstr "Страницы руководств находятся в %(outdir)s." #: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" @@ -871,7 +1033,7 @@ msgstr "" #: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 #: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" -msgstr "" +msgstr "запись" #: sphinx/builders/manpage.py:68 #, python-format @@ -881,15 +1043,15 @@ msgstr "" #: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." -msgstr "" +msgstr "Страница HTML находится в %(outdir)s." #: sphinx/builders/singlehtml.py:160 msgid "assembling single document" -msgstr "" +msgstr "сборка единого документа" #: sphinx/builders/singlehtml.py:178 msgid "writing additional files" -msgstr "" +msgstr "запись дополнительных файлов" #: sphinx/builders/texinfo.py:48 #, python-format @@ -915,11 +1077,11 @@ msgstr "" #: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" -msgstr "" +msgstr "обработка %s" #: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." -msgstr "" +msgstr "разрешение ссылок..." #: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " @@ -932,46 +1094,46 @@ msgstr "" #: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" -msgstr "" +msgstr "ошибка записи Makefile: %s" #: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." -msgstr "" +msgstr "Текстовые файлы находятся в %(outdir)s." -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" -msgstr "" +msgstr "ошибка записи файла %s: %s" #: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." -msgstr "" +msgstr "Файлы XML находятся в %(outdir)s." #: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." -msgstr "" +msgstr "Файлы pseudo-XML находятся в %(outdir)s." #: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" -msgstr "" +msgstr "сборка файла INFO сломана: %r" #: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." -msgstr "" +msgstr "Страницы HTML находятся в %(outdir)s." -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -985,144 +1147,149 @@ msgstr "Алфавитный указатель" msgid "index" msgstr "указатель" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "вперёд" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "назад" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" -msgstr "" +msgstr "генерация индексов" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" -msgstr "" +msgstr "запись дополнительных страниц" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " -msgstr "" +msgstr "копирование загружаемых файлов..." -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" -msgstr "" +msgstr "не удалось скопировать загружаемый файл %r: %s" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" -msgstr "" +msgstr "копирование файлов статики" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" -msgstr "" +msgstr "не удалось копировать файл статики %r" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" -msgstr "" +msgstr "копирование дополнительных файлов" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" -msgstr "" +msgstr "не удалось скопировать дополнительный файл %r" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" -msgstr "" +msgstr "Ошибка при рендере страницы %s.\nПричина: %r" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" -msgstr "" +msgstr "файл логотипа %r не существует" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" -msgstr "" +msgstr "Файл favicon %r не существует" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" -msgstr "" +msgstr "HTML 4 больше не поддерживается Sphinx. (строка \"html4_writer=True\" обнаружена в настройках)" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "документация %s %s" @@ -1130,7 +1297,7 @@ msgstr "документация %s %s" #: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." -msgstr "" +msgstr "Файлы LaTeX находятся в %(outdir)s." #: sphinx/builders/latex/__init__.py:117 msgid "" @@ -1148,19 +1315,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "Алфавитный указатель" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "Выпуск" @@ -1171,20 +1340,20 @@ msgstr "" #: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" -msgstr "" +msgstr "копирование файлов поддержки TeX" #: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." -msgstr "" +msgstr "копирование файлов поддержки TeX..." #: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" -msgstr "" +msgstr "копирование дополнительных файлов" #: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." -msgstr "" +msgstr "Неизвестный ключ конфигурации: latex_elements[%r], пропускается." #: sphinx/builders/latex/__init__.py:474 #, python-format @@ -1194,7 +1363,7 @@ msgstr "" #: sphinx/builders/latex/theming.py:87 #, python-format msgid "%r doesn't have \"theme\" setting" -msgstr "" +msgstr "%r не имеет настройки \"theme\"" #: sphinx/builders/latex/theming.py:90 #, python-format @@ -1203,7 +1372,7 @@ msgstr "" #: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" -msgstr "" +msgstr "Ошибка получения названия документа!" #: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" @@ -1216,19 +1385,11 @@ msgstr "" #: sphinx/cmd/build.py:46 msgid "Exception occurred while building, starting debugger:" -msgstr "" - -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" +msgstr "Исключение во время сборки, запуск отладчика:" #: sphinx/cmd/build.py:63 msgid "reST markup error:" -msgstr "" - -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" +msgstr "ошибка разметки reST:" #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format @@ -1237,27 +1398,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1266,12 +1406,12 @@ msgstr "" #: sphinx/cmd/build.py:109 msgid "job number should be a positive number" -msgstr "" +msgstr "номер задания должен быть положительным числом" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." -msgstr "" +msgstr "Для получения дополнительной информации посетите <https://www.sphinx-doc.org/>." #: sphinx/cmd/build.py:118 msgid "" @@ -1290,15 +1430,15 @@ msgid "" "\n" "By default, everything that is outdated is built. Output only for selected\n" "files can be built by specifying individual filenames.\n" -msgstr "" +msgstr "\nСоздание документации из исходных файлов.\n\nsphinx-build создает документацию из файлов в SOURCEDIR и помещает ее в\nOUTPUTDIR. Он ищет 'conf.py' в SOURCEDIR для определения настроек\nконфигурации. Инструмент 'sphinx-quickstart' может быть использован для\nсоздания файлов шаблонов, включая 'conf.py'\n\nsphinx-build может создавать документацию в различных форматах. Формат\nвыбирается путем указания названия сборщика в аргументах командной\nстроки; по умолчанию используется HTML. Сборщики также могут\n выполнять другие задачи, связанные с обработкой документации.\n\nПо умолчанию собирается все что устарело. Вывод только для выбранных\nфайлов может быть реализован путем указания отдельных имен файлов.\n" #: sphinx/cmd/build.py:139 msgid "path to documentation source files" -msgstr "" +msgstr "путь к исходным файлам документации" #: sphinx/cmd/build.py:141 msgid "path to output directory" -msgstr "" +msgstr "путь к целевому каталогу" #: sphinx/cmd/build.py:143 msgid "" @@ -1308,11 +1448,11 @@ msgstr "" #: sphinx/cmd/build.py:146 msgid "general options" -msgstr "" +msgstr "основные опции" #: sphinx/cmd/build.py:149 msgid "builder to use (default: 'html')" -msgstr "" +msgstr "используемый сборщик (по умолчанию: 'html')" #: sphinx/cmd/build.py:152 msgid "" @@ -1330,7 +1470,7 @@ msgstr "" #: sphinx/cmd/build.py:161 msgid "path options" -msgstr "" +msgstr "опции пути" #: sphinx/cmd/build.py:163 msgid "" @@ -1351,25 +1491,25 @@ msgstr "" #: sphinx/cmd/build.py:177 msgid "pass a value into HTML templates" -msgstr "" +msgstr "передать значение в шаблон HTML" #: sphinx/cmd/build.py:180 msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 msgid "console output options" -msgstr "" +msgstr "опции вывода в терминал" #: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" -msgstr "" +msgstr "увеличить детальность (может повторяться несколько раз)" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1391,11 +1531,11 @@ msgstr "" #: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" -msgstr "" +msgstr "запись предупреждений (и ошибок) в указанный файл" #: sphinx/cmd/build.py:203 msgid "turn warnings into errors" -msgstr "" +msgstr "обрабатывать предупреждение как ошибки" #: sphinx/cmd/build.py:205 msgid "with --fail-on-warning, keep going when getting warnings" @@ -1403,11 +1543,11 @@ msgstr "" #: sphinx/cmd/build.py:207 msgid "show full traceback on exception" -msgstr "" +msgstr "отображать полный traceback при исключении" #: sphinx/cmd/build.py:209 msgid "run Pdb on exception" -msgstr "" +msgstr "запустить Pdb при исключении" #: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" @@ -1444,7 +1584,7 @@ msgstr "" #: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" -msgstr "" +msgstr "проверка полноты документации" #: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" @@ -1468,7 +1608,7 @@ msgstr "" #: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." -msgstr "" +msgstr "Пожалуйста, укажите корректный путь." #: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." @@ -1481,7 +1621,7 @@ msgstr "" #: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." -msgstr "" +msgstr "Пожалуйста, введите 'y' или 'n'." #: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." @@ -1501,15 +1641,15 @@ msgstr "" #: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" -msgstr "" +msgstr "Выбранный корневой путь: %s" #: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." -msgstr "" +msgstr "Введите корневой путь для документации." #: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" -msgstr "" +msgstr "Корневой каталог документации" #: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." @@ -1532,7 +1672,7 @@ msgstr "" #: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" -msgstr "" +msgstr "Разделить каталоги исходных файлов и результатов сборки (y/n)" #: sphinx/cmd/quickstart.py:242 msgid "" @@ -1543,7 +1683,7 @@ msgstr "" #: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" -msgstr "" +msgstr "Префикс имен каталогов с шаблонами и статикой" #: sphinx/cmd/quickstart.py:249 msgid "" @@ -1552,11 +1692,11 @@ msgstr "" #: sphinx/cmd/quickstart.py:250 msgid "Project name" -msgstr "" +msgstr "Название проекта" #: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" -msgstr "" +msgstr "Имя(ена) автора(ов)" #: sphinx/cmd/quickstart.py:256 msgid "" @@ -1597,7 +1737,7 @@ msgstr "" #: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" -msgstr "" +msgstr "Суффикс исходный файлов" #: sphinx/cmd/quickstart.py:287 msgid "" @@ -1609,7 +1749,7 @@ msgstr "" #: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" -msgstr "" +msgstr "Название основного документа (без суффикса)" #: sphinx/cmd/quickstart.py:296 #, python-format @@ -1624,11 +1764,11 @@ msgstr "" #: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" -msgstr "" +msgstr "Введите имя нового файла, или переименуйте существующий файл и нажмите Enter" #: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" -msgstr "" +msgstr "Укажите, какие из расширений Sphinx должны быть включены:" #: sphinx/cmd/quickstart.py:312 msgid "" @@ -1645,25 +1785,25 @@ msgstr "" #: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" -msgstr "" +msgstr "Создать Makefile? (y/n)" #: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" -msgstr "" +msgstr "Создать файл команд Windows? (y/n)" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "Создание файла %s." -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "Файл %s уже существует, пропускаем." #: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." -msgstr "" +msgstr "Завершено: Исходная структура каталогов создана." #: sphinx/cmd/quickstart.py:420 #, python-format @@ -1676,7 +1816,7 @@ msgstr "" msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" -msgstr "" +msgstr "Используйте Makefile для сборки документации, например:\n make builder" #: sphinx/cmd/quickstart.py:426 #, python-format @@ -1703,11 +1843,11 @@ msgstr "" #: sphinx/cmd/quickstart.py:479 msgid "quiet mode" -msgstr "" +msgstr "тихий режим" #: sphinx/cmd/quickstart.py:484 msgid "project root" -msgstr "" +msgstr "корень проекта" #: sphinx/cmd/quickstart.py:486 msgid "Structure options" @@ -1727,11 +1867,11 @@ msgstr "" #: sphinx/cmd/quickstart.py:494 msgid "Project basic options" -msgstr "" +msgstr "Основные настройки проекта" #: sphinx/cmd/quickstart.py:496 msgid "project name" -msgstr "имя проекта" +msgstr "название проекта" #: sphinx/cmd/quickstart.py:498 msgid "author names" @@ -1747,11 +1887,11 @@ msgstr "релиз проекта" #: sphinx/cmd/quickstart.py:504 msgid "document language" -msgstr "язык проекта" +msgstr "язык документа" #: sphinx/cmd/quickstart.py:506 msgid "source file suffix" -msgstr "" +msgstr "суффикс исходных файлов" #: sphinx/cmd/quickstart.py:508 msgid "master document name" @@ -1763,14 +1903,14 @@ msgstr "использовать epub" #: sphinx/cmd/quickstart.py:512 msgid "Extension options" -msgstr "" +msgstr "Опции расширения" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" -msgstr "" +msgstr "включить расширение %s" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1780,11 +1920,11 @@ msgstr "" #: sphinx/cmd/quickstart.py:522 msgid "create makefile" -msgstr "" +msgstr "создать Makefile" #: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" -msgstr "" +msgstr "не создавать Makefile" #: sphinx/cmd/quickstart.py:526 msgid "create batchfile" @@ -1802,11 +1942,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1832,87 +1972,87 @@ msgstr "" #: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" -msgstr "" +msgstr "Неправильная переменная шаблона: %s" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" -msgstr "Некорректная подпись: %s" +msgstr "Некорректный заголовок: %s" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "Автор раздела: " -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "Автор модуля: " -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "Автор кода:" -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "Автор: " @@ -1920,7 +2060,7 @@ msgstr "Автор: " msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1938,7 +2078,7 @@ msgstr "%s %s" #: sphinx/domains/changeset.py:23 #, python-format msgid "Added in version %s" -msgstr "" +msgstr "Добавлено в версии %s" #: sphinx/domains/changeset.py:24 #, python-format @@ -1948,12 +2088,12 @@ msgstr "Изменено в версии %s" #: sphinx/domains/changeset.py:25 #, python-format msgid "Deprecated since version %s" -msgstr "Не рекомендуется, начиная с версии %s" +msgstr "Устарело, начиная с версии %s" #: sphinx/domains/changeset.py:26 #, python-format msgid "Removed in version %s" -msgstr "" +msgstr "Удалено в версии %s" #: sphinx/domains/citation.py:71 #, python-format @@ -1970,7 +2110,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (встроенная функция)" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "%s() (метод %s)" @@ -1985,7 +2125,7 @@ msgstr "%s() (класс)" msgid "%s (global variable or constant)" msgstr "%s (глобальная переменная или константа)" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "%s (атрибут %s)" @@ -1994,52 +2134,52 @@ msgstr "%s (атрибут %s)" msgid "Arguments" msgstr "Аргументы" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "Бросает исключение" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "Результат" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "Тип результата" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "%s (модуль)" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "функция" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "метод" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "класс" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "данные" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "атрибут" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "модуль" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2049,7 +2189,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "повторяющаяся метка уравнения %s, также используется в %s" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2086,352 +2226,374 @@ msgstr "роль" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "Параметры" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "поле" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "переменная" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "макрос" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "перечисляемый тип" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "перечислитель" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "тип" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "Параметры шаблона" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "концепт" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "%s() (в модуле %s)" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "%s (в модуле %s)" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "%s (встроенная переменная)" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "%s (встроенный класс)" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "%s (класс в %s)" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "%s() (метод класса %s)" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "%s() (статический метод %s)" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "Содержание модулей Python" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "модули" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" -msgstr "Не рекомендуется" +msgstr "Устарело" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "исключение" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "метод класса" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "статический метод" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr "(использование не рекомендуется)" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "Переменные" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "Исключение" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "переменная окружения; %s" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" -msgstr "" +msgstr "опция командной строки" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" -msgstr "элемент словаря" +msgstr "термин глоссария" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "токен грамматики" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "текст ссылки" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "переменная окружения" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "опция программы" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "документ" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "Состав модуля" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Поиск" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "новая конфигурация" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "конфигурация изменена" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" -msgstr "" +msgstr "расширения изменились" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" -msgstr "" +msgstr "каталог исходных файлов изменился" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" -msgstr "" +msgstr "документ не включен ни в одно оглавление" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "см. %s" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "также см. %s" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "Символы" @@ -2455,29 +2617,29 @@ msgstr "" #: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" -msgstr "" +msgstr "нечитаемое изображение: %s" #: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" -msgstr "" +msgstr "файл изображения %s не читается: %s" #: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" -msgstr "" +msgstr "загружаемый файл не читается: %s" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." -msgstr "" +msgstr "Нужно создать файл %s." -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2489,149 +2651,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" -msgstr "" +msgstr "перезаписать существующие файлы" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" -msgstr "" +msgstr "запуск сценария без создания файлов" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" -msgstr "" +msgstr "не создавать файл с оглавлением" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" -msgstr "" +msgstr "параметры расширения" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" +msgstr "некорректное регулярное выражение %r в %s" + +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2639,7 +2823,7 @@ msgstr "" #: sphinx/ext/doctest.py:115 #, python-format msgid "missing '+' or '-' in '%s' option." -msgstr "" +msgstr "не указан '+' или '-' в опции '%s'." #: sphinx/ext/doctest.py:120 #, python-format @@ -2653,7 +2837,7 @@ msgstr "" #: sphinx/ext/doctest.py:220 msgid "invalid TestCode type" -msgstr "" +msgstr "неправильный тип TestCode" #: sphinx/ext/doctest.py:281 #, python-format @@ -2672,7 +2856,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2748,7 +2932,7 @@ msgstr "[иллюстрация: %s]" msgid "[graph]" msgstr "[иллюстрация]" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2756,7 +2940,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2766,98 +2950,38 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" -msgstr "" - -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "(в %s v%s)" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" +msgstr "Ссылка на эту формулу" #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" @@ -2870,7 +2994,7 @@ msgstr "План" #: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" -msgstr "" +msgstr "найдена запись TODO: %s" #: sphinx/ext/todo.py:161 msgid "<<original entry>>" @@ -3002,7 +3126,7 @@ msgstr "" #: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" -msgstr "" +msgstr "псевдоним для %s" #: sphinx/ext/autodoc/__init__.py:1878 #, python-format @@ -3034,23 +3158,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3058,46 +3182,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" -msgstr "" +msgstr "ошибка разбора имени %s" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" +msgstr "ошибка импорта объекта %s" + +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3105,7 +3235,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3120,36 +3250,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "(в %s v%s)" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "(в %s)" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "Именованные аргументы" @@ -3206,65 +3401,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "Внимание" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "Осторожно" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "Опасно" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "Ошибка" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "Подсказка" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "Важно" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "Примечание" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" -msgstr "См.также" +msgstr "См. также" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "Совет" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "Предупреждение" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "продолжение с предыдущей страницы" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" -msgstr "" +msgstr "продолжается на следующей странице" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "Числа" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "страница" @@ -3273,7 +3468,7 @@ msgstr "страница" msgid "Table of Contents" msgstr "Оглавление" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Поиск" @@ -3331,12 +3526,12 @@ msgstr "сводный список всех модулей" msgid "all functions, classes, terms" msgstr "все функции, классы, переменные и константы" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" -msgstr "Алфавитный указатель – %(key)s" +msgid "Index – %(key)s" +msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3355,31 +3550,31 @@ msgstr "может быть очень большим" msgid "Navigation" msgstr "Навигация" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "Поиск в документе «%(docstitle)s»" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "Об этих документах" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "Авторские права" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Обновлено: %(last_updated)s." -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3482,7 +3677,7 @@ msgstr "Идёт поиск" msgid "Preparing search..." msgstr "Подготовка поиска…" -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr ", в" @@ -3491,11 +3686,11 @@ msgid "Hide Search Matches" msgstr "Снять выделение" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "Свернуть боковую панель" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "Развернуть боковую панель" @@ -3503,26 +3698,26 @@ msgstr "Развернуть боковую панель" msgid "Contents" msgstr "Содержание" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" -msgstr "" +msgstr "не удалось рассчитать прогресс перевода!" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "" @@ -3571,17 +3766,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3591,11 +3786,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" -msgstr "" +msgstr "пропущено" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "" @@ -3606,12 +3801,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3638,18 +3833,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3659,45 +3859,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" -msgstr "" +msgstr "Ссылка на этот термин" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" -msgstr "" +msgstr "Ссылка на этот заголовок" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" +msgstr "Ссылка на эту таблицу" + +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:573 msgid "Link to this code" -msgstr "" +msgstr "Ссылка на этот код" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" -msgstr "" +msgstr "Ссылка на это изображение" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" -msgstr "" +msgstr "Ссылка на это оглавление" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3710,31 +3915,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "Сноски" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3748,11 +3958,11 @@ msgstr "[рисунок: %s]" msgid "[image]" msgstr "[рисунок]" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." -msgstr "" +msgstr "заголовок не внутри иллюстрации." -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.js b/sphinx/locale/si/LC_MESSAGES/sphinx.js index f8196d4..5e965f5 100644 --- a/sphinx/locale/si/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/si/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "\u0dba\u0db1\u0dca\u0db1", "Hide Search Matches": "", "Index": "", - "Index – %(key)s": "", + "Index – %(key)s": "", "Index pages by letter": "", "Indices and tables:": "", "Last updated on %(last_updated)s.": "", diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.mo b/sphinx/locale/si/LC_MESSAGES/sphinx.mo index 7799122..f8e299c 100644 Binary files a/sphinx/locale/si/LC_MESSAGES/sphinx.mo and b/sphinx/locale/si/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.po b/sphinx/locale/si/LC_MESSAGES/sphinx.po index ca78452..e44468c 100644 --- a/sphinx/locale/si/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/si/LC_MESSAGES/sphinx.po @@ -8,134 +8,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: callkalpa <callkalpa@gmail.com>, 2013\n" "Language-Team: Sinhala (http://app.transifex.com/sphinx-doc/sphinx-1/language/si/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: si\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,75 +156,77 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -232,78 +234,78 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" @@ -488,190 +490,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -680,7 +834,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" @@ -690,7 +844,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -705,28 +859,28 @@ msgstr "" msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "" @@ -815,7 +969,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -843,12 +997,17 @@ msgstr "" msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -933,7 +1092,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -959,13 +1118,13 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -979,144 +1138,149 @@ msgstr "" msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "ඊළඟ" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "පෙර" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "%s %s ලේඛණය" @@ -1142,19 +1306,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "නිකුත් කිරීම" @@ -1212,18 +1378,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1231,27 +1389,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1263,7 +1400,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1352,7 +1489,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1363,7 +1500,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1645,12 +1782,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1759,12 +1896,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1796,11 +1933,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1828,85 +1965,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "කේත ලේඛක:" -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "ලේඛක:" @@ -1914,7 +2051,7 @@ msgstr "ලේඛක:" msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1964,7 +2101,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1979,7 +2116,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -1988,52 +2125,52 @@ msgstr "" msgid "Arguments" msgstr "" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "ක්‍රියාව" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "දත්ත" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2043,7 +2180,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2080,352 +2217,374 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "පරාමිතීන්" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "සාමාජික" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "විචල්‍යය" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "මැක්‍රෝ" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "වර්ගය" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr "" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "විචල්‍ය" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "සෙවුම් පිටුව" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "%s බලන්න" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "%s ද බලන්න" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "සංකේත" @@ -2461,17 +2620,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2483,149 +2642,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2666,7 +2847,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2742,7 +2923,7 @@ msgstr "[graph: %s]" msgid "[graph]" msgstr "[graph]" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2750,7 +2931,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2760,99 +2941,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "(%s හි%s)" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[source]" @@ -3028,23 +3149,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3052,46 +3173,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3099,7 +3226,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3114,36 +3241,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "(%s හි%s)" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" @@ -3200,65 +3392,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "දෝෂය" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "හැඟවීම" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "සටහන" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "මෙයද බලන්න" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "අනතුරු ඇඟවීම" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "" @@ -3267,7 +3459,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "සොයන්න" @@ -3325,12 +3517,12 @@ msgstr "" msgid "all functions, classes, terms" msgstr "" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" +msgid "Index – %(key)s" msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3349,31 +3541,31 @@ msgstr "විශාල විය හැක" msgid "Navigation" msgstr "ගමන් කිරීම" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "මෙම ලේඛණ ගැන" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3476,7 +3668,7 @@ msgstr "සොයමින්..." msgid "Preparing search..." msgstr "සෙවුම සූදානම් කරමින්...." -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr "" @@ -3485,11 +3677,11 @@ msgid "Hide Search Matches" msgstr "" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "" @@ -3497,26 +3689,26 @@ msgstr "" msgid "Contents" msgstr "අන්තර්ගතය" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "" @@ -3565,17 +3757,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3585,11 +3777,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "" @@ -3600,12 +3792,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3632,18 +3824,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3653,45 +3850,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3704,31 +3906,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3742,11 +3949,11 @@ msgstr "[image: %s]" msgid "[image]" msgstr "[image]" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.js b/sphinx/locale/sk/LC_MESSAGES/sphinx.js index 90125dd..7bd3579 100644 --- a/sphinx/locale/sk/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/sk/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "OK", "Hide Search Matches": "Skry\u0165 v\u00fdsledky h\u013eadania", "Index": "Index", - "Index – %(key)s": "Index – %(key)s", + "Index – %(key)s": "", "Index pages by letter": "Indexov\u00e9 str\u00e1nky po p\u00edsmen\u00e1ch", "Indices and tables:": "Indexy a tabu\u013eky", "Last updated on %(last_updated)s.": "Naposledy aktualizovan\u00e9 %(last_updated)s.", diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.mo b/sphinx/locale/sk/LC_MESSAGES/sphinx.mo index 1455bf5..5384d8a 100644 Binary files a/sphinx/locale/sk/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sk/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.po b/sphinx/locale/sk/LC_MESSAGES/sphinx.po index 033acb8..62105be 100644 --- a/sphinx/locale/sk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sk/LC_MESSAGES/sphinx.po @@ -10,134 +10,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Slavko <linux@slavino.sk>, 2013-2019,2021\n" "Language-Team: Slovak (http://app.transifex.com/sphinx-doc/sphinx-1/language/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: sk\n" "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "Nemožno nájsť zdrojový priečinok (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "Výstupný adresár (%s) nie je adresár" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "Zdrojový a cieľový priečinok nemôžu byť rovnaké" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "Spúšťanie Sphinx v%s" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Tento projekt vyžaduje aspoň Sphinx v%s a preto s touto verziou nemôže byť zostavený." -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "vytváranie výstupnej zložky" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "pri nastavovaní rozšírenia %s:" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' definovaný v conf.py nie je funkciou. Prosím, upravte jeho definíciu tak, aby to bola funkcia. Je to potrebné, aby sa conf.py mohol správať ako rozšírenie Sphinx." -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "načítanie prekladov [%s]…" -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "hotovo" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "nedostupné pre zabudované správy" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "načítanie uloženého prostredia " -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "zlyhalo: %s" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "Nebol zvolený builder, bude použitý predvolený: html" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "úspešné" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "dokončené sproblémami" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "zostavenie %s, %s upozornenia/a (upozornenia považované za chyby)." -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "zostavenie %s, %s upozornenia/a (upozornenia považované za chyby)." -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "zostavenie %s, %s upozornenie." -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "zostavenie %s, %s upozornenie/a." -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "zostavenie %s." -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "trieda uzla %r už je registrovaná, jej metódy (visitors) budú prepísané" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "direktíva %r už je registrovaná, bude prepísaná" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "rola %r už je registrovaná, bude prepísaná" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -145,12 +145,12 @@ msgid "" "explicit" msgstr "rozšírenie %s nedeklaruje, či je bezpečné pri paralelnom čítaní, predpokladá sa, že nie - prosím, požiadajte autora aby to skontroloval a explicitne to nastavil" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "rozšírenie %s nie je bezpečné pre paralelné zostavenie" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -158,75 +158,77 @@ msgid "" "explicit" msgstr "rozšírenie %s nedeklaruje, či je bezpečné pri paralelnom čítaní, predpokladáme, že nie je – prosím, požiadajte autora aby to skontroloval a explicitne to nastavil" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "rozšírenie %s nie je bezpečné pre paralelné zostavenie" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "sériové spracovanie %s" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "konfiguračný priečinok neobsahuje súbor conf.py (%s)" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "nemožno prepísať slovník nastavenia %r, ignorované (použite %r na nastavenie jednotlivých prvkov)" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "neplatný počet %r pre konfiguračnú hodnotu %r, ignorované" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "nemožno prepísať konfiguračné nastavenie %r s nepodporovaným typom, ignorované" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "neznáma konfiguračná hodnota %r v prepísaní, ignorované" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "Konfiguračná hodnota %r už existuje" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Vo svojom konfiguračnom súbore máte chybu: %s\n" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Konfiguračný súbor (alebo jeden z modulov, ktoré importuje) volal sys.exit()" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -234,78 +236,78 @@ msgid "" "%s" msgstr "V konfiguračnom súbore je programová chyba:\n\n%s" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "Konfiguračná hodnota „source_suffix” očakáva reťazec, zoznam reťazcov alebo slovník, ale zadali ste „%r”." -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "Sekcia %s" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "Obr. %s" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "Tabuľka %s" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "Výpis %s" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "Konfiguračná hodnota `{name}` má byť jedno z {candidates}, ale je zadané `{current}`." -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "Konfiguračná hodnota `{name}' má typ `{current.__name__}'; očakávané {permitted}." -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "Konfiguračná hodnota `{name}' má typ `{current.__name__}', predvolene `{default.__name__}'." -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r nenájdená, ignorované." -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "Od v2.0 Sphinx predvolene používa „index” ako root_doc. Prosím, pridajte „root_doc = 'contents'” do svojho conf.py." -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "Udalosť %r už existuje" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "Neznáme meno udalosti %s" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "Obsluha %r udalosti %r vyvolala výnimku" @@ -490,190 +492,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "nastavenie %s.%s nenájdené v žiadnom z nastavení témy" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "zadaná nepodporovaná voľba témy %r" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "súbor %r v ceste témy nie je platný súbor ZIP alebo neobsahuje tému" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "Prerušené!" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "Chyba kódovania:" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "Chyba rekurzie:" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "Toto môže nastať s veľmi veľkými alebo príliš hlboko vnáranými zdrojovými súbormi. môžete opatrne zvýšiť predvolenú hodnotu limitu rekurzie Python z 1000 v conf.py, napr.:" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "Nastala výnimka:" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "Prosím, nahláste to, i keď to bola chyba používateľa, aby mohla byť nabudúce poskytnutá lepšia chybová správa." + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "vhodný obrázok pre zostavovač %s nenájdený: %s (%s)" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "vhodný obrázok pre zostavovač %s nenájdený: %s" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "zostavenie [mo]: " -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "zápis výstupu…" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "všetky z %d súborov po" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "ciele pre %d po súborov, ktoré boli zadané" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "ciele pre %d po súborov, ktoré sú zastarané" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "všetky zdrojové súbory" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "súbor %r zadaný v príkazovom riadku nie je v zdrojovom adresári, ignorujem" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "%d zdrojové súbory zadané v príkazovom riadku" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "ciele pre %d zdrojových súborov, ktoré sú zastarané" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "zostavovanie [%s]: " -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "hľadanie zastaraných súborov…" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "%d nájdené" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "nenájdené" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "ukladanie prostredia" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "kontrolovanie konzistencie" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "žiadne ciele nie sú zastarané." -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "aktualizácia prostredia:" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s pridané, %s zmenené, %s odstránené" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "čítanie zdrojov…" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "mená dokumentov na zapísanie: %s" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "príprava dokumentov" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -682,7 +836,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "nájdená duplicitná položka Obsahu: %s" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "kopírovanie obrázkov…" @@ -692,7 +846,7 @@ msgstr "kopírovanie obrázkov…" msgid "cannot read image file %r: copying it instead" msgstr "nemožno čítať súbor obrázku %r: jeho kopírovanie namiesto toho" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -707,28 +861,28 @@ msgstr "nemožno zapísať súbor obrázka %r: %s" msgid "Pillow not found - copying image files" msgstr "Pillow nenájdené – kopírovanie súborov obrázkov" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "zapisovanie súboru mimetype…" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "zapisovanie súboru META-INF/container.xml…" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "zapisovanie súboru content.opf..." -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "neznámy typ MIME pre %s, ignorovaný" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "zapisovanie súboru toc.ncx..." -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "zapisovanie súboru %s…" @@ -817,7 +971,7 @@ msgstr "konfiguračná hodnota „epub_identifier” nesmie byť prázdna pri EP msgid "conf value \"version\" should not be empty for EPUB3" msgstr "konfiguračná hodnota „version” nesmie byť prázdna pri EPUB3" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "neplatný css_file: %r, ignorovaný" @@ -845,12 +999,17 @@ msgstr "zapisovanie katalógov správ…" msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "Hľadajte akékoľvek chyby v predošlom výstupe alebo v %(outdir)s/output.txt" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "poškodený odkaz: %s (%s)" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "Kotva „%s” nenájdená" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -935,7 +1094,7 @@ msgstr "chyba zápisu súboru Makefile: %s" msgid "The text files are in %(outdir)s." msgstr "Textové súbory sú v %(outdir)s." -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -961,13 +1120,13 @@ msgstr "súbor info zostavenia je poškodený: %r" msgid "The HTML pages are in %(outdir)s." msgstr "Stránky HTML sú v %(outdir)s." -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "Čítanie súboru zostavenia info zlyhalo: %r" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -981,144 +1140,149 @@ msgstr "Všeobecný index" msgid "index" msgstr "index" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "ďalší" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "predošlý" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "generovanie indexov" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "zapisovanie dodatočných stránok" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "kopírovanie súborov na stiahnutie…" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "nemožno kopírovať súbor na stiahnutie %r: %s" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "Kopírovanie súboru v html_static_file zlyhalo: %s: %r" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "kopírovanie statických súborov" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "nemožno kopírovať statický súbor %r" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "kopírovanie extra súborov" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "nemožno kopírovať extra súbor %r" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "Zápis súboru zostavenia info zlyhal: %r" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "index hľadania nemožno načítať, ale nebudú zostavované všetky dokumenty, takže index nebude kompletný." -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "stránka %s vyhovuje dvom vzorom v html_sidebars: %r a %r" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "pri spracovaní stránky %s nastala chyba Unicode. Prosím, zaistite, že všetky konfiguračné hodnoty, ktoré obsahujú nieASCII hodnotu sú reťazce Unicode." -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "Nastala chyba pri spracovaní stránky %s.\nPríčina: %r" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "generovanie inventára objektov…" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "generovanie indexu hľadania v %s" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "neplatné js_file: %r, ignorované" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "Zaregistrovaných je viac math_renderer, ale žiadny nie je zvolený." -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "Zdaný neznámy math_renderer %r." -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "položka „html_extra_path entry” %r neexistuje" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "položka html_extra_path %r je umiestnené vo vnútri výstupného adresára" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "položka „html_static_path” %r neexistuje" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "položka html_static_path %r je umiestnené vo vnútri výstupného adresára" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "súbor loga %r neexistuje" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "súbor favicon %r neexistuje" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "Dokumentácia %s %s" @@ -1144,19 +1308,21 @@ msgstr "nebola nájdená konfiguračná voľba „latex_documents”; dokmenty n msgid "\"latex_documents\" config value references unknown document %s" msgstr "konfiguračná voľba „latex_documents” odkazuje na neznámy dokument %s" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "Index" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "Vydanie" @@ -1214,18 +1380,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "Počas zostavenia sa vyskytla výnimka, spúšťam ladenie:" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "Prerušené!" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "Chyba značky reST:" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "Chyba kódovania:" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1233,27 +1391,6 @@ msgid "" "the developers." msgstr "Úplný záznam chýb bol zapísaný v %s, ak chcete nahlásiť problém vývojárom." -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "Chyba rekurzie:" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "Toto môže nastať s veľmi veľkými alebo príliš hlboko vnáranými zdrojovými súbormi. môžete opatrne zvýšiť predvolenú hodnotu limitu rekurzie Python z 1000 v conf.py, napr.:" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "Nastala výnimka:" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "Prosím, nahláste to, i keď to bola chyba používateľa, aby mohla byť nabudúce poskytnutá lepšia chybová správa." - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1265,7 +1402,7 @@ msgid "job number should be a positive number" msgstr "počet úloh musí byť kladné číslo" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1354,7 +1491,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1365,7 +1502,7 @@ msgstr "voľby výstupu konzoly" msgid "increase verbosity (can be repeated)" msgstr "zvýšiť rozvláčnosť (možno opakovať)" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "žiadny výstup, len upozornenia na stderr" @@ -1647,12 +1784,12 @@ msgstr "Vytvoriť Makefile? (y/n)" msgid "Create Windows command file? (y/n)" msgstr "Vytvoriť príkazový súbor Windows? (y/n) " -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "Vytváranie súboru %s." -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "Súbor %s už existuje, preskočené." @@ -1761,12 +1898,12 @@ msgstr "použiť epub" msgid "Extension options" msgstr "Voľby rozšírenia" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "zapnúť rozšírenie %s" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "zapnúť konkrétne rozšírenia" @@ -1798,11 +1935,11 @@ msgstr "použiť režim make pre Makefile/make.bat" msgid "do not use make-mode for Makefile/make.bat" msgstr "nepoužiť režim make pre Makefile/make.bat" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "Šablóny projektu" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "adresár šablóny pre súbory šablóny" @@ -1830,85 +1967,85 @@ msgstr "sphinx-quickstart generuje len do prázdneho adresára. Prosím, zadajte msgid "Invalid template variable: %s" msgstr "Neplatná premenná šablóny: %s" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "Neplatný popis: %s" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "špecifikácia čísla riadku je mimo rozsahu (1-%d): %r" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "Nemožno použiť obe voľby „%s” a „%s”" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "Súbor na vloženie %r nebol nájdený alebo zlyhalo jeho čítanie" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "Kódovanie %r použité pri čítaní vloženého súboru %r vyzerá ako zlé, skúste zadať voľbu :encoding:" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "Objekt s menom %r nebol nájdený vo vloženom súbore %r" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "Nemožno použiť „lineno-match” s rozdelenou množinou „lines”" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "Riadok %r: žiadne riadky z vloženého súboru %r" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "strom obsahu obsahuje odkaz na vylúčený dokument %r" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "strom obsahu obsahuje odkaz na neexistujúci dokument %r" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "Autor sekcie:" -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "Autor modulu:" -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "Autor kódu:" -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "Autor:" @@ -1916,7 +2053,7 @@ msgstr "Autor:" msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1966,7 +2103,7 @@ msgstr "Citácia [%s] nie je odkazovaná." msgid "%s() (built-in function)" msgstr "%s() (zabudovaná funkcia)" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "%s() (metóda %s)" @@ -1981,7 +2118,7 @@ msgstr "%s() (trieda)" msgid "%s (global variable or constant)" msgstr "%s (globálna premenná alebo konštanta)" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribút %s)" @@ -1990,52 +2127,52 @@ msgstr "%s (atribút %s)" msgid "Arguments" msgstr "Argumenty" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "Vyvoláva" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "Vracia" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "Návratový typ" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "funkcia" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "metóda" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "trieda" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "dáta" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "atribút" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "modul" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "duplicitný %s popis %s, ďalší výskyt%s v %s" @@ -2045,7 +2182,7 @@ msgstr "duplicitný %s popis %s, ďalší výskyt%s v %s" msgid "duplicate label of equation %s, other instance in %s" msgstr "duplicitná menovka vzorca %s, ďalší výskyt v %s" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "neplatný math_eqref_format: %r" @@ -2082,352 +2219,374 @@ msgstr "rola" msgid "duplicate description of %s %s, other instance in %s" msgstr "duplicitný popis %s %s, ďalší výskyt v %s" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "%s (C %s)" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "Duplicitná deklarácia C, definovaná aj v %s:%s.\nDeklarácia je '.. c:%s:: %s'." -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "Parametre" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "člen" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "premenná" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "makro" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "enum" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "enumerátor" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "typ" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "parameter funkcie" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "Parametre šablóny" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "Duplicitná deklarácia C++, definovaná aj v %s:%s.\nDeklarácia je '.. cpp:%s:: %s'." -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "koncept" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "parameter šablóny" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "%s() (v module %s)" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "%s (v module %s)" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "%s (zabudovaná premenná)" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "%s (zabudovaná trieda)" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "%s (trieda v %s)" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "%s() (metóda triedy %s)" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statická metóda %s)" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "%s (vlastnosť %s)" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "Index modulov Python" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "moduly" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "Zastarané" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "výnimka" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "metóda triedy" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "statická metóda" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "vlastnosť" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "nájdený viac ako jeden cieľ krížového odkazu %r: %s" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr " (zastarané)" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "Premenné" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "Vyzdvihuje" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "premenná prostredia; %s" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "Nesprávny popis voľby %r, má vyzerať ako „opt”, „-opt argumenty”, „--opt argumenty”, „/opt argumenty” alebo „+opt argumenty”" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "%s voľba príkazového riadka" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "voľba príkazového riadka" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "položke glosára musí predchádzať prázdny riadok" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "položky glosára nesmú byť oddelené prázdnymi riadkami" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "glosár vyzerá byť zle naformátovaný, skontrolujte odsadenie" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "termín glosára" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "jazykový token" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "menovka odkazu" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "premenná prostredia" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "voľba programu" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "dokument" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "Index modulov" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Stránka hľadania" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "duplicitná menovka %s, ďalší výskyt v %s" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "duplicitný %s popis %s, ďalší výskyt v %s" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig je vypnutý, :numref: je ignorované." -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "Zlyhalo vytvorenie krížového odkazu. Nie je priradené žiadne číslo: %s" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "odkaz nemá popisok: %s" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "neplatný numfig_format: %s (%r)" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "neplatný numfig_format: %s" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "nová konfigurácia" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "zmenená konfigurácia" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "zmenené rozšírenie" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "prostredie zostavenia nie je aktuálne" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "zdrojový adresár zmenený" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "Toto prostredie nie je kompatibilné zo zvoleným zostavovačom, prosím, zvoľte iný adresár doctree." -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "Zlyhalo skenovanie dokumentov v %s: %r" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "Doména %r nie je zaregistrovaná" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "dokument nie je zahrnutý v žiadnom strome obsahu" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "nájdený na seba odkazujúci strom obsahu. Ignorované." -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "viď %s" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "viď aj %s" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "neznámy typ položky indexu %r" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "Symboly" @@ -2463,17 +2622,17 @@ msgstr " Súbor obrázku %s nemožno čítať: %s" msgid "download file not readable: %s" msgstr "súbor na stiahnutie nemožno čítať: %s" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "%s už je priradené číslo sekcie (vnorený číslovaný strom obsahu?)" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2485,149 +2644,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "cesta k dokumentovanému modulu" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "adresár umiestnenia výstupu" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "maximálna hĺbka submodulov, ktorá má byť zobrazená v obsahu (predvolene: 4)" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "prepísať existujúce súbory" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "nasledovať symbolické odkazy. Vhodné v kombinácii s collective.recipe.omelette." -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "spustí skript bez vytvorenia súborov" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "umiestniť dokumentáciu každého modulu vo vlastnej stránke" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "zahrnúť ”_súkromné” moduly" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "meno súboru obsahu (predvolene: modules)" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "nevytvárať súbor obsahu" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "vložiť dokumentáciu modulu pred dokumentáciou submodulu" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "interpretovať cesty modulov v zmysle implicitnej špecifikácie menných priestorov PEP-0420" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "prípona súboru (predvolene: rst)" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "generovať úplný projekt pomocou sphinx-quickstart" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "pripojiť module_path do sys.path, použité pri --full" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "meno projektu (predvolene: meno koreňového modulu)" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "autor(i) projektu, použité pri --full" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "verzia projektu, použité pri --full" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "vydanie projektu, použité pri --full, predvolene --doc-version" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "voľby rozšírenia" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "%s nie je adresár." +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "neplatný regulárny výraz %r v %s" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "modul %s nemožno importovať: %s" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "neplatný regulárny výraz %r v coverage_c_regexes" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "nedokumentované API C: %s [%s] v súbore %s" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "modul %s nemožno importovať: %s" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "nedokumentovaná funkcia Python: %s :: %s" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "nedokumentovaná trieda Python: %s :: %s" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "nedokumentovaná metóda Python: %s :: %s :: %s" @@ -2668,7 +2849,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2744,7 +2925,7 @@ msgstr "[graf: %s]" msgid "[graph]" msgstr "[graf]" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2752,7 +2933,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2762,99 +2943,39 @@ msgid "" "%r" msgstr "convert skončil chybou:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "príkaz convert %r nemožno spustiť, skontrolujte nastavenie image_converter" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "Nemožno spustiť príkaz LaTeX %r (potrebný na zobrazenie math), skontrolujte nastavenia imgmath_latex" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "zobrazený latex %r: %s" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "vnorený latex %r: %s" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "inventár intersphinx bol presunutý: %s -> %s" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "načítanie inventára intersphinx z %s..." - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "nastali problémy s niektorými inventármi, ale boli nájdené funkčné alternatívy:" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "nemožno získať žiadne inventáre kvôli týmto problémom:" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "(v %s v%s)" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "(v %s)" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "identifikátor intersphinx %rnie je raťzec, ignorované" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "Zlyhalo čítanie intersphinx_mapping[%s], ignorované: %r" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[zdroj]" @@ -3030,23 +3151,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "Autosummary s popiskom vyžaduje voľbu :toctree: , ignorované." -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3054,46 +3175,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "zlyhalo spracovanie mena %s" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "zlyhal import objektu %s" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: súbor nenájdený: %s" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3101,7 +3228,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3116,36 +3243,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "adresár umiestnenia výstupu" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "predvolená prípona súboru (predvolene: %(default)s)" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "vlastný adresár šablón (predvolene: %(default)s)" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "dokumentovať importovaných členov (predvolene: %(default)s)" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "identifikátor intersphinx %rnie je raťzec, ignorované" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "Zlyhalo čítanie intersphinx_mapping[%s], ignorované: %r" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "nastali problémy s niektorými inventármi, ale boli nájdené funkčné alternatívy:" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "nemožno získať žiadne inventáre kvôli týmto problémom:" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "inventár intersphinx bol presunutý: %s -> %s" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "(v %s v%s)" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "(v %s)" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "Argumenty kľúčových slov" @@ -3202,65 +3394,65 @@ msgstr "neplatná textová konštanta (chýba koncová úvodzovka): %s" msgid "malformed string literal (missing opening quote): %s" msgstr "neplatná textová konštanta (chýba začiatočná úvodzovka): %s" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "Výstraha" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "Upozornenie" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "Nebezpečné" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "Chyba" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "Rada" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "Dôležité" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "Poznámka" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "Viď aj" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "Tip" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "Varovanie" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "pokračovanie z predošlej strany" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "pokračuje na ďalšej strane" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "Čísla" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "strana" @@ -3269,7 +3461,7 @@ msgstr "strana" msgid "Table of Contents" msgstr "Obsah" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Hľadať" @@ -3327,12 +3519,12 @@ msgstr "rýchly prístup ku všetkým modulom" msgid "all functions, classes, terms" msgstr "všetky funkcie, triedy, termíny" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" -msgstr "Index – %(key)s" +msgid "Index – %(key)s" +msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3351,31 +3543,31 @@ msgstr "môže byť rozsiahle" msgid "Navigation" msgstr "Navigácia" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "Hľadať v %(docstitle)s" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "O dokumentácii" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "Autorské právo" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Naposledy aktualizované %(last_updated)s." -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3478,7 +3670,7 @@ msgstr "Hľadanie" msgid "Preparing search..." msgstr "Príprava hľadania..." -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr ", v " @@ -3487,11 +3679,11 @@ msgid "Hide Search Matches" msgstr "Skryť výsledky hľadania" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "Zbaliť bočný panel" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "Rozbaliť bočný panel" @@ -3499,26 +3691,26 @@ msgstr "Rozbaliť bočný panel" msgid "Contents" msgstr "Obsah" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "Poznámka pod čiarou [%s] nie je odkazovaná." -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "Poznámka pod čiarou [#] nie je odkazovaná." @@ -3567,17 +3759,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "%r cieľ odkazu nenájdený: %s" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "Nemožno získať vzdialený obrázok: %s [%d]" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "Nemožno získať vzdialený obrázok: %s [%s]" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "Neznámy formát obrázku: %s..." @@ -3587,11 +3779,11 @@ msgstr "Neznámy formát obrázku: %s..." msgid "undecodable source characters, replacing with \"?\": %r" msgstr "nedekódovateľné zdrojové znaky, nahradené „?”: %r" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "preskočené" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "zlyhalo" @@ -3602,12 +3794,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "neznáma direktíva alebo meno role: %s:%s" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "neznámy typ uzla: %r" @@ -3634,18 +3826,23 @@ msgid "" "it directly: %s" msgstr "Neplatný formát dátumu. Použije jednoduché úvodzovky, ak ho chcete priamo vo výstupe: %s" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "strom obsahu obsahuje neexistujúci súbor %r" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3655,45 +3852,50 @@ msgstr "" msgid "default role %s not found" msgstr "predvolená rola %s nenájdená" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "nie je definovaný numfig_format pre %s" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "Žiadne ID nie je priradené uzlu %s" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "Nemožno získať veľkosť obrázku. voľba :scale: je ignorovaná." @@ -3706,31 +3908,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "príliš veľké :maxdepth:, ignorované." -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "názov dokumentu nie je jeden uzol Text" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "Poznámky pod čiarou" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "sú zadané obe, tabularcolumns aj voľba :widths:. :widths: je ignorované." -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3744,11 +3951,11 @@ msgstr "[obrázok: %s]" msgid "[image]" msgstr "[obrázok]" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "titulok nie je vo vnútri figure." -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "neimplementovaný typ uzla: %r" diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.js b/sphinx/locale/sl/LC_MESSAGES/sphinx.js index b342c07..2b69114 100644 --- a/sphinx/locale/sl/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/sl/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "Potrdi", "Hide Search Matches": "Skrij resultate iskanja", "Index": "Abecedni seznam", - "Index – %(key)s": "Seznam – %(key)s", + "Index – %(key)s": "", "Index pages by letter": "Indeksiraj strani po \u010drki", "Indices and tables:": "Kazalo in seznami:", "Last updated on %(last_updated)s.": "Zadnji\u010d posodobljeno %(last_updated)s.", diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.mo b/sphinx/locale/sl/LC_MESSAGES/sphinx.mo index 698e340..f8b9a60 100644 Binary files a/sphinx/locale/sl/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sl/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.po b/sphinx/locale/sl/LC_MESSAGES/sphinx.po index 183c484..7d2e945 100644 --- a/sphinx/locale/sl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sl/LC_MESSAGES/sphinx.po @@ -7,134 +7,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: Slovenian (http://app.transifex.com/sphinx-doc/sphinx-1/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,75 +155,77 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -231,78 +233,78 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" @@ -487,190 +489,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -679,7 +833,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" @@ -689,7 +843,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -704,28 +858,28 @@ msgstr "" msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "" @@ -814,7 +968,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -842,12 +996,17 @@ msgstr "" msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -932,7 +1091,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -958,13 +1117,13 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -978,144 +1137,149 @@ msgstr "Splošni abecedni seznam" msgid "index" msgstr "abecedni seznam" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "naprej" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "nazaj" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "" @@ -1141,19 +1305,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "Abecedni seznam" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "Izdaja" @@ -1211,18 +1377,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1230,27 +1388,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1262,7 +1399,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1351,7 +1488,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1362,7 +1499,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1644,12 +1781,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1758,12 +1895,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1795,11 +1932,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1827,85 +1964,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "Avtor sekcije: " -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "Avtor modula: " -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "Avtor: " @@ -1913,7 +2050,7 @@ msgstr "Avtor: " msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1963,7 +2100,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (vgrajene funkcije)" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metoda)" @@ -1978,7 +2115,7 @@ msgstr "%s() (razred)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atribut)" @@ -1987,52 +2124,52 @@ msgstr "%s (%s atribut)" msgid "Arguments" msgstr "" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "Vrne" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "Vrne tip" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "funkcija" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "razred" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "atribut" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "modul" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2042,7 +2179,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2079,352 +2216,374 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "Parametri" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "član" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "tip" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "%s() (v modulu %s)" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "%s (v modulu %s)" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "%s (vgrajene spremenljivke)" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "%s (vgrajen razred)" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "%s (razred v %s)" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statična metoda)" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "Moduli" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "Zastarelo" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "izjema" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "statična metoda" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr " (zastarelo)" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "Sproži izjemo" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "okoljska spremenljivka; %s" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "okoljska spremenljivka" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "Seznam modulov" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Iskalnik" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "" @@ -2460,17 +2619,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2482,149 +2641,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2665,7 +2846,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2741,7 +2922,7 @@ msgstr "" msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2749,7 +2930,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2759,99 +2940,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" @@ -3027,23 +3148,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3051,46 +3172,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3098,7 +3225,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3113,36 +3240,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" @@ -3199,65 +3391,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "Pozor" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "Previdno" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "Nevarno" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "Napaka" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "Nasvet" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "Pomembno" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "Opomba" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "Poglej Tudi" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "Nasvet" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "Opozorilo" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "nadaljevanje iz prejšnje strani" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "" @@ -3266,7 +3458,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Išči" @@ -3324,12 +3516,12 @@ msgstr "hiter dostop do vseh modulov" msgid "all functions, classes, terms" msgstr "vse funkcije, razredi, izrazi" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" -msgstr "Seznam – %(key)s" +msgid "Index – %(key)s" +msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3348,31 +3540,31 @@ msgstr "lahko je veliko" msgid "Navigation" msgstr "Navigacija" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "Išči med %(docstitle)s" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "O dokumentih" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "Vse pravice pridržane" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Zadnjič posodobljeno %(last_updated)s." -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3475,7 +3667,7 @@ msgstr "" msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr "" @@ -3484,11 +3676,11 @@ msgid "Hide Search Matches" msgstr "Skrij resultate iskanja" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "" @@ -3496,26 +3688,26 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "" @@ -3564,17 +3756,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3584,11 +3776,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "" @@ -3599,12 +3791,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3631,18 +3823,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3652,45 +3849,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3703,31 +3905,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "Opombe" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3741,11 +3948,11 @@ msgstr "" msgid "[image]" msgstr "[slika]" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/sphinx.pot b/sphinx/locale/sphinx.pot index e915d48..91f59bf 100644 --- a/sphinx/locale/sphinx.pot +++ b/sphinx/locale/sphinx.pot @@ -6,134 +6,134 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: Sphinx 7.3.0\n" +"Project-Id-Version: Sphinx 7.4.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-16 21:54+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+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" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with" " this version." msgstr "" -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -141,12 +141,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -154,76 +154,78 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called " "sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -231,78 +233,78 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but " "`{current}` is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" @@ -487,189 +489,341 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from" +" %r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes" " are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a " +"different location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from" +" conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not " +"included in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document " +"must be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -678,7 +832,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" @@ -688,7 +842,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -703,28 +857,28 @@ msgstr "" msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "" @@ -819,7 +973,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -847,12 +1001,17 @@ msgstr "" msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -937,7 +1096,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -963,13 +1122,13 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -983,144 +1142,149 @@ msgstr "" msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the" " index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all" " config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected " "in configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "" @@ -1146,19 +1310,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "" @@ -1216,18 +1382,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1235,27 +1393,6 @@ msgid "" "to the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1267,7 +1404,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1361,7 +1498,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1372,7 +1509,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1659,12 +1796,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1775,12 +1912,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1812,11 +1949,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1845,85 +1982,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try " "giving an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "" @@ -1931,7 +2068,7 @@ msgstr "" msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1981,7 +2118,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1996,7 +2133,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2005,52 +2142,52 @@ msgstr "" msgid "Arguments" msgstr "" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2060,7 +2197,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2097,352 +2234,374 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: " "for one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr "" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\"," " \"--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose" " another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "" @@ -2478,17 +2637,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and " @@ -2503,148 +2662,170 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2685,7 +2866,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "====================== slowest reading durations =======================" msgstr "" @@ -2759,7 +2940,7 @@ msgstr "" msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' " @@ -2769,7 +2950,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2779,99 +2960,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the " "imgmath_%s setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had " -"working alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" @@ -3047,23 +3168,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3071,29 +3192,36 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with " +"%r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does " "not contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following " @@ -3101,17 +3229,17 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3119,7 +3247,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3136,36 +3264,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had " +"working alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" @@ -3222,65 +3415,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "" @@ -3289,7 +3482,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "" @@ -3347,12 +3540,12 @@ msgstr "" msgid "all functions, classes, terms" msgstr "" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" +msgid "Index – %(key)s" msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3371,31 +3564,31 @@ msgstr "" msgid "Navigation" msgstr "" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3497,7 +3690,7 @@ msgstr "" msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr "" @@ -3506,11 +3699,11 @@ msgid "Hide Search Matches" msgstr "" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "" @@ -3518,25 +3711,25 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "" @@ -3585,17 +3778,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3605,11 +3798,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "" @@ -3620,12 +3813,12 @@ msgid "" "is not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3652,19 +3845,24 @@ msgid "" "output it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' " "instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3674,45 +3872,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3725,29 +3928,34 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3761,11 +3969,11 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.js b/sphinx/locale/sq/LC_MESSAGES/sphinx.js index 063220b..e86d9d1 100644 --- a/sphinx/locale/sq/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/sq/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "Shko", "Hide Search Matches": "Fshih P\u00ebrputhje K\u00ebrkimi", "Index": "Tregues", - "Index – %(key)s": "Tregues – %(key)s", + "Index – %(key)s": "Tregues – %(key)s", "Index pages by letter": "Faqe treguesi sipas shkronjash", "Indices and tables:": "Tregues dhe tabela:", "Last updated on %(last_updated)s.": "P\u00ebrdit\u00ebsuar s\u00eb fundi m\u00eb %(last_updated)s.", diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.mo b/sphinx/locale/sq/LC_MESSAGES/sphinx.mo index 1cf9abf..47eebd1 100644 Binary files a/sphinx/locale/sq/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sq/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.po b/sphinx/locale/sq/LC_MESSAGES/sphinx.po index 5fdf73f..7c083e7 100644 --- a/sphinx/locale/sq/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sq/LC_MESSAGES/sphinx.po @@ -8,134 +8,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Besnik Bleta <besnik@programeshqip.org>, 2021-2024\n" "Language-Team: Albanian (http://app.transifex.com/sphinx-doc/sphinx-1/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "S’gjendet dot drejtori burim (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "Drejtoria e përfundimeve (%s) s’është drejtori" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "Drejtoria burim dhe drejtoria vendmbërritje s’mund të jenë identike" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "Po xhirohet Sphinx v%s" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Ky projekt lyp të paktën Sphinx v%s, ndaj s’mund të montohet me këtë version." -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "po krijohet drejtori përfundimesh" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "teksa ujdiset zgjerimi %s:" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' siç është përcaktuar aktualisht te conf.py s’është funksion Python që mund të thirret. Ju lutemi, ndryshojeni përcaktimin e tij që ta bëni një funksion që mund të thirret. Kjo është e nevojshme që conf.py të sillet si një zgjerim Sphinx." -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "po ngarkohen përkthime [%s]… " -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "u bë" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "s’është i passhëm për mesazhe të brendshëm" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "dështoi: %s" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "S’u përzgjodh montues, po përdoret parazgjedhja: html" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "doli me sukses" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "u përfundua me probleme" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "montimi %s, % sinjalizim (me sinjalizime të trajtuara si gabime)." -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "montimi %s, %s sinjalizime (me sinjalizime të trajtuara si gabime)." -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "build %s, %s warning." -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "montimi %s, %s sinjalizime." -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "montimi %s." -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "klasa %r e nyjeve është e regjistruar tashmë, vizitorët e saj do të anashkalohen" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "direktiva %r është e regjistruar tashmë, do të anashkalohet" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "roli %r është e regjistruar tashmë, do të anashkalohet" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "zgjerimi %s nuk deklaron nëse është i parrezik për lexim paralel, po merret se s’është - ju lutemi, kërkojini autorin të zgjerimit ta kontrollojë dhe ta bëjë këtë shprehimisht" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "zgjerimi %s s’është i sigurt për lexim paralel" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,75 +156,77 @@ msgid "" "explicit" msgstr "zgjerimi %s nuk deklaron nëse është i parrezik për shkrim paralel, po merret se s’është - ju lutemi, kërkojini autorin të zgjerimit ta kontrollojë dhe ta bëjë këtë shprehimisht" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "zgjerimi %s s’është i sigurt për shkrim paralel" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "drejtoria e formësimeve nuk përmban një kartelë conf.py (%s)" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "U gjet vlerë e pavlefshme formësimi: 'language = Asnjë'. Përditësojeni formësimin tuaj me një kod të vlefshëm gjuhe. Përkohësisht po përdoret 'en' (anglisht)." -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "s’mund të anashkalohet rregullim formësimi fjalorthi %r, po shpërfillet (për të ujdisur elemente individuale, përdorni %r)" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "numër %r i pavlefshëm për vlerë formësimi %r, po shpërfillet" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "s’mund të anashkalohet rregullim formësimi %r me një lloj të pambuluar, po shpërfillet" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "vlerë e panjohur formësimi %r te anashkalimi, po shpërfillet" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "S’ka vlerë të tillë formësimi: %r" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "Vlerë formësimi %r e pranishme tashmë" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Ka një gabim sintakse te kartela juaj e formësimit: %s\n" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Kartela e formësimit (ose një nga modulet që ajo importon) thirri sys.exit()" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -232,78 +234,78 @@ msgid "" "%s" msgstr "Ka një gabim të programueshëm te kartela juaj e formësimit:\n\n%s" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" -msgstr "" +msgstr "S’u arrit të shndërrohet %r në një grup, ose në një dyshe" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "Vlera e formësimit `source_suffix' pret një varg, një listë vargjesh, ose një fjalor. Por është dhënë `%r'." -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "Ndarja %s" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "Figura %s" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "Tabela %s" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "Vlera e formësimit `{name}` duhet të jetë një nga {candidates}, por është dhënë `{current}`." -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "Vlera e formësimit `{name}' është e llojit `{current.__name__}'; pritej {permitted}." -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "Vlera e formësimit `{name}' është e llojit `{current.__name__}', si parazgjedhje merr `{default.__name__}'." -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "s’u gjet primary_domain %r, po shpërfillet." -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "Që prej v2.0, Sphinx përdor \"index\" për root_doc, si parazgjedhje. Ju lutemi, shtoni \"root_doc = 'contents'\" te conf.py juaj." -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "Vlerë formësimi %r e pranishme tashmë" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "Emër i panjohur akti: %s" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "Trajtuesi %r për aktin %r u përgjigj me një përjashtim" @@ -488,190 +490,342 @@ msgstr "numër PEP i pavlefshëm %s" msgid "invalid RFC number %s" msgstr "numër RFC i pavlefshëm %s" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "Nuk mbulohen pjesë formësimi tjetër nga [theme] dhe [options], në vend të kësaj po jepet vlera parazgjedhje (u provua të merrej një vlerë nga %r)" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "rregullimi %s.%s nuk haset në asnjë prej formësimeve temash ku u kërkua" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "është dhënë mundësi teme %r e pambuluar" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "kartela %r te shteg teme s’është kartelë zip e vlefshme ose nuk përmban temë" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "s’u gjet temë e emërtuar %r (mungon theme.toml?)" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "Tema %r ka trashëgimi rrethore" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "Tema %r trashëgon nga %r, e cila s’është temë e ngarkuar. Temat e ngarkuara janë: %s" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "Tema %r ka shumë paraardhës" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "s’u gjet kartelë formësimi teme në %r" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "tema %r s’ka tabelën “theme”" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "Tabela “[theme]” e temës %r s’është tabelë" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "Tema %r duhet të përcaktojë rregullimin “theme.inherit”" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "Tablea “[options]” e temës %r s’është tabelë" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "Rregullimi “theme.pygments_style” duhet të jetë një tabelë. Ndihmëz: “%s”" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "Përdorimi:" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "{0} [MUNDËSI] <COMMAND> [<ARGS>]" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "Prodhuesi i dokumentimit Sphinx" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "Urdhra:" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "Mundësi" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "Për më tepër informacion, vizitoni https://www.sphinx-doc.org/en/master/man/." + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "{0}: gabim: {1}\nPër informacion, xhironi '{0} --help'" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "Administroni dokumentimin me Sphinx." + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "Shfaq versionin dhe dil." + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "Shfaq këtë mesazh dhe dil." + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "Regjistrim" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "Vetëm gabime dhe sinjalizime shtypjeje" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "Pa dhënë gjë" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "<command>" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "Shihni 'sphinx --help'.\n" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "Ndodhi një përjashtim, po niset diagnostikuesi:" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "U ndërpre!" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "Gabim markup-i reStructuredText:" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "Gabim kodimi:" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "Gabim përsëritje:" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "Kjo mund të ndodhë me kartela burim shumë të mëdha ose të futura thellë brenda njëra-tjetrës. Mund të rrisni me kujdes kufirin parazgjedhje për ripërsëritje Python prej 1000, te conf.py, me p.sh.:" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "Ndodhi një përjashtim:" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "Traceback-u i plotë u ruajt te:" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "Për t’ua njoftuar këtë gabim zhvilluesve, ju lutemi, hapni një çështje te <https://github.com/sphinx-doc/sphinx/issues/>. Faleminderit!" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "Ju lutemi, njoftojeni nëse qe një gabim përdoruesi, që kështu herës tjetër të mund të furnizohet një mesazh më i mirë gabimi." + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "s’u gjet figurë e përshtatshme për montuesin %s: %s (%s)" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "s’u gjet figurë e përshtatshme për montuesin %s: %s" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "po montohet [mo]: " -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "po shkruhet përfundim… " -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "krejt kartelat po %d" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "objektiva për kartela po %d që janë specifikuar" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "objektiva për kartela po %d që janë të papërditësuara" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "krejt kartelat burim" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "kartela %r, dhënë te rreshti i urdhrave, nuk ekziston, " -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "kartela %r e dhënë te rresht urdhrash s’gjendet te drejtori burim, po shpërfillet" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "kartela %r, dhënë te rreshti i urdhrave, s’është dokument i vlefshëm, po shpërfillet" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "kartela burim %d dhënë te rresht urdhrash" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "objektiva për kartela burim %d që janë të papërditësuara" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "po montohet [%s]: " -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "po shihet për kartela të sapovjetruara… " -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "U gjet %d" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "s’u gjet gjë" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "po kontrollohet njëtrajtshmëria" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "s’ka objektiva të vjetruar." -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "po përditësohet mjedisi: " -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s të shtuar, %s të ndryshuar, %s të hequr" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "Sphinx-i s’është në gjendje të ngarkojë dokumentin kryesor (%s), ngaqë ka përkim me një rregullsi të brendshme përjashtimi %r. Ju lutemi, shpjereni dokumentin tuaj kryesor te një vendndodhje tjetër." + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "Sphinx-i s’është në gjendje të ngarkojë dokumentin kryesor (%s), ngaqë ka përkim me një rregullsi përjashtimi të treguar në conf.py, %r. Ju lutemi, hiqeni rregullsinë nga conf.py." + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "po lexohen burime… " -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "emra dokumentesh për shkrim: %s" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "po përgatiten dokumente" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -680,7 +834,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "u gjet zë TeL i përsëdytur: %s" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "po kopjohen figura… " @@ -690,7 +844,7 @@ msgstr "po kopjohen figura… " msgid "cannot read image file %r: copying it instead" msgstr "s’lexohet dot kartelë figure %r: në vend të tij, po kopjohet" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -705,28 +859,28 @@ msgstr "s’shkruhet dot kartelë figure %r: %s" msgid "Pillow not found - copying image files" msgstr "S’u gjet Pillow - po kopjohen kartela figurë" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "po shkruhet kartelë llojesh MIME…" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "po shkruhet kartelë META-INF/container.xml…" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "po shkruhet kartelë content.opf…" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "lloj MIME i panjohur për %s, po shpërfillet" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "po shkruhet kartelë toc.ncx…" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "po shkruhet kartelë %s…" @@ -815,7 +969,7 @@ msgstr "vlera e formësimit \"epub_identifier\" s’duhet të jetë e zbrazët p msgid "conf value \"version\" should not be empty for EPUB3" msgstr "vlera e formësimit \"version\" s’duhet të jetë e zbrazët për EPUB3" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "css_file e pavlefshme: %r, u shpërfill" @@ -843,12 +997,17 @@ msgstr "po shkruhen katalogë mesazhesh… " msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "Shihni për çfarëdo gabimesh te përfundimi më sipër ose te %(outdir)s/output.txt" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "lidhje e dëmtuar: %s (%s)" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "S’u gjet spirancë '%s'" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "S’u arrit të përpilohet shprehje e rregullt te linkcheck_allowed_redirects: %r %s" @@ -933,7 +1092,7 @@ msgstr "gabim në shkrim kartele Makefile: %s" msgid "The text files are in %(outdir)s." msgstr "Kartelat tekst gjenden në %(outdir)s." -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -959,13 +1118,13 @@ msgstr "kartela e të dhënave të montimit është e dëmtuar: %r" msgid "The HTML pages are in %(outdir)s." msgstr "Faqet HTML gjenden në %(outdir)s." -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "S’u arrit të lexohet kartelë të dhënash montimi: %r" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -979,144 +1138,149 @@ msgstr "Tregues i Përgjithshëm" msgid "index" msgstr "tregues" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "Stemë e %s" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "pasuesi" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "i mëparshmi" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "po prodhohen tregues" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "po shkruhen faqe shtesë" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "po kopjohen kartela të shkarkueshme… " -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "s’kopjohet dot kartelë e shkarkueshme %r: %s" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "S’u arrit të kopjohet një kartelë te html_static_file: %s: %r" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "po kopjohen kartela statike" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "s’kopjohet dot kartelë statike %r" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "po kopjohen kartela ekstra" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "s’kopjohet dot kartelë ekstra %r" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "S’u arrit të shkruhet kartelë të dhënash montimi: %r" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "treguesi i kërkimi s’u ngarkua dot, por jo krejt dokumentet do të montohen: treguesi do të jetë i paplotë." -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "faqja %s ka përputhje me dy rregullsi te html_sidebars: %r dhe %r" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "ndodhi një gabim Unikod, kur vizatohej faqja %s. Ju lutemi, siguroni që krejt vlerat e formësimit që përmbajnë lëndë jo-ASCII të jenë vargje Unikod." -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "Ndodhi një gabim gjatë vizatimit të faqes %s.\nArsye: %r" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "po shkruhet lënda e treguesit të kërkimeve në %s" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "js_file e pavlefshme: %r, u shpërfill" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "Janë të regjistruar plot math_renderers. Por s’u përzgjodh math_renderer." -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "U dha math_renderer %r i panjohur." -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "zëri html_extra_path %r s’ekziston" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "zëri %r i html_extra_path entry është vendosur jashtë outdir-it" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "zëri html_static_path %r s’ekziston" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "zëri %r i html_extra_path entry është vendosur brenda outdir-it" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "kartela stemë %r s’ekziston" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "kartela favikonë %r s’ekziston" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "HTML 4 s’mbulohet më nga Sphinx-i. (U pikas “html4_writer=True” te mundësi formësimi)" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "Dokumentim i %s %s" @@ -1142,19 +1306,21 @@ msgstr "s’u gjet vlerë formësimi \"texinfo_documents\"; s’do të shkruhet msgid "\"latex_documents\" config value references unknown document %s" msgstr "vlera e formësimit \"texinfo_documents\" i referohet një dokumenti të panjohur %s" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "Tregues" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "Hedhje Në Qarkullim" @@ -1212,18 +1378,10 @@ msgstr "S’u gjet poshtëshënim për nyjë reference të dhënë %r" msgid "Exception occurred while building, starting debugger:" msgstr "Ndodhi një përjashtim gjatë montimit, po niset diagnostikuesi:" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "U ndërpre!" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "Gabim markup-i reST:" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "Gabim kodimi:" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1231,27 +1389,6 @@ msgid "" "the developers." msgstr "Traceback-u i plotë është ruajtur te %s, nëse doni t’ua raportoni problemin zhvilluesve." -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "Gabim përsëritje:" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "Kjo mund të ndodhë me kartela burim shumë të mëdha ose të futura thellë brenda njëra-tjetrës. Mund të rrisni me kujdes kufirin parazgjedhje për ripërsëritje Python prej 1000, te conf.py, me p.sh.:" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "Ndodhi një përjashtim:" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "Ju lutemi, njoftojeni nëse qe një gabim përdoruesi, që kështu herës tjetër të mund të furnizohet një mesazh më i mirë gabimi." - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1263,7 +1400,7 @@ msgid "job number should be a positive number" msgstr "numri i aktit duhet të jetë një numër pozitiv" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "Për më tepër hollësi, vizitoni <https://www.sphinx-doc.org/>." @@ -1352,8 +1489,8 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "përcaktoni etiketë: përfshi blloqe “only” me TAG" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" -msgstr "mënyra “nit-picky”: sinjalizo për krejt referencat që mungonjnë" +msgid "nitpicky mode: warn about all missing references" +msgstr "" #: sphinx/cmd/build.py:184 msgid "console output options" @@ -1363,7 +1500,7 @@ msgstr "mundësi për ç’prodhon konsola" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "pa output në stdout, thjesht sinjalizime në stderr" @@ -1645,12 +1782,12 @@ msgstr "Të krijohet Makefile? (y/n)" msgid "Create Windows command file? (y/n)" msgstr "Të krijohet kartelë urdhrash Windows? (y/n)" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "Po krijohet kartela %s." -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "Ka tashmë një kartelë %s, po anashkalohet." @@ -1759,12 +1896,12 @@ msgstr "përdor epub" msgid "Extension options" msgstr "Mundësi zgjerimi" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "aktivizo zgjerimin %s" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "aktivizo zgjerime arbitrare" @@ -1796,11 +1933,11 @@ msgstr "përdor make-mode për Makefile/make.bat" msgid "do not use make-mode for Makefile/make.bat" msgstr "mos përdor make-mode për Makefile/make.bat" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "Gjedhe projekti" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "drejtori gjedhesh për kartela gjedhe" @@ -1828,85 +1965,85 @@ msgstr "sphinx-quickstart prodhon vetëm te një drejtori e zbrazët. Ju lutemi, msgid "Invalid template variable: %s" msgstr "Ndryshore e pavlefshme gjedheje: %s" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "Titull i pavlefshëm: %s" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "numri i specifikuar për rreshtin është jashtë intervali (1-%d): %r" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "S’mund të përdoren në të njëjtën kohë të dyja mundësitë \"%s\" \"%s\"" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "S’u gjet kartelë “include” %r, ose leximi i saj dështoi" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "Kodimi %r i përdorur për lexim të kartelës “include” %r duket të jetë i gabuar, provoni të jepni një mundësi :encoding:" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "Objekti i emërtuar %r s’u gjet te kartelë include %r" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "toctree përmban referencë ndaj dokumenti %r të përjashtuar" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "toctree përmban referencë ndaj dokumenti %r që s’ekziston" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "zë i përsëdytur, gjetur te toctree: %s" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "Autor ndarjeje: " -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "Autor moduli: " -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "Autor kodi: " -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "Autor: " @@ -1914,7 +2051,7 @@ msgstr "Autor: " msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1964,7 +2101,7 @@ msgstr "Përmendja [%s] s’është në referencë." msgid "%s() (built-in function)" msgstr "%s() (funksion i brendshëm)" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "%s() (metodë %s)" @@ -1979,7 +2116,7 @@ msgstr "%s() (klasë)" msgid "%s (global variable or constant)" msgstr "%s ( ndryshore globale ose konstante)" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" @@ -1988,52 +2125,52 @@ msgstr "%s (atribut %s)" msgid "Arguments" msgstr "Argumente" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "Kthime" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "Lloj kthimi" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "funksion" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "metodë" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "klasë" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "të dhëna" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "atribut" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "modul" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "përshkrim %s i përsëdytur i %s, tjetër %s në %s" @@ -2043,7 +2180,7 @@ msgstr "përshkrim %s i përsëdytur i %s, tjetër %s në %s" msgid "duplicate label of equation %s, other instance in %s" msgstr "etiketë e përsëdytur ekuacioni %s, instancë tjetër te %s" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "math_eqref_format i pavlefshëm: %r" @@ -2080,352 +2217,374 @@ msgstr "rol" msgid "duplicate description of %s %s, other instance in %s" msgstr "përshkrim i përsëdytur %s %s, instancë tjetër te %s" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "%s (C %s)" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "Deklarim C i përsëdytur, përkufizuar edhe te %s:%s.\nDeklarimi është '.. c:%s:: %s'." -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "Parametra" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "anëtar" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "ndryshore" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "makro" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "bashkim" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "lloj" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "parametër funksioni" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "Parametra Gjedhesh" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "Deklarim C++ i përsëdytur, përkufizuar edhe te %s:%s.\nDeklarimi është '.. cpp:%s:: %s'." -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "koncept" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "parametër gjedheje" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "%s() (te moduli %s)" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "%s (te moduli %s)" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "%s (ndryshore e brendshme)" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "%s (klasë e brendshme)" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "%s (klasë te %s)" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "%s() (metodë klase %s)" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "%s() (metodë statike %s)" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "%s (veti %s)" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "Tregues Modulesh Python" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "module" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "Nxjerrë nga përdorimi" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "përjashtim" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "metodë klase" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "metodë statike" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "veti" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "përshkrim i përsëdytur objekti %s, hasje tjetër te %s, për njërin prej tyre përdorni :no-index:" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "për ndërreferencën %r u gjet më shumë se një objektiv: %s" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr " (nxjerrë nga përdorimi)" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "Ndryshore" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "ndryshore mjedisi; %s" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "Përshkrim i keqformuar mundësie %r, duhet të duket si \"opt\", \"-opt args\", \"--opt args\", \"/opt args\" ose \"+opt args\"" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "Mundësi për rresht urdhrash %s" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "mundësi për rresht urdhrash" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "termi i fjalorthit duhet të paraprihet nga një rresht i zbrazët" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "termat e fjalorthit s’duhet të paraprihet nga rreshta të zbrazët" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "fjalorthi duket të jetë i keformatuar, kontrolloni shmangie kryeradhe" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "term fjalorthi" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "etiketë reference" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "ndryshore mjedisi" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "mundësi programi" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "dokument" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "Tregues Modulesh" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Faqe Kërkimesh" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "etiketë %s e përsëdytur, tjetër instancë te %s" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "përshkrim %s i përsëdytur për %s, tjetër instancë te %s" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig është i çaktivizuar. :numref: është shpërfillur." -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "S’u arrit të krijohej një ndërreferencë. S’u caktua ndonjë numër: %s" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "lidhja s’ka titull: %s" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "numfig_format i pavlefshëm: %s (%r)" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "numfig_format i pavlefshëm: %s" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "etiketë e papërkufizuar: %r" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "S’u arrit të krijohet ndërreferencë. S’u gjet një titull, ose një përshkrim: %r" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "formësim i ri" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "formësimi ndryshoi" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "zgjerimet u ndryshuan" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "version jo i tanishëm i mjedisit të montimit" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "drejtoria burim ka ndryshuar" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "Ky mjedis është i papërputhshëm me montuesin e përzgjedhur, ju lutemi, zgjidhni një tjetër drejtori doctree." -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "S’u arrit të skanohen dokumente te %s: %r" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "Përkatësia %r s’është e regjistruar" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "dokumenti s’është i përfshirë në ndonjë toctree" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "U gjet “toctree” që i referohet vetes. U shpërfill." -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "shihni %s" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "shihni edhe %s" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "lloj i panjohur zëri treguesi: %r" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "Simbole" @@ -2461,17 +2620,17 @@ msgstr "kartelë figure %s jo e lexueshme: %s" msgid "download file not readable: %s" msgstr "kartelë shkarkimi jo e lexueshme: %s" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "Do të krijonte kartelë %s." -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2483,149 +2642,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "\nShih në mënyrë rekursive te <MODULE_PATH> për module dhe\npaketa Python dhe krijo një kartelë reST me direktiva\nautomodulesh për paketë te <OUTPUT_PATH>.\n\n<EXCLUDE_PATTERN>s mund të jetë shprehje kartelash dhe/ose\ndrejtorish që mund të përjashtohen nga prodhimi.\n\nShënim: Si parazgjedhje, ky programth s’do të anashkalojë\nkartela të krijuara tashmë." -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "shteg për te modul për te dokumenti" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "kartelë fnmatch-style dhe/ose rregullsi drejtorish për t’u përjashtuar prej prodhimit" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "drejtori ku të vendosen krejt përfundimet" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "thellësi maksimum nënmodulesh për shfaqje te TEL (parazgjedhje: 4)" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "mbishkruaj kartela ekzistuese" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "ndiq lidhje simbolike. E fuqishme, kur ndërthuret me collective.recipe.omelette." -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "xhiroje programthin pa krijuar kartela" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "vendose dokumentim për çdo modul në faqe më vete" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "përfshi modulet \"_private\"" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "emër kartele për tryezën e lëndës (parazgjedhje: modules)" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "mos krijo një kartelë tryeze lënde" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "mos krijo krye për paketat modul/paketë (për shembull, kur ato i përmban tashmë docstrings)" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "vendose dokumentimin e modulit përpara dokumentimit të nënmodulit" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "interpreto shtigje modulesh sipas specifikimeve impicite PEP-0420 për emërhapësira" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "prapashtesë kartele (parazgjedhje: rst)" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "Hiq te drejtoria përfundim kartela ekzistuese që s’qenë prodhuar" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "prodho me sphinx-quickstart një projekt të plotë" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "shto module_path pas sys.path, e përdorur kur është dhënë --full" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "emër projekti (parazgjedhje: emër moduli rrënjë)" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "autor(ë) projekti, e përdorur kur është dhënë --full" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "version projekti, e përdorur kur është dhënë --full" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "hedhje në qarkullim e projektit, e përdorur kur është dhënë --full, si parazgjedhje merr --doc-version" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "mundësi zgjatimi" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "%s s’është drejtori." +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "S’u arrit të hiqet %s: %s" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "pjesa “%s” etiketohet si “%s”" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "shprehje e rregullt e pavlefshme %r te %s" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "moduli %s s’u importua dot: %s" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "Testimi i mbulimit te burimet përfundoi, shihni te përfundimet në %(outdir)spython.txt." -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "shprehje e rregullt %r e pavlefshme te coverage_c_regexes" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "API C e padokumentuar: %s [%s] te kartela %s" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "moduli %s s’u importua dot: %s" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "funksion python i padokumentuar: %s :: %s" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "klasë python e padokumentuar: %s :: %s" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "metodë python e padokumentuar: %s :: %s :: %s" @@ -2666,7 +2847,7 @@ msgstr "s’ka kod/dhënie te blloku %s në %s:%s" msgid "ignoring invalid doctest code: %r" msgstr "po shpërfillet kod “doctest” i pavlefshëm: %r" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "=================== kohëzgjatjet më të ngadalta të leximit ===================" @@ -2742,7 +2923,7 @@ msgstr "[grafik: %s]" msgid "[graph]" msgstr "[grafik]" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2750,7 +2931,7 @@ msgid "" "Traceback: %s" msgstr "S’arrihet të xhirohet urdhri %r. për shndërrim figure. Si parazgjedhje, 'sphinx.ext.imgconverter' lyp ImageMagick. Sigurohuni se është i instaluar, ose për mundësinë 'image_converter' caktoni një urdhër vetjak shndërrimi .\n\nTraceback: %s" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2760,99 +2941,39 @@ msgid "" "%r" msgstr "shndërrimi përfundoi me gabimin:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "s’mund të xhirohet urdhër shndërrimi %r, kontrolloni rregullimin image_converter" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "Urdhri LaTeX %r s’mund të xhirohet (i nevojshëm për shfaqje formulash matematikore), kontrolloni rregullimin imgmath_late" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "Urdhri %s %r s’mund të xhirohet (i nevojshëm për shfaqje formulash matematikore), kontrolloni rregullimin imgmath_%s" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "shfaq latex %r: %s" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "latex brendazi %r: %s" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "Lidhje për te ky ekuacion" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "inventari intersphinx është lëvizur: %s -> %s" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "po ngarkohet inventari intersphinx prej %s…" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "u hasën disa probleme me disa nga inventare, por kishin alternativa funksionale:" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "s’u arrit të kapej ndonjë inventar me problemet vijuese:" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "(te %s v%s)" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "(te %s)" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "s’u gjet objektiv reference të jashtme %s:%s: %s" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "identifikuesi intersphinx %r s’është varg. U shpërfill" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "S’u arrit të lexohej intersphinx_mapping[%s], u shpërfill: %r" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[burim]" @@ -3028,23 +3149,23 @@ msgstr "S’u arrit të përditësohet nënshkrim për %r: s’u gjet parametër msgid "Failed to parse type_comment for %r: %s" msgstr "S’u arrit të përtypet type_comment për %r: %s" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "referenca vetëpërmbledhjeje përjashtuan dokumentin %r. U shpërfill." -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "vetëpërmbledhje: s’u gjet kartelë stub %r. Kontrolloni rregullimin tuaj autosummary_generate." -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3052,46 +3173,52 @@ msgid "" "%s" msgstr "përmbledhje e automatizuar: s’u arrit të importohej %s.\nNdihmëza të mundshme:\n%s" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "s’u arrit të përtypej emri %s" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "s’u arrit të importohej objekti %s" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: s’u gjet kartelë: %s" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "veçoria e përmbledhjes së automatizuar prodhon kartela .rst së brendshmi. Por source_suffix juaj nuk përmban .rst. U anashkalua." -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "vetëpërmbledhje: s’u arrit të përcaktohet %r për t’u dokumentuar, u shfaq përjashtimi vijues:\n%s" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[vetëpërmbledhje] prodhim vetëpërmbledhje për: %s" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "[vetëpërmbledhje] po shkruhet te %s" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3099,7 +3226,7 @@ msgid "" "%s" msgstr "[autosummary] s’u arrit të importohej %s.\nNdihmëza të mundshme:\n%s" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3114,36 +3241,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\nProdhoni ReStructuredText duke përdorur direktiva vetëpërmbledhje.\n\nsphinx-autogen është një ndërfaqe pamore për sphinx.ext.autosummary.generate. Prodhon\nkartela reStructuredText nga direktiva vetëpërmbledhjeje që përmbahen te\nkartelat e dhëna.\n\nFormati i direktivës vetëpërmbledhje dokumentohet te\nmoduli Python ``sphinx.ext.autosummary`` dhe mund të lexohet duke përdorur::\n\n pydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "kartela burim për të cilat të krijohen kartela rST" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "drejtori ku të vendosen krejt përfundimet" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "prapashtesë parazgjedhje për kartela (parazgjedhje: %(default)s)" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "drejtori gjedhesh vetjake (parazgjedhje: %(default)s)" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "pjesë të importuara të dokumentit (parazgjedhje: %(default)s)" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "dokumentoni saktësisht pjesët te moduli __all__ attribute. (parazgjedhje: %(default)s)" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "identifikuesi intersphinx %r s’është varg. U shpërfill" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "S’u arrit të lexohej intersphinx_mapping[%s], u shpërfill: %r" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "u hasën disa probleme me disa nga inventare, por kishin alternativa funksionale:" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "s’u arrit të kapej ndonjë inventar me problemet vijuese:" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "inventari intersphinx është lëvizur: %s -> %s" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "(te %s v%s)" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "(te %s)" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "parashtesë e pavlefshme ndër-reference të jashtme: %r" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "s’u gjet përkatësi për ndër-referencë të jashtme: %r" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "s’u gjet objektiv reference të jashtme %s:%s: %s" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "Argumente Fjalëkyçi" @@ -3200,65 +3392,65 @@ msgstr "shprehje vargu e keqformuar (mungon thonjëz mbyllëse): %s" msgid "malformed string literal (missing opening quote): %s" msgstr "shprehje vargu e keqformuar (mungon thonjëz hapëse): %s" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "Vëmendje" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "Kujdes" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "Rrezik" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "Gabim" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "Ndihmëz" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "E rëndësishme" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "Shënim" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "Shihni edhe" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "Ndihmëz" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "Sinjalizim" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "vazhduar nga faqja e mëparshme" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "vazhdon në faqen pasuese" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "Joalfabetike" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "Numra" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "faqe" @@ -3267,7 +3459,7 @@ msgstr "faqe" msgid "Table of Contents" msgstr "Tryeza e Lëndës" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Kērko" @@ -3325,12 +3517,12 @@ msgstr "hyrje e shpejtë te krejt modulet" msgid "all functions, classes, terms" msgstr "krejt funksionet, klasat, termat" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" -msgstr "Tregues – %(key)s" +msgid "Index – %(key)s" +msgstr "Tregues – %(key)s" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3349,31 +3541,31 @@ msgstr "mund të jetë i stërmadh" msgid "Navigation" msgstr "Lëvizje" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "Kërkoni brenda %(docstitle)s" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "Mbi këto dokumente" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "Të drejta kopjimi" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "© %(copyright_prefix)s %(copyright)s." -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Përditësuar së fundi më %(last_updated)s." -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3476,7 +3668,7 @@ msgstr "Kërkim" msgid "Preparing search..." msgstr "Po përgatitet kërkim..." -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr ", në " @@ -3485,11 +3677,11 @@ msgid "Hide Search Matches" msgstr "Fshih Përputhje Kërkimi" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "Tkurre anështyllën" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "Zgjeroje anështyllën" @@ -3497,26 +3689,26 @@ msgstr "Zgjeroje anështyllën" msgid "Contents" msgstr "Lëndë" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "s’u njehsua dot ecuri përkthimi!" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "pa elementë të përkthyer!" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "U gjet tregues me bazë 4 shtylla. Mund të jetë një e metë e zgjerimeve që përdorni: %r" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "Poshtëshënimi [%s] s’është në referencë." -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "Poshtëshënimi [#] s’është në referencë." @@ -3548,7 +3740,7 @@ msgstr "referenca citimi pa njëtrajtësi, te mesazhi i përkthyer. origjinali: msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." -msgstr "" +msgstr "S’u përcaktua dot tekst rrugëdalje për ndër-referencë. Mund të jetë një e metë e programit." #: sphinx/transforms/post_transforms/__init__.py:158 #, python-format @@ -3565,17 +3757,17 @@ msgstr "s’u gjet objektiv reference %s:%s: %s" msgid "%r reference target not found: %s" msgstr "s’u gjet objektiv reference %r: %s" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "S’u pru dot figurë e largët: %s [%d]" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "S’u soll dot figurë e largët: %s [%s]" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "Format i panjohur figure: %s…" @@ -3585,11 +3777,11 @@ msgstr "Format i panjohur figure: %s…" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "shenja burimi të padeshifrueshme, po zëvendësohen me \"?\": %r" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "e anashkaluar" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "e dështuar" @@ -3600,12 +3792,12 @@ msgid "" "not in the domain." msgstr "Problem në përkatësinë %s: fusha supozohet të përdorë rol '%s', por ai rol s’gjendet te përkatësia." -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "emër direktive ose roli të panjohur: %s:%s" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "lloj i panjohur nyjeje: %r" @@ -3632,18 +3824,23 @@ msgid "" "it directly: %s" msgstr "Format i pavlefshëm datash. Quote the string by single quote Nëse doni të jepet drejtpërsëdrejti, përdorni për vargun thonjëza njëshe: %s" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "%r është nxjerrë nga funksionimi për zëra treguesi (nga zëri %r). Në vend të tij përdorni “pair: %s”." -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "“toctree” përmban referencë për te një kartelë joekzistuese %r" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "përjashtim teksa vlerësohej vetëm shprehje direktive: %s" @@ -3653,45 +3850,50 @@ msgstr "përjashtim teksa vlerësohej vetëm shprehje direktive: %s" msgid "default role %s not found" msgstr "s’u gjet rol parazgjedhje %s" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "Lidhje për te ky përkufizim" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "numfig_format s’është i përcaktuar për %s" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "Çfarëdo ID-sh jo të përshoqëruara për nyjën %s" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "Lidhje për te ky term" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "Lidhje për te kjo krye" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "Lidhje për te kjo tabelë" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "Lidhje për te ky kod" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "Lidhje për te kjo figurë" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "Lidhje për te kjo “toctree”" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "S’u mor dot madhësi figure. Mundësia :scale: u shpërfill." @@ -3704,31 +3906,36 @@ msgstr "toplevel_sectioning %r i panjohur për klasën %r" msgid "too large :maxdepth:, ignored." msgstr ":maxdepth: shumë i madh, u shpërfill." -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "titulli i dokumentit s’është nyje njëshe Teksti" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "u has nyje titulli jo në ndarje, temë, tabelë, paralajmërim ose anështyllë" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "Poshtëshënime" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "janë dhënë që të dyja mundësitë, “tabularcolumns” dhe “:widths:”. shpërfillet :widths:." -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "njësia e përmasave %s është e pavlefshme. U shpërfill." -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "u gjet lloj i panjohur %s zërash treguesi" @@ -3742,11 +3949,11 @@ msgstr "[figurë: %s]" msgid "[image]" msgstr "[figurë]" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "titull jo brenda një figure." -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "lloj nyjeje i pasendërtuar: %r" diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.js b/sphinx/locale/sr/LC_MESSAGES/sphinx.js index 5abbab8..b4d9b64 100644 --- a/sphinx/locale/sr/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/sr/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "\u0422\u0440\u0430\u0436\u0438", "Hide Search Matches": "", "Index": "\u0418\u043d\u0434\u0435\u043a\u0441", - "Index – %(key)s": "", + "Index – %(key)s": "", "Index pages by letter": "", "Indices and tables:": "", "Last updated on %(last_updated)s.": "", diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr/LC_MESSAGES/sphinx.mo index 1d6b421..7e72488 100644 Binary files a/sphinx/locale/sr/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sr/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.po b/sphinx/locale/sr/LC_MESSAGES/sphinx.po index 656bffe..f551326 100644 --- a/sphinx/locale/sr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr/LC_MESSAGES/sphinx.po @@ -9,134 +9,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Vladimir Milovanović <vmilovanovic@gmail.com>, 2020\n" "Language-Team: Serbian (http://app.transifex.com/sphinx-doc/sphinx-1/language/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "Нема изворног директоријума (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "Изворни и одредишни директоријум не могу бити једнаки" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "Покрећем Sphinx v%s" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Овај пројекат захтева верзију Sphinx v%s или већу, не може се изградити инсталираном верзијом." -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "учитавање превода [%s]... " -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "готово" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "Неуспешно: %s" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "успешно" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "са грешкама" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -144,12 +144,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,75 +157,77 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "Конфигурациони директоријум не садржи conf.py датотеку (%s)." -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -233,78 +235,78 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "Одељак %s" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "Сл. %s" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "Табела %s" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "Списак %s" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "Догађај %r већ постоји" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "Непознат догађај: %s" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" @@ -489,190 +491,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "све изворне датотеке" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "ажурирање окружења: " -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "припремање докумената" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -681,7 +835,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "пребацивање слика... " @@ -691,7 +845,7 @@ msgstr "пребацивање слика... " msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -706,28 +860,28 @@ msgstr "" msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "" @@ -816,7 +970,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -844,12 +998,17 @@ msgstr "" msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -934,7 +1093,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -960,13 +1119,13 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -980,144 +1139,149 @@ msgstr "" msgid "index" msgstr "индекс" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "напред" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "назад" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "документација %s %s" @@ -1143,19 +1307,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "Индекс" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "Издање" @@ -1213,18 +1379,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1232,27 +1390,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1264,7 +1401,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1353,7 +1490,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1364,7 +1501,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1646,12 +1783,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1760,12 +1897,12 @@ msgstr "користи epub" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1797,11 +1934,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1829,85 +1966,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "Аутор одељка: " -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "Аутор модула: " -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "Аутор кода: " -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "Аутор: " @@ -1915,7 +2052,7 @@ msgstr "Аутор: " msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1965,7 +2102,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (уграђена функција)" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s метода)" @@ -1980,7 +2117,7 @@ msgstr "%s() (класа)" msgid "%s (global variable or constant)" msgstr "%s (глобална променљива или константа)" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "%s (атрибут %s)" @@ -1989,52 +2126,52 @@ msgstr "%s (атрибут %s)" msgid "Arguments" msgstr "Аргументи" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "Резултат" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "Тип резултата" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "%s (модул)" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "функција" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "метода" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "класа" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "атрибут" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "модул" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2044,7 +2181,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2081,352 +2218,374 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "Параметри" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "променљива" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "тип" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "%s() (у модулу %s)" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "%s (у модулу %s)" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "%s (уграђена променљива)" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "%s (уграђена класа)" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "%s (класа у %s)" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "%s() (метода класе %s)" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "%s() (статичка метода %s)" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "модули" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "Застарело" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "изузетак" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "метода класе" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "статичка метода" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr "" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "Променљиве" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "променљива окружења; %s" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "документ" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "погледајте %s" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "такође погледајте %s" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "Симболи" @@ -2462,17 +2621,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2484,149 +2643,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "суфикс датотеке (подразумевани: rst)" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2667,7 +2848,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2743,7 +2924,7 @@ msgstr "" msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2751,7 +2932,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2761,99 +2942,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "(у %s v%s)" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "(у %s)" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[изворни код]" @@ -3029,23 +3150,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3053,46 +3174,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3100,7 +3227,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3115,36 +3242,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "(у %s v%s)" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "(у %s)" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" @@ -3201,65 +3393,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "Пажња" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "Грешка" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "Путоказ" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "Важно" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "Белешка" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "Савет" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "Упозорење" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "настављено са претходне стране" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "наставак на следећој страни" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "Бројеви" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "страна" @@ -3268,7 +3460,7 @@ msgstr "страна" msgid "Table of Contents" msgstr "Садржај" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Претрага" @@ -3326,12 +3518,12 @@ msgstr "" msgid "all functions, classes, terms" msgstr "" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" +msgid "Index – %(key)s" msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3350,31 +3542,31 @@ msgstr "" msgid "Navigation" msgstr "Навигација" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3477,7 +3669,7 @@ msgstr "Претражује се" msgid "Preparing search..." msgstr "Припрема претраге..." -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr ", у " @@ -3486,11 +3678,11 @@ msgid "Hide Search Matches" msgstr "" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "" @@ -3498,26 +3690,26 @@ msgstr "" msgid "Contents" msgstr "Садржај" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "" @@ -3566,17 +3758,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3586,11 +3778,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "" @@ -3601,12 +3793,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3633,18 +3825,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3654,45 +3851,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3705,31 +3907,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3743,11 +3950,11 @@ msgstr "[слика: %s]" msgid "[image]" msgstr "[слика]" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo index 56b31d8..0d85541 100644 Binary files a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo index c4821d0..084be69 100644 Binary files a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.js b/sphinx/locale/sv/LC_MESSAGES/sphinx.js index 35eccb5..c35c783 100644 --- a/sphinx/locale/sv/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/sv/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "G\u00e5", "Hide Search Matches": "D\u00f6lj S\u00f6kresultat", "Index": "Index", - "Index – %(key)s": "Index – %(key)s", + "Index – %(key)s": "", "Index pages by letter": "Inneh\u00e5llsf\u00f6rteckning per inledande bokstav", "Indices and tables:": "Index och tabeller", "Last updated on %(last_updated)s.": "Senast uppdaterad %(last_updated)s.", diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.mo b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo index 7331a07..3ff9726 100644 Binary files a/sphinx/locale/sv/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.po b/sphinx/locale/sv/LC_MESSAGES/sphinx.po index 42c4b33..2f3f2af 100644 --- a/sphinx/locale/sv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sv/LC_MESSAGES/sphinx.po @@ -7,134 +7,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: Swedish (http://app.transifex.com/sphinx-doc/sphinx-1/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,75 +155,77 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -231,78 +233,78 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" @@ -487,190 +489,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -679,7 +833,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" @@ -689,7 +843,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -704,28 +858,28 @@ msgstr "" msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "" @@ -814,7 +968,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -842,12 +996,17 @@ msgstr "" msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -932,7 +1091,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -958,13 +1117,13 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -978,144 +1137,149 @@ msgstr "Huvudindex" msgid "index" msgstr "index" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "nästa" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "föregående" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "" @@ -1141,19 +1305,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "Index" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "Utgåva" @@ -1211,18 +1377,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1230,27 +1388,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1262,7 +1399,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1351,7 +1488,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1362,7 +1499,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1644,12 +1781,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1758,12 +1895,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1795,11 +1932,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1827,85 +1964,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "Sektionsförfattare" -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "Modulförfattare" -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "Källkodsförfattare" -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "Upphovsman:" @@ -1913,7 +2050,7 @@ msgstr "Upphovsman:" msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1963,7 +2100,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (inbyggd funktion)" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metod)" @@ -1978,7 +2115,7 @@ msgstr "%s() (klass)" msgid "%s (global variable or constant)" msgstr "%s (global variabel eller konstant)" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribut)" @@ -1987,52 +2124,52 @@ msgstr "%s (%s attribut)" msgid "Arguments" msgstr "Argument" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "Kastar" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "Returnerar" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "Returtyp" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "funktion" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "metod" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "klass" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "attribut" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "modul" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2042,7 +2179,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2079,352 +2216,374 @@ msgstr "roll" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "Parametrar" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "medlem" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "variabel" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "makro" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "typ" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "%s() (i modul %s)" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "%s (i modul %s)" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "%s (inbyggd variabel)" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "%s (inbyggd klass)" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "%s (klass i %s)" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klassmetod)" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statisk metod)" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "Python Modulindex" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "moduler" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "Ersatt" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "undantag" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "klassmetod" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "statisk metod" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr "" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "Variabler" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "Väcker" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "miljövariabel; %s" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "ordlista" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "grammatisk token" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "referensetikett" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "miljövariabel" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "programväxel" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "Modulindex" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Söksida" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "se %s" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "se även %s" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "" @@ -2460,17 +2619,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2482,149 +2641,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2665,7 +2846,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2741,7 +2922,7 @@ msgstr "" msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2749,7 +2930,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2759,99 +2940,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[source]" @@ -3027,23 +3148,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3051,46 +3172,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3098,7 +3225,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3113,36 +3240,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" @@ -3199,65 +3391,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "Uppmärksamma" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "Varning" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "Risk" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "Fel" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "Råd" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "Viktigt" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "Observera" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "Se även" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "Tips" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "Varning" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "fortsättning från föregående sida" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "" @@ -3266,7 +3458,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Sök" @@ -3324,12 +3516,12 @@ msgstr "genväg till alla moduler" msgid "all functions, classes, terms" msgstr "alla funktioner, klasser, villkor" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" -msgstr "Index – %(key)s" +msgid "Index – %(key)s" +msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3348,31 +3540,31 @@ msgstr "kan bli stort" msgid "Navigation" msgstr "Navigation" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "Sök bland %(docstitle)s" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "Om dessa dokument" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "Copyright" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Senast uppdaterad %(last_updated)s." -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3475,7 +3667,7 @@ msgstr "" msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr "" @@ -3484,11 +3676,11 @@ msgid "Hide Search Matches" msgstr "Dölj Sökresultat" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "Dölj sidolist" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "Expandera sidolist" @@ -3496,26 +3688,26 @@ msgstr "Expandera sidolist" msgid "Contents" msgstr "Innehåll" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "" @@ -3564,17 +3756,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3584,11 +3776,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "" @@ -3599,12 +3791,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3631,18 +3823,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3652,45 +3849,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3703,31 +3905,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "Fotnoter" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3741,11 +3948,11 @@ msgstr "" msgid "[image]" msgstr "[image]" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.js b/sphinx/locale/ta/LC_MESSAGES/sphinx.js index 1aa60c1..9e9ca89 100644 --- a/sphinx/locale/ta/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/ta/LC_MESSAGES/sphinx.js @@ -1,60 +1,60 @@ Documentation.addTranslations({ "locale": "ta", "messages": { - "%(filename)s — %(docstitle)s": "%(\u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc1 \u0baa\u0bc6\u0baf\u0bb0\u0bcd) \u0b8e\u0bb8\u0bcd — %(\u0b9f\u0bbe\u0b95\u0bcd\u0bb8\u0bcd\u0b9f\u0bbf\u0b9f\u0bbf\u0bb2\u0bcd) \u0b95\u0bb3\u0bcd", - "© %(copyright_prefix)s %(copyright)s.": "© %(\u0baa\u0ba4\u0bbf\u0baa\u0bcd\u0baa\u0bc1\u0bb0\u0bbf\u0bae\u0bc8_\u0baa\u0bbf\u0bb0\u0bc6\u0b83\u0baa\u0bbf\u0b95\u0bcd\u0bb8\u0bcd) \u0b8e\u0bb8\u0bcd %(\u0baa\u0ba4\u0bbf\u0baa\u0bcd\u0baa\u0bc1\u0bb0\u0bbf\u0bae\u0bc8) \u0b95\u0bb3\u0bcd.", - ", in ": ", \u0b87\u0bb2\u0bcd", - "About these documents": "\u0b87\u0ba8\u0bcd\u0ba4 \u0b86\u0bb5\u0ba3\u0b99\u0bcd\u0b95\u0bb3\u0bc8\u0baa\u0bcd \u0baa\u0bb1\u0bcd\u0bb1\u0bbf", - "Automatically generated list of changes in version %(version)s": "\u0baa\u0ba4\u0bbf\u0baa\u0bcd\u0baa\u0bc1 %(\u0baa\u0ba4\u0bbf\u0baa\u0bcd\u0baa\u0bc1) S \u0b87\u0bb2\u0bcd \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0b99\u0bcd\u0b95\u0bb3\u0bbf\u0ba9\u0bcd \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd \u0ba4\u0bbe\u0ba9\u0bbe\u0b95 \u0b89\u0bb0\u0bc1\u0bb5\u0bbe\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1", - "C API changes": "\u0b9a\u0bbf \u0b8f\u0baa\u0bbf\u0b90 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0b99\u0bcd\u0b95\u0bb3\u0bcd", - "Changes in Version %(version)s — %(docstitle)s": "\u0baa\u0ba4\u0bbf\u0baa\u0bcd\u0baa\u0bc1 %(\u0baa\u0ba4\u0bbf\u0baa\u0bcd\u0baa\u0bc1) S — %(\u0b9f\u0bbe\u0b95\u0bcd\u0bb8\u0bcd\u0b9f\u0bbf\u0b9f\u0bbf\u0bb2\u0bcd) \u0b95\u0bb3\u0bcd", - "Collapse sidebar": "\u0baa\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bbf \u0b9a\u0bb0\u0bbf\u0bb5\u0bc1", - "Complete Table of Contents": "\u0b89\u0bb3\u0bcd\u0bb3\u0b9f\u0b95\u0bcd\u0b95\u0b99\u0bcd\u0b95\u0bb3\u0bbf\u0ba9\u0bcd \u0bae\u0bc1\u0bb4\u0bc1\u0bae\u0bc8\u0baf\u0bbe\u0ba9 \u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8", - "Contents": "\u0b89\u0bb3\u0bcd\u0bb3\u0b9f\u0b95\u0bcd\u0b95\u0b99\u0bcd\u0b95\u0bb3\u0bcd", - "Copyright": "\u0baa\u0ba4\u0bbf\u0baa\u0bcd\u0baa\u0bc1\u0bb0\u0bbf\u0bae\u0bc8", - "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "<a href=\"https://www.sphinx-doc.org/\"> \u0bb8\u0bcd\u0baa\u0bbf\u0ba9\u0bcd\u0b95\u0bcd\u0bb8\u0bcd </\u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd> %(\u0bb8\u0bcd\u0baa\u0bbf\u0ba9\u0bcd\u0b95\u0bcd\u0bb8\u0bcd \u0baa\u0ba4\u0bbf\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd.", - "Expand sidebar": "\u0baa\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bc8 \u0bb5\u0bbf\u0bb0\u0bbf\u0bb5\u0bbe\u0b95\u0bcd\u0b95\u0bc1\u0b99\u0bcd\u0b95\u0bb3\u0bcd", - "Full index on one page": "\u0b92\u0bb0\u0bc1 \u0baa\u0b95\u0bcd\u0b95\u0ba4\u0bcd\u0ba4\u0bbf\u0bb2\u0bcd \u0bae\u0bc1\u0bb4\u0bc1 \u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1", - "General Index": "\u0baa\u0bca\u0ba4\u0bc1 \u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8", - "Global Module Index": "\u0b89\u0bb2\u0b95\u0bb3\u0bbe\u0bb5\u0bbf\u0baf \u0ba4\u0bca\u0b95\u0bc1\u0ba4\u0bbf \u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8", - "Go": "\u0baa\u0bc7\u0bbe", - "Hide Search Matches": "\u0ba4\u0bc7\u0b9f\u0bb2\u0bcd \u0baa\u0bcb\u0b9f\u0bcd\u0b9f\u0bbf\u0b95\u0bb3\u0bc8 \u0bae\u0bb1\u0bc8\u0b95\u0bcd\u0b95\u0bb5\u0bc1\u0bae\u0bcd", - "Index": "\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bcd\u0b9f\u0bc1", - "Index – %(key)s": "\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bcd\u0b9f\u0bc1 & ndash; %(\u0bb5\u0bbf\u0b9a\u0bc8\u0b95\u0bb3\u0bcd", - "Index pages by letter": "\u0b95\u0b9f\u0bbf\u0ba4\u0bae\u0bcd \u0bae\u0bc2\u0bb2\u0bae\u0bcd \u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bcd\u0b9f\u0bc1 \u0baa\u0b95\u0bcd\u0b95\u0b99\u0bcd\u0b95\u0bb3\u0bcd", - "Indices and tables:": "\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1\u0b95\u0bb3\u0bcd \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8\u0b95\u0bb3\u0bcd:", - "Last updated on %(last_updated)s.": "\u0b95\u0b9f\u0bc8\u0b9a\u0bbf\u0baf\u0bbe\u0b95 %(last_updated) s \u0b87\u0bb2\u0bcd \u0baa\u0bc1\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1.", - "Library changes": "\u0ba8\u0bc2\u0bb2\u0b95 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0b99\u0bcd\u0b95\u0bb3\u0bcd", - "Navigation": "\u0bb5\u0bb4\u0bbf\u0b9a\u0bc6\u0bb2\u0bc1\u0ba4\u0bcd\u0ba4\u0bb2\u0bcd", - "Next topic": "\u0b85\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4 \u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1", - "Other changes": "\u0baa\u0bbf\u0bb1 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0b99\u0bcd\u0b95\u0bb3\u0bcd", - "Overview": "\u0b95\u0ba3\u0bcd\u0ba3\u0bcb\u0b9f\u0bcd\u0b9f\u0bae\u0bcd", - "Please activate JavaScript to enable the search\n functionality.": "\u0ba4\u0bc7\u0b9f\u0bb2\u0bc8 \u0b87\u0baf\u0b95\u0bcd\u0b95 \u0b9c\u0bbe\u0bb5\u0bbe\u0bb8\u0bcd\u0b95\u0bbf\u0bb0\u0bbf\u0baa\u0bcd\u0b9f\u0bc8 \u0b9a\u0bc6\u0baf\u0bb2\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bb5\u0bc1\u0bae\u0bcd \n \u0b9a\u0bc6\u0baf\u0bb2\u0bcd\u0baa\u0bbe\u0b9f\u0bc1.", - "Preparing search...": "\u0ba4\u0bc7\u0b9f\u0bb2\u0bc8\u0ba4\u0bcd \u0ba4\u0baf\u0bbe\u0bb0\u0bbf\u0ba4\u0bcd\u0ba4\u0bb2\u0bcd ...", - "Previous topic": "\u0bae\u0bc1\u0ba8\u0bcd\u0ba4\u0bc8\u0baf \u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1", - "Quick search": "\u0bb5\u0bbf\u0bb0\u0bc8\u0bb5\u0bc1 \u0ba4\u0bc7\u0b9f\u0bb2\u0bcd", - "Search": "\u0ba4\u0bc7\u0b9f\u0bb2\u0bcd", - "Search Page": "\u0ba4\u0bc7\u0b9f\u0bb2\u0bcd \u0baa\u0b95\u0bcd\u0b95\u0bae\u0bcd", - "Search Results": "\u0ba4\u0bc7\u0b9f\u0bb2\u0bcd \u0bae\u0bc1\u0b9f\u0bbf\u0bb5\u0bc1\u0b95\u0bb3\u0bcd", - "Search finished, found ${resultCount} page(s) matching the search query.": "\u0ba4\u0bc7\u0b9f\u0bb2\u0bcd \u0bae\u0bc1\u0b9f\u0bbf\u0ba8\u0bcd\u0ba4\u0ba4\u0bc1, \u0ba4\u0bc7\u0b9f\u0bb2\u0bcd \u0bb5\u0bbf\u0ba9\u0bb5\u0bb2\u0bc1\u0b9f\u0ba9\u0bcd \u0baa\u0bca\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0b95\u0bcd\u0b95\u0bc2\u0b9f\u0bbf\u0baf $ {resultCount} \u0baa\u0b95\u0bcd\u0b95\u0bae\u0bcd (\u0b95\u0bb3\u0bcd) \u0b95\u0bbf\u0b9f\u0bc8\u0ba4\u0bcd\u0ba4\u0ba4\u0bc1.", - "Search within %(docstitle)s": "%(\u0b9f\u0bbe\u0b95\u0bcd\u0bb8\u0bcd\u0b9f\u0bbf\u0b9f\u0bbf\u0bb2\u0bcd) \u0b95\u0bb3\u0bcd \u0ba4\u0bc7\u0b9f\u0bc1\u0b99\u0bcd\u0b95\u0bb3\u0bcd", - "Searching": "\u0ba4\u0bc7\u0b9f\u0bbf", - "Searching for multiple words only shows matches that contain\n all words.": "\u0baa\u0bb2 \u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bc8\u0ba4\u0bcd \u0ba4\u0bc7\u0b9f\u0bc1\u0bb5\u0ba4\u0bc1 \u0b95\u0bbe\u0ba3\u0bcd\u0baa\u0bbf\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0bcd \u0baa\u0bcb\u0b9f\u0bcd\u0b9f\u0bbf\u0b95\u0bb3\u0bc8 \u0bae\u0b9f\u0bcd\u0b9f\u0bc1\u0bae\u0bc7 \u0b95\u0bbe\u0b9f\u0bcd\u0b9f\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1 \n \u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc1 \u0bb5\u0bbe\u0bb0\u0bcd\u0ba4\u0bcd\u0ba4\u0bc8\u0b95\u0bb3\u0bc1\u0bae\u0bcd.", - "Show Source": "\u0bae\u0bc2\u0bb2\u0ba4\u0bcd\u0ba4\u0bc8\u0b95\u0bcd \u0b95\u0bbe\u0b9f\u0bcd\u0b9f\u0bc1", - "Table of Contents": "\u0b89\u0bb3\u0bcd\u0bb3\u0b9f\u0b95\u0bcd\u0b95 \u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8", - "This Page": "\u0b87\u0ba8\u0bcd\u0ba4 \u0baa\u0b95\u0bcd\u0b95\u0bae\u0bcd", - "Welcome! This is": "\u0bb5\u0bb0\u0bb5\u0bc7\u0bb1\u0bcd\u0baa\u0bc1! \u0b87\u0ba4\u0bc1", - "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "\u0b89\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0ba4\u0bc7\u0b9f\u0bb2\u0bcd \u0b8e\u0ba8\u0bcd\u0ba4 \u0b86\u0bb5\u0ba3\u0b99\u0bcd\u0b95\u0bb3\u0bc1\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0bcd \u0baa\u0bca\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8. \u0b8e\u0bb2\u0bcd\u0bb2\u0bbe \u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bc1\u0bae\u0bcd \u0b9a\u0bb0\u0bbf\u0baf\u0bbe\u0b95 \u0b89\u0b9a\u0bcd\u0b9a\u0bb0\u0bbf\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb3\u0bcd\u0bb3\u0ba9 \u0b8e\u0ba9\u0bcd\u0baa\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd, \u0ba8\u0bc0\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0baa\u0bcb\u0ba4\u0bc1\u0bae\u0bbe\u0ba9 \u0bb5\u0b95\u0bc8\u0b95\u0bb3\u0bc8\u0ba4\u0bcd \u0ba4\u0bc7\u0bb0\u0bcd\u0ba8\u0bcd\u0ba4\u0bc6\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb3\u0bcd\u0bb3\u0bc0\u0bb0\u0bcd\u0b95\u0bb3\u0bcd \u0b8e\u0ba9\u0bcd\u0baa\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0b89\u0bb1\u0bc1\u0ba4\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bb5\u0bc1\u0bae\u0bcd.", - "all functions, classes, terms": "\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc1 \u0b9a\u0bc6\u0baf\u0bb2\u0bcd\u0baa\u0bbe\u0b9f\u0bc1\u0b95\u0bb3\u0bcd, \u0bb5\u0b95\u0bc1\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd, \u0bb5\u0bbf\u0ba4\u0bbf\u0bae\u0bc1\u0bb1\u0bc8\u0b95\u0bb3\u0bcd", - "can be huge": "\u0bae\u0bbf\u0b95\u0baa\u0bcd\u0baa\u0bc6\u0bb0\u0bbf\u0baf\u0ba4\u0bbe\u0b95 \u0b87\u0bb0\u0bc1\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bc1\u0bae\u0bcd", - "last updated": "\u0b95\u0b9f\u0bc8\u0b9a\u0bbf\u0baf\u0bbe\u0b95 \u0baa\u0bc1\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1", - "lists all sections and subsections": "\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc1 \u0baa\u0bbf\u0bb0\u0bbf\u0bb5\u0bc1\u0b95\u0bb3\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0ba4\u0bc1\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bbf\u0bb0\u0bbf\u0bb5\u0bc1\u0b95\u0bb3\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bbf\u0b9f\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1", - "next chapter": "\u0b85\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4 \u0b85\u0ba4\u0bcd\u0ba4\u0bbf\u0baf\u0bbe\u0baf\u0bae\u0bcd", - "previous chapter": "\u0bae\u0bc1\u0ba8\u0bcd\u0ba4\u0bc8\u0baf \u0b85\u0ba4\u0bcd\u0ba4\u0bbf\u0baf\u0bbe\u0baf\u0bae\u0bcd", - "quick access to all modules": "\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc1 \u0ba4\u0bca\u0b95\u0bc1\u0ba4\u0bbf\u0b95\u0bb3\u0bc1\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0bcd \u0bb5\u0bbf\u0bb0\u0bc8\u0bb5\u0bbe\u0ba9 \u0b85\u0ba3\u0bc1\u0b95\u0bb2\u0bcd", - "search": "\u0ba4\u0bc7\u0b9f\u0bb2\u0bcd", - "search this documentation": "\u0b87\u0ba8\u0bcd\u0ba4 \u0b86\u0bb5\u0ba3\u0ba4\u0bcd\u0ba4\u0bc8\u0ba4\u0bcd \u0ba4\u0bc7\u0b9f\u0bc1\u0b99\u0bcd\u0b95\u0bb3\u0bcd", - "the documentation for": "\u0b86\u0bb5\u0ba3\u0b99\u0bcd\u0b95\u0bb3\u0bcd" + "%(filename)s — %(docstitle)s": "", + "© %(copyright_prefix)s %(copyright)s.": "", + ", in ": "", + "About these documents": "", + "Automatically generated list of changes in version %(version)s": "", + "C API changes": "", + "Changes in Version %(version)s — %(docstitle)s": "", + "Collapse sidebar": "", + "Complete Table of Contents": "", + "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": "", + "Global Module Index": "", + "Go": "", + "Hide Search Matches": "", + "Index": "", + "Index – %(key)s": "", + "Index pages by letter": "", + "Indices and tables:": "", + "Last updated on %(last_updated)s.": "", + "Library changes": "", + "Navigation": "", + "Next topic": "", + "Other changes": "", + "Overview": "", + "Please activate JavaScript to enable the search\n functionality.": "", + "Preparing search...": "", + "Previous topic": "", + "Quick search": "", + "Search": "", + "Search Page": "", + "Search Results": "", + "Search finished, found ${resultCount} page(s) matching the search query.": "", + "Search within %(docstitle)s": "", + "Searching": "", + "Searching for multiple words only shows matches that contain\n all words.": "", + "Show Source": "", + "Table of Contents": "", + "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.": "", + "all functions, classes, terms": "", + "can be huge": "", + "last updated": "", + "lists all sections and subsections": "", + "next chapter": "", + "previous chapter": "", + "quick access to all modules": "", + "search": "", + "search this documentation": "", + "the documentation for": "" }, "plural_expr": "(n != 1)" }); \ No newline at end of file diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.mo b/sphinx/locale/ta/LC_MESSAGES/sphinx.mo index cf2e108..5691abe 100644 Binary files a/sphinx/locale/ta/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ta/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.po b/sphinx/locale/ta/LC_MESSAGES/sphinx.po index a56273d..bcb65e2 100644 --- a/sphinx/locale/ta/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ta/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2024 ORGANIZATION +# Copyright (C) 2023 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -8,1264 +8,1222 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2023-08-17 14:58+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Julien Malard <julien.malard@mail.mcgill.ca>, 2019\n" "Language-Team: Tamil (http://app.transifex.com/sphinx-doc/sphinx-1/language/ta/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.12.1\n" "Language: ta\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" -msgstr "மூல கோப்பகத்தை (%கள்) கண்டுபிடிக்க முடியவில்லை" +msgstr "" #: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" -msgstr "வெளியீட்டு அடைவு (%கள்) ஒரு அடைவு அல்ல" +msgstr "" #: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" -msgstr "மூல அடைவு மற்றும் இலக்கு அடைவு ஒரே மாதிரியாக இருக்க முடியாது" +msgstr "" #: sphinx/application.py:197 #, python-format msgid "Running Sphinx v%s" -msgstr "இயங்கும் Sphinx v%s" +msgstr "" -#: sphinx/application.py:219 +#: sphinx/application.py:223 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." -msgstr "இந்த திட்டத்திற்கு குறைந்தபட்சம் ஸ்பின்க்ஸ் வி%கள் தேவை, எனவே இந்த பதிப்பில் உருவாக்க முடியாது." +msgstr "" -#: sphinx/application.py:235 +#: sphinx/application.py:239 msgid "making output directory" -msgstr "வெளியீட்டு கோப்பகத்தை உருவாக்குதல்" +msgstr "" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:244 sphinx/registry.py:444 #, python-format msgid "while setting up extension %s:" -msgstr "நீட்டிப்பு %s ஐ அமைக்கும் போது:" +msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:250 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." -msgstr "தற்போது conf.py இல் வரையறுக்கப்பட்டுள்ளபடி 'அமைவு' ஒரு பைதான் அழைக்கக்கூடியது அல்ல. அதை அழைக்கக்கூடிய செயல்பாடாக மாற்ற அதன் வரையறையை மாற்றவும். Conf.py ஒரு ஸ்பிங்க்ஸ் நீட்டிப்பாக நடந்து கொள்ள இது தேவை." +msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:281 #, python-format msgid "loading translations [%s]... " -msgstr "மொழிபெயர்ப்புகளை ஏற்றுகிறது [%கள்] ..." +msgstr "" -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:298 sphinx/util/display.py:84 msgid "done" -msgstr "முடிந்தது" +msgstr "" -#: sphinx/application.py:296 +#: sphinx/application.py:300 msgid "not available for built-in messages" -msgstr "உள்ளமைக்கப்பட்ட செய்திகளுக்கு கிடைக்கவில்லை" +msgstr "" -#: sphinx/application.py:310 +#: sphinx/application.py:314 msgid "loading pickled environment" -msgstr "ஊறுகாய் சூழலை ஏற்றுகிறது" +msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:322 #, python-format msgid "failed: %s" -msgstr "தோல்வியுற்றது: %கள்" +msgstr "" -#: sphinx/application.py:332 +#: sphinx/application.py:336 msgid "No builder selected, using default: html" -msgstr "இயல்புநிலையைப் பயன்படுத்தி பில்டர் தேர்ந்தெடுக்கப்படவில்லை: HTML" +msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:369 msgid "succeeded" -msgstr "வெற்றி பெற்றார்" +msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:370 msgid "finished with problems" -msgstr "சிக்கல்களுடன் முடிந்தது" +msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:374 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." -msgstr "%s, %s எச்சரிக்கையை உருவாக்குங்கள் (எச்சரிக்கைகள் பிழைகளாகக் கருதப்படுகின்றன)." +msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:376 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." -msgstr "%s, %s எச்சரிக்கைகளை உருவாக்குங்கள் (எச்சரிக்கைகள் பிழைகளாகக் கருதப்படுகின்றன)." +msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:379 #, python-format msgid "build %s, %s warning." -msgstr "%கள், %கள் எச்சரிக்கையை உருவாக்குங்கள்." +msgstr "" -#: sphinx/application.py:377 +#: sphinx/application.py:381 #, python-format msgid "build %s, %s warnings." -msgstr "%s, %s எச்சரிக்கைகளை உருவாக்குங்கள்." +msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:385 #, python-format msgid "build %s." -msgstr "%s ஐ உருவாக்குங்கள்." +msgstr "" -#: sphinx/application.py:610 +#: sphinx/application.py:616 #, python-format msgid "node class %r is already registered, its visitors will be overridden" -msgstr "முனை வகுப்பு %ஆர் ஏற்கனவே பதிவு செய்யப்பட்டுள்ளது, அதன் பார்வையாளர்கள் மீறப்படுவார்கள்" +msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:695 #, python-format msgid "directive %r is already registered, it will be overridden" -msgstr "டைரக்டிவ் %ஆர் ஏற்கனவே பதிவு செய்யப்பட்டுள்ளது, அது மீறப்படும்" +msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:717 sphinx/application.py:739 #, python-format msgid "role %r is already registered, it will be overridden" -msgstr "பங்கு %ஆர் ஏற்கனவே பதிவு செய்யப்பட்டுள்ளது, அது மீறப்படும்" +msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1288 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " "assuming it isn't - please ask the extension author to check and make it " "explicit" -msgstr "இணையான வாசிப்புக்கு இது பாதுகாப்பாக இருந்தால் %கள் நீட்டிப்பு அறிவிக்கவில்லை, அது இல்லை என்று கருதி - தயவுசெய்து நீட்டிப்பு ஆசிரியரிடம் சரிபார்த்து அதை வெளிப்படையாகச் சொல்லுங்கள்" +msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1292 #, python-format msgid "the %s extension is not safe for parallel reading" -msgstr "இணையான வாசிப்புக்கு %கள் நீட்டிப்பு பாதுகாப்பானது அல்ல" +msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1295 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " "assuming it isn't - please ask the extension author to check and make it " "explicit" -msgstr "இணையான எழுத்துக்கு பாதுகாப்பானதா என்று %கள் நீட்டிப்பு அறிவிக்கவில்லை, அது இல்லை என்று கருதி - தயவுசெய்து நீட்டிப்பு ஆசிரியரிடம் சரிபார்த்து அதை வெளிப்படையாகச் சொல்லுங்கள்" +msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1299 #, python-format msgid "the %s extension is not safe for parallel writing" -msgstr "இணையான எழுத்துக்கு %கள் நீட்டிப்பு பாதுகாப்பானது அல்ல" +msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1307 sphinx/application.py:1311 #, python-format msgid "doing serial %s" -msgstr "சீரியல் %கள் செய்வது" +msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:179 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "கட்டமைப்பு கோப்பகத்தில் ஒரு conf.py கோப்பு (%கள்) இல்லை" +msgstr "" -#: sphinx/config.py:318 +#: sphinx/config.py:188 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." -msgstr "தவறான உள்ளமைவு மதிப்பு காணப்படுகிறது: 'மொழி = எதுவுமில்லை'. உங்கள் உள்ளமைவை செல்லுபடியாகும் மொழிக் குறியீட்டிற்கு புதுப்பிக்கவும். 'EN' (ஆங்கிலம்) க்கு மீண்டும் விழுகிறது." +msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:217 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" -msgstr "புறக்கணித்தல் (தனிப்பட்ட கூறுகளை அமைக்க %R ஐப் பயன்படுத்தவும்) அகராதி கட்டமைப்பு அமைப்பை மேலெழுத முடியாது)" +msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:226 #, python-format msgid "invalid number %r for config value %r, ignoring" -msgstr "கட்டமைப்பு மதிப்புக்கு தவறான எண் %r, புறக்கணித்தல்" +msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:231 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" -msgstr "புறக்கணிப்பு, ஆதரிக்கப்படாத வகையுடன் %r ஐ கட்டமைக்கும் கட்டமைப்பு அமைப்பை மீற முடியாது" +msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:260 #, python-format msgid "unknown config value %r in override, ignoring" -msgstr "அறியப்படாத கட்டமைப்பு மதிப்பு %r மேலெழுதலில், புறக்கணிக்கிறது" +msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:288 #, python-format -msgid "No such config value: %r" +msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" -msgstr "கட்டமைப்பு மதிப்பு %r ஏற்கனவே உள்ளது" - -#: sphinx/config.py:473 -#, python-format -msgid "cannot cache unpickable configuration value: %r" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:360 #, python-format msgid "There is a syntax error in your configuration file: %s\n" -msgstr "உங்கள் உள்ளமைவு கோப்பில் ஒரு தொடரியல் பிழை உள்ளது: %கள்" +msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:363 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" -msgstr "Sys.exit () எனப்படும் உள்ளமைவு கோப்பு (அல்லது அது இறக்குமதி செய்யும் தொகுதிகளில் ஒன்று)" +msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" "\n" "%s" -msgstr "உங்கள் உள்ளமைவு கோப்பில் நிரல்படுத்தக்கூடிய பிழை உள்ளது: \n\n %கள்" - -#: sphinx/config.py:540 -#, python-format -msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:393 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." -msgstr "கட்டமைப்பு மதிப்பு `source_suffix 'ஒரு சரம், சரங்களின் பட்டியல் அல்லது அகராதியை எதிர்பார்க்கிறது. ஆனால் `%r 'வழங்கப்படுகிறது." +msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:413 #, python-format msgid "Section %s" -msgstr "பிரிவு %கள்" +msgstr "" -#: sphinx/config.py:586 +#: sphinx/config.py:414 #, python-format msgid "Fig. %s" -msgstr "படம். %கள்" +msgstr "" -#: sphinx/config.py:587 +#: sphinx/config.py:415 #, python-format msgid "Table %s" -msgstr "அட்டவணை %கள்" +msgstr "" -#: sphinx/config.py:588 +#: sphinx/config.py:416 #, python-format msgid "Listing %s" -msgstr "பட்டியல் %கள்" +msgstr "" -#: sphinx/config.py:663 +#: sphinx/config.py:488 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." -msgstr "கட்டமைப்பு மதிப்பு `{பெயர்}` {வேட்பாளர்களில் ஒருவராக இருக்க வேண்டும், ஆனால் `{நடப்பு}` வழங்கப்படுகிறது." +msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:506 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." -msgstr "கட்டமைப்பு மதிப்பு `{பெயர்} 'வகை` {நடப்பு .__ பெயர்__}'; எதிர்பார்க்கப்படுகிறது {அனுமதிக்கப்பட்டது}." +msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:518 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." -msgstr "கட்டமைப்பு மதிப்பு `{பெயர்} 'வகை` {நடப்பு .__ பெயர்__}', இயல்புநிலை `{இயல்புநிலை .__ பெயர்__} '." +msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:528 #, python-format msgid "primary_domain %r not found, ignored." -msgstr "முதன்மை_ டொமைன் %r கண்டுபிடிக்கப்படவில்லை, புறக்கணிக்கப்படுகிறது." +msgstr "" -#: sphinx/config.py:723 +#: sphinx/config.py:540 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." -msgstr "V2.0 என்பதால், SPHINX இயல்புநிலையாக \"குறியீட்டை\" ரூட்_டாக் பயன்படுத்துகிறது. உங்கள் conf.py இல் \"root_doc = 'பொருளடக்கம்'\" ஐச் சேர்க்கவும்." +msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:63 #, python-format msgid "Event %r already present" -msgstr "நிகழ்வு %r ஏற்கனவே உள்ளது" +msgstr "" -#: sphinx/events.py:70 +#: sphinx/events.py:69 #, python-format msgid "Unknown event name: %s" -msgstr "தெரியாத நிகழ்வு பெயர்: %கள்" +msgstr "" -#: sphinx/events.py:109 +#: sphinx/events.py:107 #, python-format msgid "Handler %r for event %r threw an exception" -msgstr "நிகழ்வு %r க்கு ஹேண்ட்லர் %r ஒரு விதிவிலக்கை வீசினார்" +msgstr "" -#: sphinx/extension.py:55 +#: sphinx/extension.py:53 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." -msgstr "%S நீட்டிப்பு தேவைகள்_எக்ஸ்டென்சன்ஸ் அமைப்புகளால் தேவைப்படுகிறது, ஆனால் அது ஏற்றப்படவில்லை." +msgstr "" -#: sphinx/extension.py:76 +#: sphinx/extension.py:69 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." -msgstr "இந்த திட்டத்திற்கு குறைந்தபட்சம் %கள் பதிப்பு %s இல் நீட்டிப்பு தேவைப்படுகிறது, எனவே ஏற்றப்பட்ட பதிப்பு ( %கள்) உடன் உருவாக்க முடியாது." +msgstr "" -#: sphinx/highlighting.py:155 +#: sphinx/highlighting.py:149 #, python-format msgid "Pygments lexer name %r is not known" -msgstr "பைக்மென்ட் லெக்ஸர் பெயர் %ஆர் அறியப்படவில்லை" +msgstr "" -#: sphinx/highlighting.py:189 +#: sphinx/highlighting.py:176 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." -msgstr "\" %S\" என லெக்சிங் literal_block %r டோக்கனில் பிழை ஏற்பட்டது: %r. தளர்வான பயன்முறையில் மீண்டும் முயற்சிப்பது." +msgstr "" -#: sphinx/project.py:66 +#: sphinx/project.py:65 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." -msgstr "\" %s\" ஆவணத்திற்கு பல கோப்புகள் காணப்படுகின்றன: %r \n உருவாக்க %R ஐப் பயன்படுத்தவும்." +msgstr "" -#: sphinx/project.py:81 +#: sphinx/project.py:74 #, python-format msgid "Ignored unreadable document %r." -msgstr "படிக்க முடியாத ஆவணம் %r ஐ புறக்கணித்தது." +msgstr "" -#: sphinx/registry.py:142 +#: sphinx/registry.py:136 #, python-format msgid "Builder class %s has no \"name\" attribute" -msgstr "பில்டர் வகுப்பு %எஸ் \"பெயர்\" பண்புக்கூறு இல்லை" +msgstr "" -#: sphinx/registry.py:144 +#: sphinx/registry.py:138 #, python-format msgid "Builder %r already exists (in module %s)" -msgstr "பில்டர் %ஆர் ஏற்கனவே உள்ளது (தொகுதி %கள்)" +msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:151 #, python-format msgid "Builder name %s not registered or available through entry point" -msgstr "பில்டர் பெயர் %எஸ் பதிவு செய்யப்படவில்லை அல்லது நுழைவு புள்ளி மூலம் கிடைக்கவில்லை" +msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:158 #, python-format msgid "Builder name %s not registered" -msgstr "பில்டர் பெயர் %கள் பதிவு செய்யப்படவில்லை" +msgstr "" -#: sphinx/registry.py:171 +#: sphinx/registry.py:165 #, python-format msgid "domain %s already registered" -msgstr "டொமைன் %கள் ஏற்கனவே பதிவு செய்யப்பட்டுள்ளன" +msgstr "" -#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 +#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 #, python-format msgid "domain %s not yet registered" -msgstr "டொமைன் %எஸ் இன்னும் பதிவு செய்யப்படவில்லை" +msgstr "" -#: sphinx/registry.py:198 +#: sphinx/registry.py:192 #, python-format msgid "The %r directive is already registered to domain %s" -msgstr "%R உத்தரவு ஏற்கனவே டொமைன் %s இல் பதிவு செய்யப்பட்டுள்ளது" +msgstr "" -#: sphinx/registry.py:210 +#: sphinx/registry.py:204 #, python-format msgid "The %r role is already registered to domain %s" -msgstr "%R பங்கு ஏற்கனவே டொமைன் %s க்கு பதிவு செய்யப்பட்டுள்ளது" +msgstr "" -#: sphinx/registry.py:221 +#: sphinx/registry.py:215 #, python-format msgid "The %r index is already registered to domain %s" -msgstr "%R குறியீடு ஏற்கனவே டொமைன் %s இல் பதிவு செய்யப்பட்டுள்ளது" +msgstr "" -#: sphinx/registry.py:252 +#: sphinx/registry.py:246 #, python-format msgid "The %r object_type is already registered" -msgstr "%R object_type ஏற்கனவே பதிவு செய்யப்பட்டுள்ளது" +msgstr "" -#: sphinx/registry.py:278 +#: sphinx/registry.py:272 #, python-format msgid "The %r crossref_type is already registered" -msgstr "%ஆர் கிராஸ்ரெஃப்_ டைப் ஏற்கனவே பதிவு செய்யப்பட்டுள்ளது" +msgstr "" -#: sphinx/registry.py:285 +#: sphinx/registry.py:279 #, python-format msgid "source_suffix %r is already registered" -msgstr "source_suffix %r ஏற்கனவே பதிவு செய்யப்பட்டுள்ளது" +msgstr "" -#: sphinx/registry.py:294 +#: sphinx/registry.py:288 #, python-format msgid "source_parser for %r is already registered" -msgstr "%R க்கான source_parser ஏற்கனவே பதிவு செய்யப்பட்டுள்ளது" +msgstr "" -#: sphinx/registry.py:302 +#: sphinx/registry.py:296 #, python-format msgid "Source parser for %s not registered" -msgstr "%கள் பதிவு செய்யப்படவில்லை என்பதற்கான மூல பாகுபடுத்தி" +msgstr "" -#: sphinx/registry.py:318 +#: sphinx/registry.py:312 #, python-format msgid "Translator for %r already exists" -msgstr "%R க்கான மொழிபெயர்ப்பாளர் ஏற்கனவே இருக்கிறார்" +msgstr "" -#: sphinx/registry.py:334 +#: sphinx/registry.py:328 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" -msgstr "Add_node () க்கான குவார்க்ஸ் ஒரு (வருகை, புறப்பட வேண்டும்) செயல்பாடு டூப்பிள்: %r = %r ஆக இருக்க வேண்டும்" +msgstr "" -#: sphinx/registry.py:417 +#: sphinx/registry.py:411 #, python-format msgid "enumerable_node %r already registered" -msgstr "கணக்கிடக்கூடிய முனை %ஏற்கனவே பதிவு செய்யப்பட்டுள்ளது" +msgstr "" -#: sphinx/registry.py:429 +#: sphinx/registry.py:423 #, python-format msgid "math renderer %s is already registered" -msgstr "கணித ரெண்டரர் %கள் ஏற்கனவே பதிவு செய்யப்பட்டுள்ளன" +msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:438 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." -msgstr "பதிப்பு %கள் முதல் %R நீட்டிப்பு ஏற்கனவே SPHINX உடன் இணைக்கப்பட்டுள்ளது; இந்த நீட்டிப்பு புறக்கணிக்கப்படுகிறது." +msgstr "" -#: sphinx/registry.py:455 +#: sphinx/registry.py:449 msgid "Original exception:\n" -msgstr "அசல் விதிவிலக்கு:" +msgstr "" -#: sphinx/registry.py:456 +#: sphinx/registry.py:450 #, python-format msgid "Could not import extension %s" -msgstr "நீட்டிப்பு %s ஐ இறக்குமதி செய்ய முடியவில்லை" +msgstr "" -#: sphinx/registry.py:461 +#: sphinx/registry.py:455 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" -msgstr "நீட்டிப்பு %r எந்த அமைப்பும் () செயல்பாட்டைக் கொண்டிருக்கவில்லை; இது உண்மையில் ஒரு ஸ்பிங்க்ஸ் நீட்டிப்பு தொகுதியா?" +msgstr "" -#: sphinx/registry.py:470 +#: sphinx/registry.py:464 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." -msgstr "இந்த திட்டத்தால் பயன்படுத்தப்படும் %கள் நீட்டிப்புக்கு குறைந்தபட்சம் ஸ்பின்க்ஸ் v %கள் தேவை; எனவே இந்த பதிப்பில் இதை உருவாக்க முடியாது." +msgstr "" -#: sphinx/registry.py:478 +#: sphinx/registry.py:472 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" -msgstr "நீட்டிப்பு %r அதன் அமைவு () செயல்பாட்டிலிருந்து ஆதரிக்கப்படாத பொருளைத் திருப்பியது; இது எதுவும் அல்லது மெட்டாடேட்டா அகராதியைத் திருப்பித் தரக்கூடாது" +msgstr "" -#: sphinx/roles.py:201 +#: sphinx/roles.py:178 #, python-format msgid "Python Enhancement Proposals; PEP %s" -msgstr "பைதான் மேம்பாட்டு திட்டங்கள்; Pep %s" - -#: sphinx/roles.py:222 -#, python-format -msgid "invalid PEP number %s" -msgstr "தவறான PEP எண் %s" - -#: sphinx/roles.py:257 -#, python-format -msgid "invalid RFC number %s" -msgstr "தவறான RFC எண் %s" - -#: sphinx/theming.py:125 -#, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" -msgstr "தேடப்பட்ட தீம் கட்டமைப்புகள் எதுவும் இல்லை. %s. %s ஏற்படாது" - -#: sphinx/theming.py:140 -#, python-format -msgid "unsupported theme option %r given" -msgstr "ஆதரிக்கப்படாத தீம் விருப்பம் %r கொடுக்கப்பட்டுள்ளது" - -#: sphinx/theming.py:206 -#, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" -msgstr "தீம் பாதையில் கோப்பு %r என்பது செல்லுபடியாகும் ஜிப்ஃபைல் அல்ல அல்லது எந்த கருப்பொருளும் இல்லை" - -#: sphinx/theming.py:226 -#, python-format -msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/roles.py:194 #, python-format -msgid "The %r theme has circular inheritance" +msgid "invalid PEP number %s" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/roles.py:228 #, python-format -msgid "" -"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " -"are: %s" +msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:77 #, python-format -msgid "The %r theme has too many ancestors" +msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:79 #, python-format -msgid "no theme configuration file found in %r" +msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:85 #, python-format -msgid "theme %r doesn't have the \"theme\" table" +msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:108 #, python-format -msgid "The %r theme \"[theme]\" table is not a table" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:127 #, python-format -msgid "The %r theme must define the \"theme.inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:216 #, python-format -msgid "The %r theme \"[options]\" table is not a table" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:230 #, python-format -msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" +msgid "no theme named %r found (missing theme.conf?)" msgstr "" #: sphinx/builders/__init__.py:183 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" -msgstr "%கள் பில்டருக்கு பொருத்தமான படம் காணப்படவில்லை: %கள் ( %கள்)" +msgstr "" #: sphinx/builders/__init__.py:187 #, python-format msgid "a suitable image for %s builder not found: %s" -msgstr "%கள் பில்டருக்கு பொருத்தமான படம் காணப்படவில்லை: %கள்" +msgstr "" #: sphinx/builders/__init__.py:207 msgid "building [mo]: " -msgstr "கட்டிடம் [மோ]:" +msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 +#: sphinx/builders/__init__.py:602 msgid "writing output... " -msgstr "எழுதுதல் வெளியீடு ..." +msgstr "" #: sphinx/builders/__init__.py:217 #, python-format msgid "all of %d po files" -msgstr "%டி போ கோப்புகள் அனைத்தும்" +msgstr "" #: sphinx/builders/__init__.py:235 #, python-format msgid "targets for %d po files that are specified" -msgstr "குறிப்பிடப்பட்ட %d po கோப்புகளுக்கான இலக்குகள்" +msgstr "" #: sphinx/builders/__init__.py:243 #, python-format msgid "targets for %d po files that are out of date" -msgstr "காலாவதியான %d po கோப்புகளுக்கான இலக்குகள்" +msgstr "" #: sphinx/builders/__init__.py:252 msgid "all source files" -msgstr "அனைத்து மூல கோப்புகளும்" +msgstr "" #: sphinx/builders/__init__.py:262 #, python-format msgid "file %r given on command line does not exist, " -msgstr "கட்டளை வரியில் கொடுக்கப்பட்ட கோப்பு %r இல்லை," +msgstr "" #: sphinx/builders/__init__.py:267 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" -msgstr "கட்டளை வரியில் கொடுக்கப்பட்ட கோப்பு %r மூல கோப்பகத்தின் கீழ் இல்லை, புறக்கணிக்கிறது" +msgstr "" #: sphinx/builders/__init__.py:273 #, python-format msgid "file %r given on command line is not a valid document, ignoring" -msgstr "கட்டளை வரியில் கொடுக்கப்பட்ட கோப்பு %r என்பது சரியான ஆவணம் அல்ல, புறக்கணிக்கிறது" +msgstr "" #: sphinx/builders/__init__.py:282 #, python-format msgid "%d source files given on command line" -msgstr "கட்டளை வரியில் கொடுக்கப்பட்ட %d மூல கோப்புகள்" +msgstr "" #: sphinx/builders/__init__.py:294 #, python-format msgid "targets for %d source files that are out of date" -msgstr "காலாவதியான %d மூல கோப்புகளுக்கான இலக்குகள்" +msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " -msgstr "கட்டிடங்கள்]:" +msgstr "" #: sphinx/builders/__init__.py:316 msgid "looking for now-outdated files... " -msgstr "இப்போது வெளியேற்றப்படாத கோப்புகளைத் தேடுகிறது ..." +msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:321 #, python-format msgid "%d found" msgstr "%d கண்டு ப்பிடித்த விட்டது" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "none found" -msgstr "எதுவும் கிடைக்கவில்லை" +msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:328 msgid "pickling environment" -msgstr "ஊறுகாய் சூழல்" +msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:334 msgid "checking consistency" -msgstr "நிலைத்தன்மையை சரிபார்க்கிறது" +msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:338 msgid "no targets are out of date." -msgstr "இலக்குகள் எதுவும் காலாவதியானவை அல்ல." +msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:377 msgid "updating environment: " -msgstr "சூழலைப் புதுப்பித்தல்:" +msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:398 #, python-format msgid "%s added, %s changed, %s removed" -msgstr "%கள் சேர்க்கப்பட்டன, %கள் மாற்றப்பட்டன, %கள் அகற்றப்பட்டன" +msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 msgid "reading sources... " -msgstr "வாசிப்பு ஆதாரங்கள் ..." +msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:550 #, python-format msgid "docnames to write: %s" -msgstr "எழுத டாக் பெயர்கள்: %கள்" +msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 msgid "preparing documents" -msgstr "ஆவணங்களைத் தயாரித்தல்" +msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:562 msgid "copying assets" -msgstr "சொத்துக்களை நகலெடுக்கும்" +msgstr "" #: sphinx/builders/_epub_base.py:215 #, python-format msgid "duplicated ToC entry found: %s" -msgstr "நகல் TOC நுழைவு காணப்பட்டது: %s" +msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 +#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 +#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 msgid "copying images... " -msgstr "படங்களை நகலெடுக்கும் ..." +msgstr "" -#: sphinx/builders/_epub_base.py:411 +#: sphinx/builders/_epub_base.py:410 #, python-format msgid "cannot read image file %r: copying it instead" -msgstr "படக் கோப்பு %ஆர்: அதற்கு பதிலாக நகலெடுக்க முடியாது" +msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 -#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 +#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 #, python-format msgid "cannot copy image file %r: %s" -msgstr "படக் கோப்பு %r: %s ஐ நகலெடுக்க முடியாது" +msgstr "" -#: sphinx/builders/_epub_base.py:434 +#: sphinx/builders/_epub_base.py:433 #, python-format msgid "cannot write image file %r: %s" -msgstr "படக் கோப்பு %r: %s ஐ எழுத முடியாது" +msgstr "" -#: sphinx/builders/_epub_base.py:444 +#: sphinx/builders/_epub_base.py:443 msgid "Pillow not found - copying image files" -msgstr "தலையணை கிடைக்கவில்லை - படக் கோப்புகளை நகலெடுக்கும்" +msgstr "" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:469 msgid "writing mimetype file..." -msgstr "Mimetype கோப்பை எழுதுதல் ..." +msgstr "" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:474 msgid "writing META-INF/container.xml file..." -msgstr "Meta-inf/contain.xml கோப்பை எழுதுதல் ..." +msgstr "" #: sphinx/builders/_epub_base.py:508 msgid "writing content.opf file..." -msgstr "content.opf கோப்பு எழுதுதல் ..." +msgstr "" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:531 #, python-format msgid "unknown mimetype for %s, ignoring" -msgstr "புறக்கணிப்பு %s க்கான அறியப்படாத Mimetype" +msgstr "" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:678 msgid "writing toc.ncx file..." -msgstr "toc.ncx கோப்பை எழுதுதல் ..." +msgstr "" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:703 #, python-format msgid "writing %s file..." -msgstr "%s கோப்பை எழுதுதல் ..." +msgstr "" -#: sphinx/builders/changes.py:32 +#: sphinx/builders/changes.py:30 #, python-format msgid "The overview file is in %(outdir)s." -msgstr "கண்ணோட்டம் கோப்பு %(வெளிப்புற) களில் உள்ளது." +msgstr "" -#: sphinx/builders/changes.py:59 +#: sphinx/builders/changes.py:56 #, python-format msgid "no changes in version %s." -msgstr "பதிப்பு %s இல் மாற்றங்கள் இல்லை." +msgstr "" -#: sphinx/builders/changes.py:61 +#: sphinx/builders/changes.py:58 msgid "writing summary file..." -msgstr "சுருக்கம் கோப்பை எழுதுதல் ..." +msgstr "" -#: sphinx/builders/changes.py:76 +#: sphinx/builders/changes.py:73 msgid "Builtins" -msgstr "பில்டின்ஸ்" +msgstr "" -#: sphinx/builders/changes.py:78 +#: sphinx/builders/changes.py:75 msgid "Module level" -msgstr "தொகுதி நிலை" +msgstr "" -#: sphinx/builders/changes.py:123 +#: sphinx/builders/changes.py:118 msgid "copying source files..." -msgstr "மூல கோப்புகளை நகலெடுக்கும் ..." +msgstr "" -#: sphinx/builders/changes.py:130 +#: sphinx/builders/changes.py:125 #, python-format msgid "could not read %r for changelog creation" -msgstr "சேஞ்ச்லாக் உருவாக்கத்திற்கு %R ஐப் படிக்க முடியவில்லை" +msgstr "" -#: sphinx/builders/dummy.py:19 +#: sphinx/builders/dummy.py:18 msgid "The dummy builder generates no files." -msgstr "போலி பில்டர் எந்த கோப்புகளையும் உருவாக்கவில்லை." +msgstr "" -#: sphinx/builders/epub3.py:81 +#: sphinx/builders/epub3.py:79 #, python-format msgid "The ePub file is in %(outdir)s." -msgstr "எபப் கோப்பு %(வெளிப்புற) களில் உள்ளது." +msgstr "" -#: sphinx/builders/epub3.py:185 +#: sphinx/builders/epub3.py:183 msgid "writing nav.xhtml file..." -msgstr "Nav.xhtml கோப்பு எழுதுதல் ..." +msgstr "" -#: sphinx/builders/epub3.py:211 +#: sphinx/builders/epub3.py:209 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" -msgstr "conf மதிப்பு \"epub_language\" (அல்லது \"மொழி\") EPUB3 க்கு காலியாக இருக்கக்கூடாது" +msgstr "" -#: sphinx/builders/epub3.py:215 +#: sphinx/builders/epub3.py:213 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" -msgstr "conf மதிப்பு \"EPUB_UID\" EPUB3 க்கான XML பெயராக இருக்க வேண்டும்" +msgstr "" -#: sphinx/builders/epub3.py:218 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" -msgstr "conf மதிப்பு \"epub_title\" (அல்லது \"HTML_TITLE\") EPUB3 க்கு காலியாக இருக்கக்கூடாது" +msgstr "" -#: sphinx/builders/epub3.py:222 +#: sphinx/builders/epub3.py:220 msgid "conf value \"epub_author\" should not be empty for EPUB3" -msgstr "EPUB3 க்கு \"EPUB_AUTHOR\" கான் மதிப்பு காலியாக இருக்கக்கூடாது" +msgstr "" -#: sphinx/builders/epub3.py:225 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" -msgstr "EPUB3 க்கு \"epub_contributor\" கான்ஸ் மதிப்பு காலியாக இருக்கக்கூடாது" +msgstr "" -#: sphinx/builders/epub3.py:228 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_description\" should not be empty for EPUB3" -msgstr "EPUB3 க்கு \"EPUB_DESCRIPTION\" CONF மதிப்பு காலியாக இருக்கக்கூடாது" +msgstr "" -#: sphinx/builders/epub3.py:231 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" -msgstr "EPUB3 க்கு \"EPUB_PUBLISHER\" கான்ஸ் மதிப்பு காலியாக இருக்கக்கூடாது" +msgstr "" -#: sphinx/builders/epub3.py:234 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" -msgstr "conf மதிப்பு \"epub_copyright\" (அல்லது \"பதிப்புரிமை\") EPUB3 க்கு காலியாக இருக்கக்கூடாது" +msgstr "" -#: sphinx/builders/epub3.py:238 +#: sphinx/builders/epub3.py:236 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" -msgstr "EPUB3 க்கு \"EPUB_IDENTIFIER\" காலியாக இருக்கக்கூடாது" +msgstr "" -#: sphinx/builders/epub3.py:241 +#: sphinx/builders/epub3.py:239 msgid "conf value \"version\" should not be empty for EPUB3" -msgstr "EPUB3 க்கு \"பதிப்பு\" காலியாக இருக்கக்கூடாது" +msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" -msgstr "தவறான CSS_FILE: %r, புறக்கணிக்கப்பட்டது" +msgstr "" -#: sphinx/builders/gettext.py:222 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." -msgstr "செய்தி பட்டியல்கள் %(வெளிப்புற) களில் உள்ளன." +msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" -msgstr "%டி வார்ப்புரு கோப்புகளுக்கான இலக்குகள்" +msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " -msgstr "வார்ப்புருக்கள் படித்தல் ..." +msgstr "" -#: sphinx/builders/gettext.py:282 +#: sphinx/builders/gettext.py:275 msgid "writing message catalogs... " -msgstr "செய்தி பட்டியல்களை எழுதுதல் ..." +msgstr "" -#: sphinx/builders/linkcheck.py:59 +#: sphinx/builders/linkcheck.py:60 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" -msgstr "மேலே உள்ள வெளியீட்டில் அல்லது %(வெளிப்புற) s/output.txt இல் ஏதேனும் பிழைகள் தேடுங்கள்" +msgstr "" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:109 #, python-format msgid "broken link: %s (%s)" -msgstr "உடைந்த இணைப்பு: %கள் ( %கள்)" +msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:606 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" -msgstr "Regex ஐ லிங்க்செக்_அலோவ்_ரெடிரெக்ட்ஸில் தொகுக்கத் தவறிவிட்டது: %r %s" +msgstr "" -#: sphinx/builders/manpage.py:37 +#: sphinx/builders/manpage.py:35 #, python-format msgid "The manual pages are in %(outdir)s." -msgstr "கையேடு பக்கங்கள் %(வெளிப்புற) களில் உள்ளன." +msgstr "" -#: sphinx/builders/manpage.py:44 +#: sphinx/builders/manpage.py:42 msgid "no \"man_pages\" config value found; no manual pages will be written" -msgstr "\"MAN_PAGES\" கட்டமைப்பு மதிப்பு இல்லை; கையேடு பக்கங்கள் எதுவும் எழுதப்படாது" +msgstr "" -#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 -#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 +#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 +#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 msgid "writing" -msgstr "எழுதுதல்" +msgstr "" -#: sphinx/builders/manpage.py:68 +#: sphinx/builders/manpage.py:66 #, python-format msgid "\"man_pages\" config value references unknown document %s" -msgstr "\"man_pages\" கட்டமைப்பு மதிப்பு குறிப்புகள் அறியப்படாத ஆவணம் %s" +msgstr "" -#: sphinx/builders/singlehtml.py:34 +#: sphinx/builders/singlehtml.py:32 #, python-format msgid "The HTML page is in %(outdir)s." -msgstr "HTML பக்கம் %(வெளிப்புற) களில் உள்ளது." +msgstr "" -#: sphinx/builders/singlehtml.py:160 +#: sphinx/builders/singlehtml.py:158 msgid "assembling single document" -msgstr "ஒற்றை ஆவணத்தை ஒன்று சேர்ப்பது" +msgstr "" -#: sphinx/builders/singlehtml.py:178 +#: sphinx/builders/singlehtml.py:176 msgid "writing additional files" -msgstr "கூடுதல் கோப்புகளை எழுதுதல்" +msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:46 #, python-format msgid "The Texinfo files are in %(outdir)s." -msgstr "டெக்ஸின்ஃபோ கோப்புகள் %(வெளிப்புற) களில் உள்ளன." +msgstr "" -#: sphinx/builders/texinfo.py:50 +#: sphinx/builders/texinfo.py:48 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." -msgstr "மேக்இன்ஃபோ மூலம் இயக்க அந்த கோப்பகத்தில் 'மேக்' இயக்கவும் \n (தானாகவே அதைச் செய்ய இங்கே 'தகவல்களை உருவாக்கு' பயன்படுத்தவும்)." +msgstr "" -#: sphinx/builders/texinfo.py:77 +#: sphinx/builders/texinfo.py:75 msgid "no \"texinfo_documents\" config value found; no documents will be written" -msgstr "இல்லை \"டெக்ஸின்ஃபோ_டோகென்ட்ஸ்\" கட்டமைப்பு மதிப்பு காணப்படவில்லை; எந்த ஆவணங்களும் எழுதப்படாது" +msgstr "" -#: sphinx/builders/texinfo.py:85 +#: sphinx/builders/texinfo.py:83 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" -msgstr "\"Dexinfo_Documents\" கட்டமைப்பு மதிப்பு குறிப்புகள் அறியப்படாத ஆவணம் %s" +msgstr "" -#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 +#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 #, python-format msgid "processing %s" -msgstr "செயலாக்கம் %கள்" +msgstr "" -#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 +#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 msgid "resolving references..." -msgstr "குறிப்புகளைத் தீர்ப்பது ..." +msgstr "" -#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 +#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 msgid " (in " -msgstr "(இல்" +msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:198 msgid "copying Texinfo support files" -msgstr "டெக்ஸின்ஃபோ ஆதரவு கோப்புகளை நகலெடுக்கிறது" +msgstr "" -#: sphinx/builders/texinfo.py:206 +#: sphinx/builders/texinfo.py:202 #, python-format msgid "error writing file Makefile: %s" -msgstr "பிழை எழுதும் கோப்பு மேக்ஃபைல்: %கள்" +msgstr "" -#: sphinx/builders/text.py:30 +#: sphinx/builders/text.py:29 #, python-format msgid "The text files are in %(outdir)s." -msgstr "உரை கோப்புகள் %(வெளிப்புற) களில் உள்ளன." +msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:96 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" -msgstr "பிழை எழுதும் கோப்பு %s: %s" +msgstr "" -#: sphinx/builders/xml.py:36 +#: sphinx/builders/xml.py:34 #, python-format msgid "The XML files are in %(outdir)s." -msgstr "எக்ஸ்எம்எல் கோப்புகள் %(வெளிப்புற) களில் உள்ளன." +msgstr "" -#: sphinx/builders/xml.py:109 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." -msgstr "போலி-எக்ஸ்எம்எல் கோப்புகள் %(வெளிப்புற) களில் உள்ளன." +msgstr "" -#: sphinx/builders/html/__init__.py:130 +#: sphinx/builders/html/__init__.py:122 #, python-format msgid "build info file is broken: %r" -msgstr "உருவாக்கு தகவல் கோப்பு உடைந்தது: %r" +msgstr "" -#: sphinx/builders/html/__init__.py:168 +#: sphinx/builders/html/__init__.py:159 #, python-format msgid "The HTML pages are in %(outdir)s." -msgstr "HTML பக்கங்கள் %(வெளிப்புற) களில் உள்ளன." +msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:385 #, python-format msgid "Failed to read build info file: %r" -msgstr "உருவாக்க தகவல் கோப்பைப் படிக்கத் தவறிவிட்டது: %r" +msgstr "" -#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 -#: sphinx/writers/texinfo.py:227 +#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 +#: sphinx/writers/texinfo.py:225 #, python-format msgid "%b %d, %Y" -msgstr "%b %d, %y" +msgstr "" -#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 msgid "General Index" -msgstr "பொது அட்டவணை" +msgstr "" -#: sphinx/builders/html/__init__.py:506 +#: sphinx/builders/html/__init__.py:497 msgid "index" -msgstr "குறியீட்டு" +msgstr "" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:569 msgid "next" msgstr "அடுத்த" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:578 msgid "previous" -msgstr "முந்தைய" +msgstr "" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:674 msgid "generating indices" -msgstr "குறியீடுகளை உருவாக்குதல்" +msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:689 msgid "writing additional pages" -msgstr "கூடுதல் பக்கங்களை எழுதுதல்" +msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:768 msgid "copying downloadable files... " -msgstr "தரவிறக்கம் செய்யக்கூடிய கோப்புகளை நகலெடுக்கிறது ..." +msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:776 #, python-format msgid "cannot copy downloadable file %r: %s" -msgstr "தரவிறக்கம் செய்யக்கூடிய கோப்பு %r: %s ஐ நகலெடுக்க முடியாது" +msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" -msgstr "HTML_STATIC_FILE இல் ஒரு கோப்பை நகலெடுப்பதில் தோல்வி: %s: %r" +msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:842 msgid "copying static files" -msgstr "நிலையான கோப்புகளை நகலெடுக்கும்" +msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:858 #, python-format msgid "cannot copy static file %r" -msgstr "நிலையான கோப்பு %r ஐ நகலெடுக்க முடியாது" +msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:863 msgid "copying extra files" -msgstr "கூடுதல் கோப்புகளை நகலெடுக்கிறது" +msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:869 #, python-format msgid "cannot copy extra file %r" -msgstr "கூடுதல் கோப்பு %r ஐ நகலெடுக்க முடியாது" +msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:876 #, python-format msgid "Failed to write build info file: %r" -msgstr "உருவாக்க தகவல் கோப்பை எழுதுவதில் தோல்வி: %r" +msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:925 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." -msgstr "தேடல் குறியீட்டை ஏற்ற முடியாது, ஆனால் எல்லா ஆவணங்களும் கட்டப்படாது: குறியீடு முழுமையடையாது." +msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:986 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" -msgstr "பக்கம் %S HTML_SIDEBARS இல் இரண்டு வடிவங்களுடன் பொருந்துகிறது: %R மற்றும் %R" +msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." -msgstr "பக்கத்தை %s ஐ வழங்கும்போது யூனிகோட் பிழை ஏற்பட்டது. அசி அல்லாத உள்ளடக்கத்தைக் கொண்ட அனைத்து கட்டமைப்பு மதிப்புகளும் யூனிகோட் சரங்கள் என்பதை உறுதிப்படுத்தவும்." +msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" -msgstr "பக்கம் %s ஐ வழங்குவதில் பிழை ஏற்பட்டது. \n காரணம்: %r" +msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" -msgstr "பொருள் சரக்குகளை கொட்டுகிறது" +msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" -msgstr "தேடல் குறியீட்டை %s இல் கொட்டுதல்" +msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" -msgstr "தவறான JS_FILE: %r, புறக்கணிக்கப்பட்டது" +msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." -msgstr "பல கணிதங்கள் பதிவு செய்யப்பட்டுள்ளன. ஆனால் எந்த கணிதமும் தேர்ந்தெடுக்கப்படவில்லை." +msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." -msgstr "அறியப்படாத கணித_ரெண்டர் %ஆர் வழங்கப்படுகிறது." +msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" -msgstr "html_extra_path நுழைவு %r இல்லை" +msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" -msgstr "HTML_EXTRA_PATH நுழைவு %R க்குள் வைக்கப்படுகிறது" +msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" -msgstr "HTML_STATIC_PATH நுழைவு %R இல்லை" +msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" -msgstr "HTML_STATIC_PATH நுழைவு %R க்குள் வைக்கப்படுகிறது" +msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 #, python-format msgid "logo file %r does not exist" -msgstr "லோகோ கோப்பு %r இல்லை" +msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" -msgstr "ஃபாவிகான் கோப்பு %ஆர் இல்லை" +msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" -msgstr "HTML 4 இனி ஸ்பிங்க்ஸால் ஆதரிக்கப்படாது. (\"HTML4_WRITER = TRUE\" உள்ளமைவு விருப்பங்களில் கண்டறியப்பட்டது)" +msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" -msgstr "%s %ஆவணங்கள்" +msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:113 #, python-format msgid "The LaTeX files are in %(outdir)s." -msgstr "லேடெக்ஸ் கோப்புகள் %(வெளிப்புற) களில் உள்ளன." +msgstr "" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:115 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." -msgstr "(PDF) லேடெக்ஸ் மூலம் இயக்க அந்த கோப்பகத்தில் 'உருவாக்கு' இயக்கவும் \n (தானாகவே அதைச் செய்ய இங்கே `Latexpdf 'ஐப் பயன்படுத்தவும்)." +msgstr "" -#: sphinx/builders/latex/__init__.py:152 +#: sphinx/builders/latex/__init__.py:150 msgid "no \"latex_documents\" config value found; no documents will be written" -msgstr "இல்லை \"லேடெக்ஸ்_டோகென்ட்ஸ்\" கட்டமைப்பு மதிப்பு காணப்படவில்லை; எந்த ஆவணங்களும் எழுதப்படாது" +msgstr "" -#: sphinx/builders/latex/__init__.py:160 +#: sphinx/builders/latex/__init__.py:158 #, python-format msgid "\"latex_documents\" config value references unknown document %s" -msgstr "\"Latex_Documents\" கட்டமைப்பு மதிப்பு குறிப்புகள் அறியப்படாத ஆவணம் %s" +msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 +#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/writers/texinfo.py:493 msgid "Index" -msgstr "குறியீட்டு" +msgstr "" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 msgid "Release" -msgstr "வெளியீடு" +msgstr "" -#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" -msgstr "மொழிக்கு அறியப்படாத பாபல் விருப்பம் %r" +msgstr "" -#: sphinx/builders/latex/__init__.py:394 +#: sphinx/builders/latex/__init__.py:387 msgid "copying TeX support files" -msgstr "டெக்ஸ் ஆதரவு கோப்புகளை நகலெடுக்கிறது" +msgstr "" -#: sphinx/builders/latex/__init__.py:410 +#: sphinx/builders/latex/__init__.py:403 msgid "copying TeX support files..." -msgstr "டெக்ஸ் ஆதரவு கோப்புகளை நகலெடுக்கிறது ..." +msgstr "" -#: sphinx/builders/latex/__init__.py:423 +#: sphinx/builders/latex/__init__.py:416 msgid "copying additional files" -msgstr "கூடுதல் கோப்புகளை நகலெடுக்கிறது" +msgstr "" -#: sphinx/builders/latex/__init__.py:466 +#: sphinx/builders/latex/__init__.py:459 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." -msgstr "அறியப்படாத கட்டமைப்பு விசை: லேடெக்ஸ்_அலெமென்ட்ஸ் [%ஆர்], புறக்கணிக்கப்பட்டது." +msgstr "" -#: sphinx/builders/latex/__init__.py:474 +#: sphinx/builders/latex/__init__.py:467 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." -msgstr "அறியப்படாத தீம் விருப்பம்: லேடெக்ஸ்_தெம்_ஓப்ஷன்கள் [%ஆர்], புறக்கணிக்கப்பட்டது." +msgstr "" #: sphinx/builders/latex/theming.py:87 #, python-format msgid "%r doesn't have \"theme\" setting" -msgstr "%R இல் \"தீம்\" அமைப்பு இல்லை" +msgstr "" #: sphinx/builders/latex/theming.py:90 #, python-format msgid "%r doesn't have \"%s\" setting" -msgstr "%R க்கு \"%s\" அமைப்பு இல்லை" +msgstr "" -#: sphinx/builders/latex/transforms.py:120 +#: sphinx/builders/latex/transforms.py:117 msgid "Failed to get a docname!" -msgstr "ஒரு ஆவணம் பெறத் தவறிவிட்டது!" +msgstr "" -#: sphinx/builders/latex/transforms.py:121 +#: sphinx/builders/latex/transforms.py:118 msgid "Failed to get a docname for source {source!r}!" -msgstr "மூல {மூல! R} க்கான ஆவணப் பெயர் பெறுவதில் தோல்வி!" +msgstr "" -#: sphinx/builders/latex/transforms.py:482 +#: sphinx/builders/latex/transforms.py:479 #, python-format msgid "No footnote was found for given reference node %r" -msgstr "கொடுக்கப்பட்ட குறிப்பு முனை %r க்கு எந்த அடிக்குறிப்பும் கிடைக்கவில்லை" +msgstr "" #: sphinx/cmd/build.py:46 msgid "Exception occurred while building, starting debugger:" -msgstr "பிழைத்திருத்தத்தைத் தொடங்கும் போது விதிவிலக்கு ஏற்பட்டது:" +msgstr "" #: sphinx/cmd/build.py:61 msgid "Interrupted!" -msgstr "குறுக்கிட்டது!" +msgstr "" #: sphinx/cmd/build.py:63 msgid "reST markup error:" -msgstr "ஓய்வு மார்க்அப் பிழை:" +msgstr "" #: sphinx/cmd/build.py:69 msgid "Encoding error:" -msgstr "குறியீட்டு பிழை:" +msgstr "" #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." -msgstr "டெவலப்பர்களிடம் சிக்கலை நீங்கள் புகாரளிக்க விரும்பினால், முழு சுவடு % %களில் சேமிக்கப்பட்டுள்ளது." +msgstr "" #: sphinx/cmd/build.py:76 msgid "Recursion error:" -msgstr "மறுநிகழ்வு பிழை:" +msgstr "" #: sphinx/cmd/build.py:79 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" -msgstr "இது மிகப் பெரிய அல்லது ஆழமான உள்ளமைக்கப்பட்ட மூல கோப்புகளுடன் நிகழலாம். எ.கா. உடன் conf.py இல் இயல்புநிலை பைதான் மறுநிகழ்வு வரம்பை நீங்கள் கவனமாக அதிகரிக்கலாம்." +msgstr "" #: sphinx/cmd/build.py:84 msgid "Exception occurred:" -msgstr "விதிவிலக்கு ஏற்பட்டது:" +msgstr "" #: sphinx/cmd/build.py:90 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." -msgstr "இது ஒரு பயனர் பிழையாக இருந்தால் இதைப் புகாரளிக்கவும், இதனால் அடுத்த முறை சிறந்த பிழை செய்தியை வழங்க முடியும்." +msgstr "" #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" -msgstr "ஒரு பிழை அறிக்கையை டிராக்கரில் <https://github.com/sphinx-doc/sphinx/issues> இல் தாக்கல் செய்யலாம். நன்றி!" +msgstr "" #: sphinx/cmd/build.py:109 msgid "job number should be a positive number" -msgstr "வேலை எண் நேர்மறை எண்ணாக இருக்க வேண்டும்" +msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 +#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit <https://www.sphinx-doc.org/>." -msgstr "மேலும் தகவலுக்கு, <https://www.sphinx-doc.org/> ஐப் பார்வையிடவும்." +msgstr "" #: sphinx/cmd/build.py:118 msgid "" @@ -1284,292 +1242,285 @@ msgid "" "\n" "By default, everything that is outdated is built. Output only for selected\n" "files can be built by specifying individual filenames.\n" -msgstr "மூல கோப்புகளிலிருந்து ஆவணங்களை உருவாக்குங்கள். \n\n Sphinx- கட்டளை sourcedir இல் உள்ள கோப்புகளிலிருந்து ஆவணங்களை உருவாக்கி வைக்கிறது \n OutputDir இல். இது உள்ளமைவுக்காக ஆதாரத்தில் 'conf.py' ஐத் தேடுகிறது \n அமைப்புகள். வார்ப்புரு கோப்புகளை உருவாக்க 'ஸ்பின்க்ஸ்-க்யூக்ஸ்டார்ட்' கருவி பயன்படுத்தப்படலாம், \n 'conf.py' உட்பட \n\n ஸ்பிங்க்ஸ்-பில்ட் வெவ்வேறு வடிவங்களில் ஆவணங்களை உருவாக்க முடியும். ஒரு வடிவம் \n கட்டளை வரியில் பில்டர் பெயரைக் குறிப்பிடுவதன் மூலம் தேர்ந்தெடுக்கப்பட்டது; இது இயல்புநிலையாகும் \n HTML. ஆவணங்கள் தொடர்பான பிற பணிகளையும் பில்டர்கள் செய்யலாம் \n செயலாக்கம். \n\n இயல்பாக, காலாவதியான அனைத்தும் கட்டமைக்கப்பட்டுள்ளன. தேர்ந்தெடுக்கப்பட்ட வெளியீடு மட்டுமே \n தனிப்பட்ட கோப்பு பெயர்களைக் குறிப்பிடுவதன் மூலம் கோப்புகளை உருவாக்க முடியும்." +msgstr "" #: sphinx/cmd/build.py:139 msgid "path to documentation source files" -msgstr "ஆவண மூல கோப்புகளுக்கான பாதை" +msgstr "" #: sphinx/cmd/build.py:141 msgid "path to output directory" -msgstr "வெளியீட்டு கோப்பகத்திற்கான பாதை" +msgstr "" #: sphinx/cmd/build.py:143 -msgid "" -"(optional) a list of specific files to rebuild. Ignored if --write-all is " -"specified" +msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" #: sphinx/cmd/build.py:146 msgid "general options" -msgstr "பொது விருப்பங்கள்" - -#: sphinx/cmd/build.py:149 -msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:152 -msgid "" -"run in parallel with N processes, when possible. 'auto' uses the number of " -"CPU cores" +#: sphinx/cmd/build.py:149 +msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:155 +#: sphinx/cmd/build.py:151 msgid "write all files (default: only write new and changed files)" -msgstr "எல்லா கோப்புகளையும் எழுதுங்கள் (இயல்புநிலை: புதிய மற்றும் மாற்றப்பட்ட கோப்புகளை மட்டும் எழுதுங்கள்)" +msgstr "" -#: sphinx/cmd/build.py:158 +#: sphinx/cmd/build.py:154 msgid "don't use a saved environment, always read all files" -msgstr "சேமித்த சூழலைப் பயன்படுத்த வேண்டாம், எப்போதும் எல்லா கோப்புகளையும் படியுங்கள்" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" #: sphinx/cmd/build.py:161 -msgid "path options" +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "" -"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:166 -msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" +#: sphinx/cmd/build.py:168 +msgid "use no config file at all, only -D options" msgstr "" #: sphinx/cmd/build.py:171 -msgid "use no configuration file, only use settings from -D options" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:174 -msgid "override a setting in configuration file" -msgstr "உள்ளமைவு கோப்பில் ஒரு அமைப்பை மீறவும்" - -#: sphinx/cmd/build.py:177 msgid "pass a value into HTML templates" -msgstr "HTML வார்ப்புருக்களில் ஒரு மதிப்பை அனுப்பவும்" +msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:177 msgid "define tag: include \"only\" blocks with TAG" -msgstr "குறிச்சொல்லை வரையறுக்கவும்: குறிச்சொல்லுடன் \"மட்டும்\" தொகுதிகளைச் சேர்க்கவும்" +msgstr "" -#: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +#: sphinx/cmd/build.py:179 +msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:184 +#: sphinx/cmd/build.py:182 msgid "console output options" -msgstr "வெளியீட்டு விருப்பங்கள் ஆறுதல்" +msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:184 msgid "increase verbosity (can be repeated)" -msgstr "வாய்மொழி அதிகரிக்கவும் (மீண்டும் மீண்டும் செய்யலாம்)" +msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 msgid "no output on stdout, just warnings on stderr" -msgstr "stdout இல் வெளியீடு இல்லை, ஸ்டெர்ரரில் எச்சரிக்கைகள்" +msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:188 msgid "no output at all, not even warnings" -msgstr "எந்த வெளியீடும் இல்லை, எச்சரிக்கைகள் கூட இல்லை" +msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:191 msgid "do emit colored output (default: auto-detect)" -msgstr "வண்ண வெளியீட்டை வெளியிடுங்கள் (இயல்புநிலை: தானாக-கண்டறிதல்)" +msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:194 msgid "do not emit colored output (default: auto-detect)" -msgstr "வண்ண வெளியீட்டை வெளியிட வேண்டாம் (இயல்புநிலை: தானாக கண்டறிதல்)" - -#: sphinx/cmd/build.py:199 -msgid "warning control options" msgstr "" -#: sphinx/cmd/build.py:201 +#: sphinx/cmd/build.py:197 msgid "write warnings (and errors) to given file" -msgstr "கொடுக்கப்பட்ட கோப்பிற்கு எச்சரிக்கைகள் (மற்றும் பிழைகள்) எழுதுங்கள்" +msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:199 msgid "turn warnings into errors" -msgstr "எச்சரிக்கைகளை பிழைகளாக மாற்றவும்" +msgstr "" -#: sphinx/cmd/build.py:205 -msgid "with --fail-on-warning, keep going when getting warnings" +#: sphinx/cmd/build.py:201 +msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:207 +#: sphinx/cmd/build.py:203 msgid "show full traceback on exception" -msgstr "விதிவிலக்கில் முழு சுவடுப்பைக் காட்டுங்கள்" +msgstr "" -#: sphinx/cmd/build.py:209 +#: sphinx/cmd/build.py:205 msgid "run Pdb on exception" -msgstr "விதிவிலக்கில் PDB ஐ இயக்கவும்" +msgstr "" -#: sphinx/cmd/build.py:244 +#: sphinx/cmd/build.py:229 msgid "cannot combine -a option and filenames" -msgstr "-a விருப்பம் மற்றும் கோப்பு பெயர்களை இணைக்க முடியாது" +msgstr "" -#: sphinx/cmd/build.py:276 +#: sphinx/cmd/build.py:250 #, python-format msgid "cannot open warning file %r: %s" -msgstr "எச்சரிக்கை கோப்பு %r: %s ஐ திறக்க முடியாது" +msgstr "" -#: sphinx/cmd/build.py:296 +#: sphinx/cmd/build.py:264 msgid "-D option argument must be in the form name=value" -msgstr "-D விருப்ப வாதம் படிவத்தில் பெயர் = மதிப்பு இருக்க வேண்டும்" +msgstr "" -#: sphinx/cmd/build.py:303 +#: sphinx/cmd/build.py:271 msgid "-A option argument must be in the form name=value" -msgstr "-ஒரு விருப்ப வாதம் படிவத்தில் இருக்க வேண்டும் பெயர் = மதிப்பு" +msgstr "" -#: sphinx/cmd/quickstart.py:42 +#: sphinx/cmd/quickstart.py:48 msgid "automatically insert docstrings from modules" -msgstr "தொகுதிகளிலிருந்து தானாக ஆவணங்களை செருகவும்" +msgstr "" -#: sphinx/cmd/quickstart.py:43 +#: sphinx/cmd/quickstart.py:49 msgid "automatically test code snippets in doctest blocks" -msgstr "டாக்ஸ்டெஸ்ட் தொகுதிகளில் குறியீடு துணுக்குகளை தானாகவே சோதிக்கவும்" +msgstr "" -#: sphinx/cmd/quickstart.py:44 +#: sphinx/cmd/quickstart.py:50 msgid "link between Sphinx documentation of different projects" -msgstr "வெவ்வேறு திட்டங்களின் SPHINX ஆவணங்களுக்கு இடையிலான இணைப்பு" +msgstr "" -#: sphinx/cmd/quickstart.py:45 +#: sphinx/cmd/quickstart.py:51 msgid "write \"todo\" entries that can be shown or hidden on build" -msgstr "கட்டியெழுப்ப அல்லது மறைக்கக்கூடிய \"டோடோ\" உள்ளீடுகளை எழுதுங்கள்" +msgstr "" -#: sphinx/cmd/quickstart.py:46 +#: sphinx/cmd/quickstart.py:52 msgid "checks for documentation coverage" -msgstr "ஆவணங்கள் கவரேஜ் காசோலைகள்" +msgstr "" -#: sphinx/cmd/quickstart.py:47 +#: sphinx/cmd/quickstart.py:53 msgid "include math, rendered as PNG or SVG images" -msgstr "கணிதத்தை சேர்க்கவும், பி.என்.ஜி அல்லது எஸ்.வி.ஜி படங்களாக வழங்கப்படுகிறது" +msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:54 msgid "include math, rendered in the browser by MathJax" -msgstr "கணிதத்தை சேர்க்கவும், மேத்ஜாக்ஸால் உலாவியில் வழங்கப்படுகிறது" +msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:55 msgid "conditional inclusion of content based on config values" -msgstr "கட்டமைப்பு மதிப்புகளின் அடிப்படையில் உள்ளடக்கத்தை நிபந்தனைக்குட்பட்டது" +msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:56 msgid "include links to the source code of documented Python objects" -msgstr "ஆவணப்படுத்தப்பட்ட பைதான் பொருள்களின் மூலக் குறியீட்டிற்கான இணைப்புகளைச் சேர்க்கவும்" +msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:57 msgid "create .nojekyll file to publish the document on GitHub pages" -msgstr "கிதுப் பக்கங்களில் ஆவணத்தை வெளியிட .nojekyl கோப்பை உருவாக்கவும்" +msgstr "" -#: sphinx/cmd/quickstart.py:93 +#: sphinx/cmd/quickstart.py:99 msgid "Please enter a valid path name." -msgstr "சரியான பாதை பெயரை உள்ளிடவும்." +msgstr "" -#: sphinx/cmd/quickstart.py:109 +#: sphinx/cmd/quickstart.py:115 msgid "Please enter some text." -msgstr "சில உரையை உள்ளிடவும்." +msgstr "" -#: sphinx/cmd/quickstart.py:116 +#: sphinx/cmd/quickstart.py:122 #, python-format msgid "Please enter one of %s." -msgstr "தயவுசெய்து %s இல் ஒன்றை உள்ளிடவும்." +msgstr "" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter either 'y' or 'n'." -msgstr "தயவுசெய்து 'y' அல்லது 'n' ஐ உள்ளிடவும்." +msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:135 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." -msgstr "தயவுசெய்து ஒரு கோப்பு பின்னொட்டை உள்ளிடவும், எ.கா. '.rst' அல்லது '.txt'." +msgstr "" -#: sphinx/cmd/quickstart.py:208 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." -msgstr "Sphinx %S QUICKSTART பயன்பாட்டிற்கு வருக." +msgstr "" -#: sphinx/cmd/quickstart.py:210 +#: sphinx/cmd/quickstart.py:217 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." -msgstr "பின்வரும் அமைப்புகளுக்கான மதிப்புகளை உள்ளிடவும் (Enter க்கு அழுத்தவும் \n அடைப்புக்குறிக்குள் வழங்கப்பட்டால் இயல்புநிலை மதிப்பை ஏற்றுக்கொள்ளுங்கள்)." +msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:222 #, python-format msgid "Selected root path: %s" -msgstr "தேர்ந்தெடுக்கப்பட்ட ரூட் பாதை: %கள்" +msgstr "" -#: sphinx/cmd/quickstart.py:218 +#: sphinx/cmd/quickstart.py:225 msgid "Enter the root path for documentation." -msgstr "ஆவணங்களுக்கான ரூட் பாதையை உள்ளிடவும்." +msgstr "" -#: sphinx/cmd/quickstart.py:219 +#: sphinx/cmd/quickstart.py:226 msgid "Root path for the documentation" -msgstr "ஆவணங்களுக்கான ரூட் பாதை" +msgstr "" -#: sphinx/cmd/quickstart.py:224 +#: sphinx/cmd/quickstart.py:231 msgid "Error: an existing conf.py has been found in the selected root path." -msgstr "பிழை: தேர்ந்தெடுக்கப்பட்ட ரூட் பாதையில் ஏற்கனவே உள்ள conf.py கண்டறியப்பட்டுள்ளது." +msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:233 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." -msgstr "ஸ்பிங்க்ஸ்-கிக்ஸ்டார்ட் ஏற்கனவே உள்ள ஸ்பிங்க்ஸ் திட்டங்களை மேலெழுதாது." +msgstr "" -#: sphinx/cmd/quickstart.py:228 +#: sphinx/cmd/quickstart.py:235 msgid "Please enter a new root path (or just Enter to exit)" -msgstr "தயவுசெய்து ஒரு புதிய ரூட் பாதையை உள்ளிடவும் (அல்லது வெளியேற உள்ளிடவும்)" +msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:242 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." -msgstr "SPHINX வெளியீட்டிற்கான உருவாக்க கோப்பகத்தை வைக்க உங்களுக்கு இரண்டு விருப்பங்கள் உள்ளன. \n ஒன்று, நீங்கள் ரூட் பாதையில் \"_ பில்ட்\" என்ற கோப்பகத்தைப் பயன்படுத்துகிறீர்கள், அல்லது நீங்கள் பிரிக்கிறீர்கள் \n மூல பாதையில் \"மூல\" மற்றும் \"உருவாக்க\" கோப்பகங்கள்." +msgstr "" -#: sphinx/cmd/quickstart.py:238 +#: sphinx/cmd/quickstart.py:245 msgid "Separate source and build directories (y/n)" -msgstr "தனி மூல மற்றும் உருவாக்க கோப்பகங்களை உருவாக்குதல் (y/n)" +msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:249 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." -msgstr "ரூட் கோப்பகத்தின் உள்ளே, மேலும் இரண்டு கோப்பகங்கள் உருவாக்கப்படும்; \"_TEMPLATES\" \n தனிப்பயன் HTML வார்ப்புருக்கள் மற்றும் தனிப்பயன் நடைதாள் மற்றும் பிற நிலையான \"_ஸ்டாடிக்\" \n கோப்புகள். அடிக்கோடிட்டதை மாற்ற மற்றொரு முன்னொட்டை (\".\" போன்றவை) உள்ளிடலாம்." +msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:252 msgid "Name prefix for templates and static dir" -msgstr "வார்ப்புருக்கள் மற்றும் நிலையான டிர் ஆகியவற்றிற்கான பெயர் முன்னொட்டு" +msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:256 msgid "" "The project name will occur in several places in the built documentation." -msgstr "கட்டமைக்கப்பட்ட ஆவணங்களில் பல இடங்களில் திட்ட பெயர் நிகழும்." +msgstr "" -#: sphinx/cmd/quickstart.py:250 +#: sphinx/cmd/quickstart.py:257 msgid "Project name" -msgstr "திட்ட பெயர்" +msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:259 msgid "Author name(s)" -msgstr "ஆசிரியரின் பெயர் (கள்)" +msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:263 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" "Python the version is something like 2.5 or 3.0, while the release is\n" "something like 2.5.1 or 3.0a1. If you don't need this dual structure,\n" "just set both to the same value." -msgstr "ஸ்பிங்க்ஸ் ஒரு \"பதிப்பு\" மற்றும் \"வெளியீடு\" என்ற கருத்தை கொண்டுள்ளது \n மென்பொருள். ஒவ்வொரு பதிப்பிலும் பல வெளியீடுகள் இருக்கலாம். உதாரணமாக, \n பைதான் பதிப்பு 2.5 அல்லது 3.0 போன்றது, அதே நேரத்தில் வெளியீடு \n 2.5.1 அல்லது 3.0A1 போன்றது. இந்த இரட்டை அமைப்பு உங்களுக்கு தேவையில்லை என்றால், \n இரண்டையும் ஒரே மதிப்புக்கு அமைக்கவும்." +msgstr "" -#: sphinx/cmd/quickstart.py:261 +#: sphinx/cmd/quickstart.py:268 msgid "Project version" -msgstr "திட்ட பதிப்பு" +msgstr "" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:270 msgid "Project release" -msgstr "திட்ட வெளியீடு" +msgstr "" -#: sphinx/cmd/quickstart.py:267 +#: sphinx/cmd/quickstart.py:274 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1577,115 +1528,115 @@ msgid "" "\n" "For a list of supported codes, see\n" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." -msgstr "ஆவணங்கள் ஆங்கிலத்தைத் தவிர வேறு மொழியில் எழுதப்பட வேண்டும் என்றால், \n ஒரு மொழியை அதன் மொழிக் குறியீட்டால் இங்கே தேர்ந்தெடுக்கலாம். ஸ்பிங்க்ஸ் பின்னர் \n அது உருவாக்கும் உரையை அந்த மொழியில் மொழிபெயர்க்கவும். \n\n ஆதரவு குறியீடுகளின் பட்டியலுக்கு, பார்க்கவும் \n https://www.sphinx-doc.org/en/master/usage/configuration.html#confval- மொழி." +msgstr "" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:282 msgid "Project language" -msgstr "திட்ட மொழி" +msgstr "" -#: sphinx/cmd/quickstart.py:281 +#: sphinx/cmd/quickstart.py:288 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." -msgstr "மூல கோப்புகளுக்கான கோப்பு பெயர் பின்னொட்டு. பொதுவாக, இது \".txt\" \n அல்லது \".rst\". இந்த பின்னொட்டுடன் கூடிய கோப்புகள் மட்டுமே ஆவணங்களாக கருதப்படுகின்றன." +msgstr "" -#: sphinx/cmd/quickstart.py:283 +#: sphinx/cmd/quickstart.py:290 msgid "Source file suffix" -msgstr "மூல கோப்பு பின்னொட்டு" +msgstr "" -#: sphinx/cmd/quickstart.py:287 +#: sphinx/cmd/quickstart.py:294 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" "of the documents. Normally, this is \"index\", but if your \"index\"\n" "document is a custom template, you can also set this to another filename." -msgstr "ஒரு ஆவணம் சிறப்பு வாய்ந்தது, இது மேல் முனையாக கருதப்படுகிறது \n \"உள்ளடக்க மரம்\", அதாவது, இது படிநிலை கட்டமைப்பின் வேர் \n ஆவணங்களில். பொதுவாக, இது \"குறியீட்டு\", ஆனால் உங்கள் \"குறியீட்டு\" என்றால் \n ஆவணம் ஒரு தனிப்பயன் வார்ப்புரு, இதை நீங்கள் மற்றொரு கோப்பு பெயராக அமைக்கலாம்." +msgstr "" -#: sphinx/cmd/quickstart.py:291 +#: sphinx/cmd/quickstart.py:298 msgid "Name of your master document (without suffix)" -msgstr "உங்கள் முதன்மை ஆவணத்தின் பெயர் (பின்னொட்டு இல்லாமல்)" +msgstr "" -#: sphinx/cmd/quickstart.py:296 +#: sphinx/cmd/quickstart.py:303 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." -msgstr "பிழை: முதன்மை கோப்பு %s ஏற்கனவே தேர்ந்தெடுக்கப்பட்ட ரூட் பாதையில் கண்டறியப்பட்டுள்ளது." +msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:305 msgid "sphinx-quickstart will not overwrite the existing file." -msgstr "SPHINX-QUICKSTART இருக்கும் கோப்பை மேலெழுதாது." +msgstr "" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:307 msgid "" "Please enter a new file name, or rename the existing file and press Enter" -msgstr "தயவுசெய்து ஒரு புதிய கோப்பு பெயரை உள்ளிடவும் அல்லது இருக்கும் கோப்பை மறுபெயரிட்டு Enter ஐ அழுத்தவும்" +msgstr "" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:311 msgid "Indicate which of the following Sphinx extensions should be enabled:" -msgstr "பின்வரும் ஸ்பிங்க்ஸ் நீட்டிப்புகளில் எது இயக்கப்பட வேண்டும் என்பதைக் குறிக்கவும்:" +msgstr "" -#: sphinx/cmd/quickstart.py:312 +#: sphinx/cmd/quickstart.py:319 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." -msgstr "குறிப்பு: ஒரே நேரத்தில் இம்க்மாத் மற்றும் மேத்ஜாக்ஸை இயக்க முடியாது. இம்க்மத் தேர்வு செய்யப்பட்டது." +msgstr "" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:325 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." -msgstr "ஒரு மேக்ஃபைல் மற்றும் விண்டோஸ் கட்டளை கோப்பை உங்களுக்காக உருவாக்கலாம், இதனால் நீங்கள் \n எ.கா. ஸ்பின்க்ஸ்-பில்ட் செய்வதற்கு பதிலாக `HTML ஐ உருவாக்கவும் ' \n நேரடியாக." +msgstr "" -#: sphinx/cmd/quickstart.py:321 +#: sphinx/cmd/quickstart.py:328 msgid "Create Makefile? (y/n)" -msgstr "மேக்ஃபைலை உருவாக்கவா? (y/n)" +msgstr "" -#: sphinx/cmd/quickstart.py:324 +#: sphinx/cmd/quickstart.py:331 msgid "Create Windows command file? (y/n)" -msgstr "விண்டோஸ் கட்டளை கோப்பை உருவாக்கவா? (y/n)" +msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." -msgstr "கோப்பு %s ஐ உருவாக்குதல்." +msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." -msgstr "கோப்பு %s ஏற்கனவே உள்ளது, தவிர்க்கிறது." +msgstr "" -#: sphinx/cmd/quickstart.py:418 +#: sphinx/cmd/quickstart.py:422 msgid "Finished: An initial directory structure has been created." -msgstr "முடிந்தது: ஆரம்ப அடைவு அமைப்பு உருவாக்கப்பட்டுள்ளது." +msgstr "" -#: sphinx/cmd/quickstart.py:420 +#: sphinx/cmd/quickstart.py:424 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " -msgstr "நீங்கள் இப்போது உங்கள் முதன்மை கோப்பு %s ஐ விரிவுபடுத்தி பிற ஆவணங்களை உருவாக்க வேண்டும் \n மூல கோப்புகள்." +msgstr "" -#: sphinx/cmd/quickstart.py:423 +#: sphinx/cmd/quickstart.py:427 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" -msgstr "டாக்ஸை உருவாக்க மேக்ஃபைலைப் பயன்படுத்தவும்: \n பில்டரை உருவாக்குங்கள்" +msgstr "" -#: sphinx/cmd/quickstart.py:426 +#: sphinx/cmd/quickstart.py:430 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" -msgstr "டாக்ஸை உருவாக்க ஸ்பின்க்ஸ்-பில்ட் கட்டளையைப் பயன்படுத்தவும்: \n Sphinx -build -b பில்டர் %s %s" +msgstr "" -#: sphinx/cmd/quickstart.py:428 +#: sphinx/cmd/quickstart.py:432 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." -msgstr "\"பில்டர்\" என்பது ஆதரிக்கப்பட்ட பில்டர்களில் ஒன்றாகும், எ.கா. HTML, லேடெக்ஸ் அல்லது லிங்க்செக்." +msgstr "" -#: sphinx/cmd/quickstart.py:464 +#: sphinx/cmd/quickstart.py:467 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1693,785 +1644,780 @@ msgid "" "sphinx-quickstart is an interactive tool that asks some questions about your\n" "project and then generates a complete documentation directory and sample\n" "Makefile to be used with sphinx-build.\n" -msgstr "ஸ்பிங்க்ஸ் திட்டத்திற்கு தேவையான கோப்புகளை உருவாக்கவும். \n\n Sphinx-quickstart என்பது உங்களைப் பற்றி சில கேள்விகளைக் கேட்கும் ஒரு ஊடாடும் கருவியாகும் \n திட்டம் மற்றும் பின்னர் ஒரு முழுமையான ஆவண அடைவு மற்றும் மாதிரி உருவாக்குகிறது \n Sphinx- கட்டளையுடன் பயன்படுத்த மேக்ஃபைல்." +msgstr "" -#: sphinx/cmd/quickstart.py:479 +#: sphinx/cmd/quickstart.py:482 msgid "quiet mode" -msgstr "அமைதியான பயன்முறை" +msgstr "" -#: sphinx/cmd/quickstart.py:484 +#: sphinx/cmd/quickstart.py:487 msgid "project root" -msgstr "திட்ட வேர்" +msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:489 msgid "Structure options" -msgstr "கட்டமைப்பு விருப்பங்கள்" +msgstr "" -#: sphinx/cmd/quickstart.py:488 +#: sphinx/cmd/quickstart.py:491 msgid "if specified, separate source and build dirs" -msgstr "குறிப்பிடப்பட்டால், மூலத்தை பிரித்து dirs ஐ உருவாக்குங்கள்" +msgstr "" -#: sphinx/cmd/quickstart.py:490 +#: sphinx/cmd/quickstart.py:493 msgid "if specified, create build dir under source dir" -msgstr "குறிப்பிடப்பட்டால், மூல dir இன் கீழ் உருவாக்க dir ஐ உருவாக்குங்கள்" +msgstr "" -#: sphinx/cmd/quickstart.py:492 +#: sphinx/cmd/quickstart.py:495 msgid "replacement for dot in _templates etc." -msgstr "_TEMPLATES போன்றவற்றில் DOT க்கு மாற்றீடு." +msgstr "" -#: sphinx/cmd/quickstart.py:494 +#: sphinx/cmd/quickstart.py:497 msgid "Project basic options" -msgstr "அடிப்படை விருப்பங்களை திட்டமிடுங்கள்" +msgstr "" -#: sphinx/cmd/quickstart.py:496 +#: sphinx/cmd/quickstart.py:499 msgid "project name" -msgstr "திட்ட பெயர்" +msgstr "" -#: sphinx/cmd/quickstart.py:498 +#: sphinx/cmd/quickstart.py:501 msgid "author names" -msgstr "ஆசிரியர் பெயர்கள்" +msgstr "" -#: sphinx/cmd/quickstart.py:500 +#: sphinx/cmd/quickstart.py:503 msgid "version of project" -msgstr "திட்டத்தின் பதிப்பு" +msgstr "" -#: sphinx/cmd/quickstart.py:502 +#: sphinx/cmd/quickstart.py:505 msgid "release of project" -msgstr "திட்டத்தின் வெளியீடு" +msgstr "" -#: sphinx/cmd/quickstart.py:504 +#: sphinx/cmd/quickstart.py:507 msgid "document language" -msgstr "ஆவண மொழி" +msgstr "" -#: sphinx/cmd/quickstart.py:506 +#: sphinx/cmd/quickstart.py:509 msgid "source file suffix" -msgstr "மூல கோப்பு பின்னொட்டு" +msgstr "" -#: sphinx/cmd/quickstart.py:508 +#: sphinx/cmd/quickstart.py:511 msgid "master document name" -msgstr "முதன்மை ஆவண பெயர்" +msgstr "" -#: sphinx/cmd/quickstart.py:510 +#: sphinx/cmd/quickstart.py:513 msgid "use epub" -msgstr "எபப் பயன்படுத்தவும்" +msgstr "" -#: sphinx/cmd/quickstart.py:512 +#: sphinx/cmd/quickstart.py:515 msgid "Extension options" -msgstr "நீட்டிப்பு விருப்பங்கள்" +msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 #, python-format msgid "enable %s extension" -msgstr "%கள் நீட்டிப்பை இயக்கவும்" +msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 msgid "enable arbitrary extensions" -msgstr "தன்னிச்சையான நீட்டிப்புகளை இயக்கவும்" +msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:523 msgid "Makefile and Batchfile creation" -msgstr "மேக்ஃபைல் மற்றும் பேட்ச்பைல் உருவாக்கம்" +msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:525 msgid "create makefile" -msgstr "மேக்ஃபைலை உருவாக்கவும்" +msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:527 msgid "do not create makefile" -msgstr "மேக்ஃபைலை உருவாக்க வேண்டாம்" +msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:529 msgid "create batchfile" -msgstr "தொகுதி கோப்பை உருவாக்கவும்" +msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:532 msgid "do not create batchfile" -msgstr "தொகுதி கோப்பை உருவாக்க வேண்டாம்" +msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:535 msgid "use make-mode for Makefile/make.bat" -msgstr "MakeFile/make.bat க்கு மேக்-பயன்முறையைப் பயன்படுத்தவும்" +msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:538 msgid "do not use make-mode for Makefile/make.bat" -msgstr "MakeFile/make.bat க்கு மேக்-பயன்முறையைப் பயன்படுத்த வேண்டாம்" +msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 msgid "Project templating" -msgstr "திட்ட வார்ப்புரு" +msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 msgid "template directory for template files" -msgstr "வார்ப்புரு கோப்புகளுக்கான வார்ப்புரு அடைவு" +msgstr "" -#: sphinx/cmd/quickstart.py:543 +#: sphinx/cmd/quickstart.py:546 msgid "define a template variable" -msgstr "ஒரு வார்ப்புரு மாறியை வரையறுக்கவும்" +msgstr "" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:579 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." -msgstr "\"அமைதியானது\" குறிப்பிடப்பட்டுள்ளது, ஆனால் \"திட்டம்\" அல்லது \"ஆசிரியர்\" எதுவும் குறிப்பிடப்படவில்லை." +msgstr "" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:593 msgid "" "Error: specified path is not a directory, or sphinx files already exist." -msgstr "பிழை: குறிப்பிட்ட பாதை ஒரு அடைவு அல்ல, அல்லது ஸ்பிங்க்ஸ் கோப்புகள் ஏற்கனவே உள்ளன." +msgstr "" -#: sphinx/cmd/quickstart.py:592 +#: sphinx/cmd/quickstart.py:595 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." -msgstr "ஸ்பின்க்ஸ்-கிக்ஸ்டார்ட் ஒரு வெற்று கோப்பகமாக மட்டுமே உருவாக்குகிறது. புதிய ரூட் பாதையை குறிப்பிடவும்." +msgstr "" -#: sphinx/cmd/quickstart.py:607 +#: sphinx/cmd/quickstart.py:610 #, python-format msgid "Invalid template variable: %s" -msgstr "தவறான வார்ப்புரு மாறி: %கள்" +msgstr "" #: sphinx/directives/code.py:61 msgid "non-whitespace stripped by dedent" -msgstr "வெண்மையானது அல்லாதது" +msgstr "" #: sphinx/directives/code.py:82 #, python-format msgid "Invalid caption: %s" -msgstr "தவறான தலைப்புகள்" +msgstr "" #: sphinx/directives/code.py:127 sphinx/directives/code.py:277 #: sphinx/directives/code.py:453 #, python-format msgid "line number spec is out of range(1-%d): %r" -msgstr "வரி எண் ஸ்பெக் வரம்பில் இல்லை (1- %d): %r" +msgstr "" #: sphinx/directives/code.py:206 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" -msgstr "\"%கள்\" மற்றும் \"%கள்\" விருப்பங்கள் இரண்டையும் பயன்படுத்த முடியாது" +msgstr "" #: sphinx/directives/code.py:220 #, python-format msgid "Include file %r not found or reading it failed" -msgstr "கோப்பு %r கண்டுபிடிக்கப்படவில்லை அல்லது அதைப் படிப்பது தோல்வியுற்றது" +msgstr "" #: sphinx/directives/code.py:223 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" -msgstr "சேர்க்கப்பட்ட கோப்பு %r என்பது தவறானதாகத் தெரிகிறது, ஒரு: குறியாக்கம்: விருப்பம் கொடுக்க முயற்சிக்கவும்" +msgstr "" #: sphinx/directives/code.py:260 #, python-format msgid "Object named %r not found in include file %r" -msgstr "%R இல் காணப்படாத பொருள் கோப்பு %r அடங்கும்" +msgstr "" #: sphinx/directives/code.py:286 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" -msgstr "\"லினெனோ-மேட்ச்\" ஐ \"கோடுகளின்\" ஒத்ததாக பயன்படுத்த முடியாது" +msgstr "" #: sphinx/directives/code.py:291 #, python-format msgid "Line spec %r: no lines pulled from include file %r" -msgstr "வரி ஸ்பெக் %ஆர்: எந்த வரிகளும் இல்லை கோப்பு %ஆர் சேர்க்கப்படவில்லை" +msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:116 #, python-format msgid "toctree glob pattern %r didn't match any documents" -msgstr "டோக்ட்ரீ குளோப் முறை %ஆர் எந்த ஆவணங்களுக்கும் பொருந்தவில்லை" +msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 #, python-format msgid "toctree contains reference to excluded document %r" -msgstr "டோக்ட்ரீ விலக்கப்பட்ட ஆவணம் %ஆர் பற்றிய குறிப்பு உள்ளது" +msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 #, python-format msgid "toctree contains reference to nonexisting document %r" -msgstr "டோக்ட்ரீ இல்லாத ஆவணம் %r பற்றிய குறிப்பு உள்ளது" +msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:156 #, python-format msgid "duplicated entry found in toctree: %s" -msgstr "டோக்ட்ரீயில் காணப்படும் நகல் நுழைவு: %கள்" +msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:188 msgid "Section author: " -msgstr "பிரிவு ஆசிரியர்:" +msgstr "" -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:190 msgid "Module author: " -msgstr "தொகுதி ஆசிரியர்:" +msgstr "" -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:192 msgid "Code author: " -msgstr "குறியீடு ஆசிரியர்:" +msgstr "" -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:194 msgid "Author: " -msgstr "நூலாசிரியர்:" +msgstr "" -#: sphinx/directives/other.py:275 +#: sphinx/directives/other.py:266 msgid ".. acks content is not a list" -msgstr ".. ACKS உள்ளடக்கம் ஒரு பட்டியல் அல்ல" +msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:291 msgid ".. hlist content is not a list" -msgstr ".. HLIST உள்ளடக்கம் ஒரு பட்டியல் அல்ல" +msgstr "" #: sphinx/directives/patches.py:66 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." -msgstr "\": கோப்பு:\" சி.எஸ்.வி-டேபிள் டைரெக்டிவ் விருப்பம் இப்போது ஒரு முழுமையான பாதையை மூல கோப்பகத்திலிருந்து தொடர்புடைய பாதையாக அங்கீகரிக்கிறது. உங்கள் ஆவணத்தை புதுப்பிக்கவும்." +msgstr "" #: sphinx/domains/__init__.py:397 #, python-format msgid "%s %s" -msgstr "%s %s" +msgstr "" -#: sphinx/domains/changeset.py:23 +#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 #, python-format -msgid "Added in version %s" +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/changeset.py:24 +#: sphinx/domains/c.py:3257 #, python-format -msgid "Changed in version %s" -msgstr "பதிப்பு %s இல் மாற்றப்பட்டது" +msgid "%s (C %s)" +msgstr "" -#: sphinx/domains/changeset.py:25 -#, python-format -msgid "Deprecated since version %s" -msgstr "பதிப்பு %s முதல் நீக்கப்பட்டது" +#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 +#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 +msgid "Parameters" +msgstr "" -#: sphinx/domains/changeset.py:26 -#, python-format -msgid "Removed in version %s" +#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 +msgid "Return values" msgstr "" -#: sphinx/domains/citation.py:71 -#, python-format -msgid "duplicate citation %s, other instance in %s" -msgstr "நகல் மேற்கோள் %s, %s இல் மற்ற நிகழ்வு" +#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 +#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 +msgid "Returns" +msgstr "" -#: sphinx/domains/citation.py:82 -#, python-format -msgid "Citation [%s] is not referenced." -msgstr "மேற்கோள் [%கள்] குறிப்பிடப்படவில்லை." +#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 +#: sphinx/domains/python.py:696 +msgid "Return type" +msgstr "" -#: sphinx/domains/javascript.py:165 -#, python-format -msgid "%s() (built-in function)" -msgstr "%s () (உள்ளமைக்கப்பட்ட செயல்பாடு)" +#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 +msgid "member" +msgstr "" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 -#, python-format -msgid "%s() (%s method)" -msgstr "%s () (%s முறை)" +#: sphinx/domains/c.py:3731 +msgid "variable" +msgstr "" -#: sphinx/domains/javascript.py:168 -#, python-format -msgid "%s() (class)" -msgstr "%கள் () (வகுப்பு)" +#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 +#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 +msgid "function" +msgstr "" -#: sphinx/domains/javascript.py:170 -#, python-format -msgid "%s (global variable or constant)" -msgstr "%கள் (உலகளாவிய மாறி அல்லது மாறிலி)" +#: sphinx/domains/c.py:3733 +msgid "macro" +msgstr "" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 -#, python-format -msgid "%s (%s attribute)" -msgstr "%s (%s பண்புக்கூறு)" +#: sphinx/domains/c.py:3734 +msgid "struct" +msgstr "" -#: sphinx/domains/javascript.py:255 -msgid "Arguments" -msgstr "வாதங்கள்" - -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 -msgid "Throws" -msgstr "வீசுகிறது" - -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 -msgid "Returns" -msgstr "வருமானம்" - -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 -msgid "Return type" -msgstr "திரும்ப வகை" - -#: sphinx/domains/javascript.py:331 -#, python-format -msgid "%s (module)" -msgstr "%கள் (தொகுதி)" - -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 -msgid "function" -msgstr "செயல்பாடு" +#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 +msgid "union" +msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 -msgid "method" -msgstr "முறை" +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 +msgid "enum" +msgstr "" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 -msgid "class" -msgstr "வர்க்கம்" +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 +msgid "enumerator" +msgstr "" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 -msgid "data" -msgstr "தகவல்கள்" +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 +msgid "type" +msgstr "" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 -msgid "attribute" -msgstr "பண்புக்கூறு" +#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 +msgid "function parameter" +msgstr "" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 -msgid "module" -msgstr "தொகுதி" +#: sphinx/domains/changeset.py:23 +#, python-format +msgid "New in version %s" +msgstr "" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/changeset.py:24 #, python-format -msgid "duplicate %s description of %s, other %s in %s" -msgstr "%s இன் %s விளக்கம், %s இல் மற்ற %s" +msgid "Changed in version %s" +msgstr "" -#: sphinx/domains/math.py:63 +#: sphinx/domains/changeset.py:25 #, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "சமன்பாடு %s இன் நகல் லேபிள், %s இல் மற்ற நிகழ்வு" +msgid "Deprecated since version %s" +msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/citation.py:70 #, python-format -msgid "Invalid math_eqref_format: %r" -msgstr "தவறான MATH_EQREF_FORMAT: %r" +msgid "duplicate citation %s, other instance in %s" +msgstr "" -#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#: sphinx/domains/citation.py:81 #, python-format -msgid "%s (directive)" -msgstr "%கள் (உத்தரவு)" +msgid "Citation [%s] is not referenced." +msgstr "" -#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 #, python-format -msgid ":%s: (directive option)" -msgstr ":%s: (உத்தரவு விருப்பம்)" +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." +msgstr "" -#: sphinx/domains/rst.py:213 +#: sphinx/domains/cpp.py:7218 +msgid "Template Parameters" +msgstr "" + +#: sphinx/domains/cpp.py:7340 #, python-format -msgid "%s (role)" -msgstr "%கள் (பங்கு)" +msgid "%s (C++ %s)" +msgstr "" -#: sphinx/domains/rst.py:223 -msgid "directive" -msgstr "உத்தரவு" +#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 +msgid "Throws" +msgstr "" -#: sphinx/domains/rst.py:224 -msgid "directive-option" -msgstr "உத்தரவு-விருப்பம்" +#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 +#: sphinx/domains/python.py:1456 +msgid "class" +msgstr "" -#: sphinx/domains/rst.py:225 -msgid "role" -msgstr "பங்கு" +#: sphinx/domains/cpp.py:7911 +msgid "concept" +msgstr "" -#: sphinx/domains/rst.py:247 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" -msgstr "%s %s இன் நகல் விளக்கம், %s இல் மற்ற நிகழ்வு" +#: sphinx/domains/cpp.py:7916 +msgid "template parameter" +msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/javascript.py:164 #, python-format -msgid "%s (C %s)" -msgstr "%s (c %s)" +msgid "%s() (built-in function)" +msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 #, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." -msgstr "நகல் சி அறிவிப்பு, %s: %s இல் வரையறுக்கப்பட்டுள்ளது. \n அறிவிப்பு '.. c: %s :: %s'." - -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 -msgid "Parameters" -msgstr "அளவுருக்கள்" - -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 -msgid "Return values" -msgstr "திரும்ப மதிப்புகள்" +msgid "%s() (%s method)" +msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 -msgid "member" -msgstr "உறுப்பினர்" +#: sphinx/domains/javascript.py:167 +#, python-format +msgid "%s() (class)" +msgstr "" -#: sphinx/domains/c/__init__.py:621 -msgid "variable" -msgstr "மாறக்கூடிய" +#: sphinx/domains/javascript.py:169 +#, python-format +msgid "%s (global variable or constant)" +msgstr "" -#: sphinx/domains/c/__init__.py:623 -msgid "macro" -msgstr "பெரு" +#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 +#, python-format +msgid "%s (%s attribute)" +msgstr "" -#: sphinx/domains/c/__init__.py:624 -msgid "struct" -msgstr "கட்டமைப்பு" +#: sphinx/domains/javascript.py:253 +msgid "Arguments" +msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 -msgid "union" -msgstr "தொழிற்சங்கம்" +#: sphinx/domains/javascript.py:329 +#, python-format +msgid "%s (module)" +msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 -msgid "enum" -msgstr "enum" +#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 +msgid "method" +msgstr "" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 -msgid "enumerator" -msgstr "கணக்காளர்" +#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 +msgid "data" +msgstr "" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 -msgid "type" -msgstr "தட்டச்சு செய்க" +#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 +msgid "attribute" +msgstr "" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 -msgid "function parameter" -msgstr "செயல்பாடு அளவுரு" +#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 +msgid "module" +msgstr "" -#: sphinx/domains/cpp/__init__.py:63 -msgid "Template Parameters" -msgstr "வார்ப்புரு அளவுருக்கள்" +#: sphinx/domains/javascript.py:401 +#, python-format +msgid "duplicate %s description of %s, other %s in %s" +msgstr "" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/math.py:61 #, python-format -msgid "%s (C++ %s)" -msgstr "%s (c ++ %s)" +msgid "duplicate label of equation %s, other instance in %s" +msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." -msgstr "சி ++ பிரகடனத்தை நகல், %கள்: %s இல் வரையறுக்கப்படுகிறது. \n அறிவிப்பு '.. CPP: %s :: %s'." +msgid "Invalid math_eqref_format: %r" +msgstr "" -#: sphinx/domains/cpp/__init__.py:767 -msgid "concept" -msgstr "கருத்து" +#: sphinx/domains/python.py:687 +msgid "Variables" +msgstr "" -#: sphinx/domains/cpp/__init__.py:772 -msgid "template parameter" -msgstr "வார்ப்புரு அளவுரு" +#: sphinx/domains/python.py:691 +msgid "Raises" +msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 #, python-format msgid "%s() (in module %s)" -msgstr "%s () (தொகுதி %s இல்)" +msgstr "" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 +#: sphinx/domains/python.py:1253 #, python-format msgid "%s (in module %s)" -msgstr "%s (தொகுதி %s இல்)" +msgstr "" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python.py:1037 #, python-format msgid "%s (built-in variable)" -msgstr "%கள் (உள்ளமைக்கப்பட்ட மாறி)" +msgstr "" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python.py:1062 #, python-format msgid "%s (built-in class)" -msgstr "%கள் (உள்ளமைக்கப்பட்ட வகுப்பு)" +msgstr "" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python.py:1063 #, python-format msgid "%s (class in %s)" -msgstr "%கள் ( %s இல் வகுப்பு)" +msgstr "" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python.py:1117 #, python-format msgid "%s() (%s class method)" -msgstr "%s () (%s வகுப்பு முறை)" +msgstr "" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python.py:1119 #, python-format msgid "%s() (%s static method)" -msgstr "%s () (%s நிலையான முறை)" +msgstr "" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python.py:1257 #, python-format msgid "%s (%s property)" -msgstr "%கள் (%s சொத்து)" +msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python.py:1383 msgid "Python Module Index" -msgstr "பைதான் தொகுதி அட்டவணை" +msgstr "" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python.py:1384 msgid "modules" -msgstr "தொகுதிகள்" +msgstr "" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python.py:1433 msgid "Deprecated" -msgstr "மதிப்பிடப்பட்டது" +msgstr "" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python.py:1457 msgid "exception" -msgstr "விதிவிலக்கு" +msgstr "" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python.py:1459 msgid "class method" -msgstr "வகுப்பு முறை" +msgstr "" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python.py:1460 msgid "static method" -msgstr "நிலையான முறை" +msgstr "" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python.py:1462 msgid "property" -msgstr "சொத்து" +msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python.py:1520 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" -msgstr "%s இன் நகல் பொருள் விளக்கம், %s இல் உள்ள பிற நிகழ்வு, பயன்பாடு: இல்லை-குறியீட்டு: அவற்றில் ஒன்று" +msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python.py:1640 #, python-format msgid "more than one target found for cross-reference %r: %s" -msgstr "குறுக்கு-குறிப்புக்கு ஒன்றுக்கு மேற்பட்ட இலக்குகள் %r: %s" +msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python.py:1701 msgid " (deprecated)" -msgstr "(நீக்கப்பட்டது)" +msgstr "" -#: sphinx/domains/python/_object.py:168 -msgid "Variables" -msgstr "மாறிகள்" +#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 +#, python-format +msgid "%s (directive)" +msgstr "" -#: sphinx/domains/python/_object.py:172 -msgid "Raises" -msgstr "எழுப்புகிறது" +#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 +#, python-format +msgid ":%s: (directive option)" +msgstr "" + +#: sphinx/domains/rst.py:209 +#, python-format +msgid "%s (role)" +msgstr "" + +#: sphinx/domains/rst.py:218 +msgid "directive" +msgstr "" + +#: sphinx/domains/rst.py:219 +msgid "directive-option" +msgstr "" + +#: sphinx/domains/rst.py:220 +msgid "role" +msgstr "" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/rst.py:242 +#, python-format +msgid "duplicate description of %s %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 #, python-format msgid "environment variable; %s" -msgstr "சுற்றுச்சூழல் மாறி; %கள்" +msgstr "" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std.py:155 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" -msgstr "தவறான விருப்பமான விளக்கம் %r, \"OPT\", \"-OPT ARGS\", \"--opt args\", \"/Opt args\" அல்லது \"+Opt args\"" +msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std.py:226 #, python-format msgid "%s command line option" -msgstr "%S கட்டளை வரி விருப்பம்" +msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std.py:228 msgid "command line option" -msgstr "கட்டளை வரி விருப்பம்" +msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std.py:346 msgid "glossary term must be preceded by empty line" -msgstr "சொற்களஞ்சியம் காலத்திற்கு முன்னதாக இருக்க வேண்டும்" +msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std.py:354 msgid "glossary terms must not be separated by empty lines" -msgstr "சொற்களஞ்சிய சொற்கள் வெற்று கோடுகளால் பிரிக்கப்படக்கூடாது" +msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 msgid "glossary seems to be misformatted, check indentation" -msgstr "சொற்களஞ்சியம் தவறாகப் புரிந்து கொள்ளப்பட்டதாகத் தெரிகிறது, உள்தள்ளலை சரிபார்க்கவும்" +msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std.py:516 msgid "glossary term" -msgstr "சொற்களஞ்சிய கால" +msgstr "" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std.py:517 msgid "grammar token" -msgstr "இலக்கண டோக்கன்" +msgstr "" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std.py:518 msgid "reference label" -msgstr "குறிப்பு லேபிள்" +msgstr "" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std.py:520 msgid "environment variable" -msgstr "சுற்றுச்சூழல் மாறி" +msgstr "" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std.py:521 msgid "program option" -msgstr "நிரல் விருப்பம்" +msgstr "" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std.py:522 msgid "document" -msgstr "ஆவணம்" +msgstr "" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 msgid "Module Index" -msgstr "தொகுதி அட்டவணை" +msgstr "" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" -msgstr "தேடல் பக்கம்" +msgstr "" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 -#: sphinx/ext/autosectionlabel.py:53 +#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 +#: sphinx/ext/autosectionlabel.py:52 #, python-format msgid "duplicate label %s, other instance in %s" -msgstr "நகல் லேபிள் %கள், பிற நிகழ்வுகள் %s இல்" +msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std.py:633 #, python-format msgid "duplicate %s description of %s, other instance in %s" -msgstr "%s இன் %s விளக்கம், %s இல் மற்ற நிகழ்வு" +msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std.py:839 msgid "numfig is disabled. :numref: is ignored." -msgstr "NUMFIG முடக்கப்பட்டுள்ளது. : எண்ரெஃப்: புறக்கணிக்கப்படுகிறது." +msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std.py:847 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" -msgstr "குறுக்கு குறிப்பை உருவாக்கத் தவறிவிட்டது. எந்த எண்ணும் ஒதுக்கப்படவில்லை: %கள்" +msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std.py:859 #, python-format msgid "the link has no caption: %s" -msgstr "இணைப்புக்கு தலைப்பு இல்லை: %கள்" +msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std.py:873 #, python-format msgid "invalid numfig_format: %s (%r)" -msgstr "தவறான numfig_format: %s ( %r)" +msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std.py:876 #, python-format msgid "invalid numfig_format: %s" -msgstr "தவறான numfig_format: %s" +msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std.py:1106 #, python-format msgid "undefined label: %r" -msgstr "வரையறுக்கப்படாத லேபிள்: %ஆர்" +msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std.py:1108 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" -msgstr "குறுக்கு குறிப்பை உருவாக்கத் தவறிவிட்டது. ஒரு தலைப்பு அல்லது தலைப்பு கிடைக்கவில்லை: %r" +msgstr "" #: sphinx/environment/__init__.py:71 msgid "new config" -msgstr "புதிய கட்டமைப்பு" +msgstr "" #: sphinx/environment/__init__.py:72 msgid "config changed" -msgstr "கட்டமைப்பு மாற்றப்பட்டது" +msgstr "" #: sphinx/environment/__init__.py:73 msgid "extensions changed" -msgstr "நீட்டிப்புகள் மாற்றப்பட்டன" +msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:276 msgid "build environment version not current" -msgstr "சுற்றுச்சூழல் பதிப்பை உருவாக்குங்கள்" +msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:278 msgid "source directory has changed" -msgstr "மூல அடைவு மாறிவிட்டது" +msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:357 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." -msgstr "இந்த சூழல் தேர்ந்தெடுக்கப்பட்ட பில்டருடன் பொருந்தாது, தயவுசெய்து மற்றொரு கோட்பாட்டு கோப்பகத்தைத் தேர்வுசெய்க." +msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:456 #, python-format msgid "Failed to scan documents in %s: %r" -msgstr "%S இல் ஆவணங்களை ஸ்கேன் செய்வதில் தோல்வி: %r" +msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:593 #, python-format msgid "Domain %r is not registered" -msgstr "டொமைன் %ஆர் பதிவு செய்யப்படவில்லை" +msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:727 msgid "document isn't included in any toctree" -msgstr "எந்த டோக்ட்ரீயிலும் ஆவணம் சேர்க்கப்படவில்லை" +msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:764 msgid "self referenced toctree found. Ignored." -msgstr "சுய குறிப்பிடப்பட்ட டோக்ட்ரீ கண்டுபிடிக்கப்பட்டது. புறக்கணிக்கப்பட்டது." +msgstr "" #: sphinx/environment/adapters/indexentries.py:69 #, python-format msgid "see %s" -msgstr "%கள் பார்க்கவும்" +msgstr "" #: sphinx/environment/adapters/indexentries.py:73 #, python-format msgid "see also %s" -msgstr "%கள் மேலும் காண்க" +msgstr "" #: sphinx/environment/adapters/indexentries.py:76 #, python-format msgid "unknown index entry type %r" -msgstr "அறியப்படாத குறியீட்டு நுழைவு வகை %r" +msgstr "" #: sphinx/environment/adapters/indexentries.py:187 #: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" -msgstr "சின்னங்கள்" +msgstr "" -#: sphinx/environment/adapters/toctree.py:297 +#: sphinx/environment/adapters/toctree.py:296 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" -msgstr "சுற்றறிக்கை டோக்ட்ரீ குறிப்புகள் கண்டறியப்பட்டன, புறக்கணித்தல்: %s <- %s" +msgstr "" -#: sphinx/environment/adapters/toctree.py:317 +#: sphinx/environment/adapters/toctree.py:316 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" -msgstr "டோக்ட்ரீ ஒரு தலைப்பு இல்லாத ஆவணம் %r க்கு குறிப்பு உள்ளது: எந்த இணைப்பும் உருவாக்கப்படாது" +msgstr "" -#: sphinx/environment/adapters/toctree.py:326 +#: sphinx/environment/adapters/toctree.py:325 #, python-format msgid "toctree contains reference to non-included document %r" -msgstr "டோக்ட்ரீ சேர்க்கப்படாத ஆவணம் %r பற்றிய குறிப்பு உள்ளது" +msgstr "" -#: sphinx/environment/collectors/asset.py:89 +#: sphinx/environment/collectors/asset.py:88 #, python-format msgid "image file not readable: %s" -msgstr "படக் கோப்பு படிக்க முடியாது: %கள்" +msgstr "" -#: sphinx/environment/collectors/asset.py:108 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" -msgstr "படக் கோப்பு %s படிக்க முடியாதது: %s" +msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:133 #, python-format msgid "download file not readable: %s" -msgstr "கோப்பைப் பதிவிறக்க முடியாது: %கள்" +msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:224 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" -msgstr "%கள் ஏற்கனவே பிரிவு எண்களை ஒதுக்கியுள்ளன (உள்ளமைக்கப்பட்ட எண்ணுள்ள டோக்ட்ரீ?)" +msgstr "" #: sphinx/ext/apidoc.py:86 #, python-format msgid "Would create file %s." -msgstr "கோப்பு %s ஐ உருவாக்கும்." +msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:320 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2481,228 +2427,228 @@ msgid "" "excluded from generation.\n" "\n" "Note: By default this script will not overwrite already created files." -msgstr "பைதான் தொகுதிகள் மற்றும் தொகுப்புகளுக்கு <தொகுதி_பாத்> இல் மீண்டும் மீண்டும் பார்க்கவும் \n <uptical_path> இல் ஒரு தொகுப்புக்கு ஆட்டோமோடூல் வழிமுறைகளுடன் ஒரு ஓய்வு கோப்பு. \n\n <Excoude_pattern> கள் கோப்பு மற்றும்/அல்லது அடைவு வடிவங்களாக இருக்கலாம் \n தலைமுறையிலிருந்து விலக்கப்பட்டது. \n\n குறிப்பு: இயல்பாக இந்த ஸ்கிரிப்ட் ஏற்கனவே உருவாக்கிய கோப்புகளை மேலெழுதாது." +msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:333 msgid "path to module to document" -msgstr "ஆவணத்திற்கான தொகுதிக்கான பாதை" +msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:335 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" -msgstr "fnmatch- பாணி கோப்பு மற்றும்/அல்லது கோப்பக வடிவங்கள் தலைமுறையிலிருந்து விலக்க" +msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:340 msgid "directory to place all output" -msgstr "அனைத்து வெளியீட்டையும் வைக்க அடைவு" +msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:345 msgid "maximum depth of submodules to show in the TOC (default: 4)" -msgstr "TOC இல் காண்பிக்க சப்மோடூல்களின் அதிகபட்ச ஆழம் (இயல்புநிலை: 4)" +msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:348 msgid "overwrite existing files" -msgstr "இருக்கும் கோப்புகளை மேலெழுதவும்" +msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:351 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." -msgstr "குறியீட்டு இணைப்புகளைப் பின்பற்றவும். Cologetive.recipe.omelette உடன் இணைந்தால் சக்திவாய்ந்தவர்." +msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:354 msgid "run the script without creating files" -msgstr "கோப்புகளை உருவாக்காமல் ஸ்கிரிப்டை இயக்கவும்" +msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:357 msgid "put documentation for each module on its own page" -msgstr "ஒவ்வொரு தொகுதிக்கும் ஆவணங்களை அதன் சொந்த பக்கத்தில் வைக்கவும்" +msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:360 msgid "include \"_private\" modules" -msgstr "\"_ பிரைவேட்\" தொகுதிகள் சேர்க்கவும்" +msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:362 msgid "filename of table of contents (default: modules)" -msgstr "உள்ளடக்க அட்டவணையின் கோப்பு பெயர் (இயல்புநிலை: தொகுதிகள்)" +msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:364 msgid "don't create a table of contents file" -msgstr "உள்ளடக்கக் கோப்பின் அட்டவணையை உருவாக்க வேண்டாம்" +msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:367 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" -msgstr "தொகுதி/தொகுப்பு தொகுப்புகளுக்கான தலைப்புகளை உருவாக்க வேண்டாம் (எ.கா. ஆவணங்கள் ஏற்கனவே அவற்றைக் கொண்டிருக்கும்போது)" +msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:372 msgid "put module documentation before submodule documentation" -msgstr "தொகுதி ஆவணங்களை சப்மோடூல் ஆவணங்களுக்கு முன் வைக்கவும்" +msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:376 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" -msgstr "PEP-0420 மறைமுக பெயர்வெளிகளின் விவரக்குறிப்பின் படி தொகுதி பாதைகளை விளக்குங்கள்" +msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:380 msgid "file suffix (default: rst)" -msgstr "கோப்பு பின்னொட்டு (இயல்புநிலை: rst)" +msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:382 msgid "generate a full project with sphinx-quickstart" -msgstr "ஸ்பின்க்ஸ்-க்யூக்ஸ்டார்ட்டுடன் ஒரு முழு திட்டத்தை உருவாக்கவும்" +msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:385 msgid "append module_path to sys.path, used when --full is given" -msgstr "sys.path உடன் தொகுதி_பாத், --full கொடுக்கப்படும் போது பயன்படுத்தப்படுகிறது" +msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:387 msgid "project name (default: root module name)" -msgstr "திட்ட பெயர் (இயல்புநிலை: ரூட் தொகுதி பெயர்)" +msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:389 msgid "project author(s), used when --full is given" -msgstr "திட்ட ஆசிரியர் (கள்), -ஃபுல் வழங்கப்படும் போது பயன்படுத்தப்படுகிறது" +msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:391 msgid "project version, used when --full is given" -msgstr "திட்ட பதிப்பு, -ஃபுல் வழங்கப்படும் போது பயன்படுத்தப்படுகிறது" +msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:393 msgid "project release, used when --full is given, defaults to --doc-version" -msgstr "திட்ட வெளியீடு, --full வழங்கப்படும் போது பயன்படுத்தப்படுகிறது, இயல்புநிலை--டாக்-பதவியே" +msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:396 msgid "extension options" -msgstr "நீட்டிப்பு விருப்பங்கள்" +msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:429 #, python-format msgid "%s is not a directory." -msgstr "%கள் ஒரு அடைவு அல்ல." +msgstr "" -#: sphinx/ext/autosectionlabel.py:49 +#: sphinx/ext/autosectionlabel.py:48 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" -msgstr "\"%கள்\" பிரிவு \"%கள்\" என்று பெயரிடப்படுகிறது" +msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:45 #, python-format msgid "invalid regex %r in %s" -msgstr "%s இல் தவறான ரீஜெக்ஸ் %r" +msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:73 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." -msgstr "முடிக்கப்பட்ட ஆதாரங்களில் கவரேஜ் சோதனை செய்வது, %(வெளிப்புற) spython.txt இல் முடிவுகளைப் பாருங்கள்." +msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:87 #, python-format msgid "invalid regex %r in coverage_c_regexes" -msgstr "கவரேஜ்_சி_ரெஜெக்ஸில் தவறான ரீஜெக்ஸ் %ஆர்" +msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:155 #, python-format msgid "undocumented c api: %s [%s] in file %s" -msgstr "ஆவணப்படுத்தப்படாத சி ஏபிஐ: கோப்பு %s இல் %s [ %s]" +msgstr "" -#: sphinx/ext/coverage.py:189 +#: sphinx/ext/coverage.py:187 #, python-format msgid "module %s could not be imported: %s" -msgstr "தொகுதி %கள் இறக்குமதி செய்ய முடியவில்லை: %கள்" +msgstr "" -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:334 #, python-format msgid "undocumented python function: %s :: %s" -msgstr "ஆவணமற்ற பைதான் செயல்பாடு: %s :: %s" +msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:350 #, python-format msgid "undocumented python class: %s :: %s" -msgstr "ஆவணமற்ற பைதான் வகுப்பு: %கள் :: %கள்" +msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:363 #, python-format msgid "undocumented python method: %s :: %s :: %s" -msgstr "ஆவணமற்ற பைதான் முறை: %கள் :: %s :: %s" +msgstr "" #: sphinx/ext/doctest.py:115 #, python-format msgid "missing '+' or '-' in '%s' option." -msgstr "'%s' விருப்பத்தில் '+' அல்லது '-' காணவில்லை." +msgstr "" #: sphinx/ext/doctest.py:120 #, python-format msgid "'%s' is not a valid option." -msgstr "'%கள்' சரியான விருப்பம் அல்ல." +msgstr "" #: sphinx/ext/doctest.py:134 #, python-format msgid "'%s' is not a valid pyversion option" -msgstr "'%கள்' என்பது செல்லுபடியாகும் பைவெர்ஷன் விருப்பம் அல்ல" +msgstr "" #: sphinx/ext/doctest.py:220 msgid "invalid TestCode type" -msgstr "தவறான டெஸ்ட்கோட் வகை" +msgstr "" -#: sphinx/ext/doctest.py:281 +#: sphinx/ext/doctest.py:280 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." -msgstr "முடிக்கப்பட்ட ஆதாரங்களில் ஆவணங்களின் சோதனை, %(வெளிப்புற) s/output.txt இன் முடிவுகளைப் பாருங்கள்." +msgstr "" -#: sphinx/ext/doctest.py:438 +#: sphinx/ext/doctest.py:431 #, python-format msgid "no code/output in %s block at %s:%s" -msgstr "%s இல் %s தொகுதியில் குறியீடு/வெளியீடு இல்லை: %s: %s" +msgstr "" -#: sphinx/ext/doctest.py:526 +#: sphinx/ext/doctest.py:521 #, python-format msgid "ignoring invalid doctest code: %r" -msgstr "தவறான ஆவணக் குறியீட்டை புறக்கணித்தல்: %r" +msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:76 msgid "" "====================== slowest reading durations =======================" -msgstr "==================== மெதுவாக வாசிப்பு காலங்கள் =========================" +msgstr "" #: sphinx/ext/extlinks.py:82 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" -msgstr "ஹார்ட்கோட் செய்யப்பட்ட இணைப்பு %R ஐ எக்ஸ்ட்லிங்க் மூலம் மாற்றலாம் (அதற்கு பதிலாக %R ஐப் பயன்படுத்த முயற்சிக்கவும்)" +msgstr "" -#: sphinx/ext/graphviz.py:135 +#: sphinx/ext/graphviz.py:133 msgid "Graphviz directive cannot have both content and a filename argument" -msgstr "கிராப்விஸ் டைரெக்டிவ் உள்ளடக்கம் மற்றும் கோப்பு பெயர் வாதம் இரண்டையும் கொண்டிருக்க முடியாது" +msgstr "" -#: sphinx/ext/graphviz.py:145 +#: sphinx/ext/graphviz.py:143 #, python-format msgid "External Graphviz file %r not found or reading it failed" -msgstr "வெளிப்புற கிராப்விஸ் கோப்பு %r கண்டுபிடிக்கப்படவில்லை அல்லது அதைப் படிப்பது தோல்வியுற்றது" +msgstr "" -#: sphinx/ext/graphviz.py:152 +#: sphinx/ext/graphviz.py:150 msgid "Ignoring \"graphviz\" directive without content." -msgstr "உள்ளடக்கம் இல்லாமல் \"கிராஃப்விஸ்\" உத்தரவைப் புறக்கணித்தல்." +msgstr "" -#: sphinx/ext/graphviz.py:268 +#: sphinx/ext/graphviz.py:259 #, python-format msgid "graphviz_dot executable path must be set! %r" -msgstr "braphviz_dot இயங்கக்கூடிய பாதை அமைக்கப்பட வேண்டும்! %r" +msgstr "" -#: sphinx/ext/graphviz.py:303 +#: sphinx/ext/graphviz.py:294 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" -msgstr "DOT கட்டளை %R ஐ இயக்க முடியாது (கிராஃப்விஸ் வெளியீட்டிற்கு தேவை), கிராஃப்விஸ்_டோட் அமைப்பைச் சரிபார்க்கவும்" +msgstr "" -#: sphinx/ext/graphviz.py:310 +#: sphinx/ext/graphviz.py:301 #, python-format msgid "" "dot exited with error:\n" @@ -2710,9 +2656,9 @@ msgid "" "%r\n" "[stdout]\n" "%r" -msgstr "பிழை பிழையுடன் வெளியேறியது: \n [stderr] \n %r \n [stdout] \n %r" +msgstr "" -#: sphinx/ext/graphviz.py:313 +#: sphinx/ext/graphviz.py:304 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2720,37 +2666,37 @@ msgid "" "%r\n" "[stdout]\n" "%r" -msgstr "புள்ளி ஒரு வெளியீட்டு கோப்பை உருவாக்கவில்லை: \n [stderr] \n %r \n [stdout] \n %r" +msgstr "" -#: sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:320 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" -msgstr "braphviz_output_format 'png', 'svg' இல் ஒன்றாக இருக்க வேண்டும், ஆனால் %r ஆகும்" +msgstr "" -#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 -#: sphinx/ext/graphviz.py:423 +#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 +#: sphinx/ext/graphviz.py:414 #, python-format msgid "dot code %r: %s" -msgstr "புள்ளி குறியீடு %r: %s" +msgstr "" -#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 +#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 #, python-format msgid "[graph: %s]" -msgstr "[வரைபடம்: %கள்]" +msgstr "" -#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 +#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 msgid "[graph]" -msgstr "[வரைபடம்]" +msgstr "" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:38 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" "\n" "Traceback: %s" -msgstr "பட மாற்று கட்டளை %r ஐ இயக்க முடியவில்லை. 'sphinx.ext.imgconverter' இயல்புநிலையாக இமேஜ்மேஜிக் தேவைப்படுகிறது. இது நிறுவப்பட்டிருப்பதை உறுதிசெய்க, அல்லது தனிப்பயன் மாற்று கட்டளைக்கு 'படம்_கன்வெர்ட்டர்' விருப்பத்தை அமைக்கவும். \n\n ட்ரேஸ்பேக்: %கள்" +msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 #, python-format msgid "" "convert exited with error:\n" @@ -2758,319 +2704,314 @@ msgid "" "%r\n" "[stdout]\n" "%r" -msgstr "பிழையுடன் வெளியேறுதல்: \n [stderr] \n %r \n [stdout] \n %r" +msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:66 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" -msgstr "கட்டளை %r ஐ இயக்க முடியாது, பட_கன்வெர்ட்டர் அமைப்பை சரிபார்க்கவும்" +msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:157 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" -msgstr "Latex கட்டளை %R ஐ இயக்க முடியாது (கணித காட்சிக்கு தேவை), imgmath_latex அமைப்பைச் சரிபார்க்கவும்" +msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:172 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" -msgstr "%s கட்டளை %R ஐ இயக்க முடியாது (கணித காட்சிக்கு தேவை), imgmath_ %s அமைப்பை சரிபார்க்கவும்" +msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:326 #, python-format msgid "display latex %r: %s" -msgstr "லேடெக்ஸ் %ஆர்: %கள் காட்சி" +msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:360 #, python-format msgid "inline latex %r: %s" -msgstr "இன்லைன் லேடெக்ஸ் %ஆர்: %கள்" +msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 msgid "Link to this equation" -msgstr "இந்த சமன்பாட்டிற்கான இணைப்பு" +msgstr "" -#: sphinx/ext/intersphinx.py:195 +#: sphinx/ext/intersphinx.py:194 #, python-format msgid "intersphinx inventory has moved: %s -> %s" -msgstr "இன்டெர்ஸ்பின்க்ஸ் சரக்கு நகர்ந்தது: %s -> %s" +msgstr "" -#: sphinx/ext/intersphinx.py:230 +#: sphinx/ext/intersphinx.py:229 #, python-format msgid "loading intersphinx inventory from %s..." -msgstr "%s இலிருந்து இன்டர்ஸ்பின்க்ஸ் சரக்குகளை ஏற்றுகிறது ..." +msgstr "" -#: sphinx/ext/intersphinx.py:244 +#: sphinx/ext/intersphinx.py:243 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" -msgstr "சில சரக்குகளுடன் சில சிக்கல்களை எதிர்கொண்டது, ஆனால் அவர்கள் வேலை மாற்று வழிகளைக் கொண்டிருந்தனர்:" +msgstr "" -#: sphinx/ext/intersphinx.py:250 +#: sphinx/ext/intersphinx.py:249 msgid "failed to reach any of the inventories with the following issues:" -msgstr "பின்வரும் சிக்கல்களுடன் எந்த சரக்குகளையும் அடையத் தவறிவிட்டது:" +msgstr "" -#: sphinx/ext/intersphinx.py:303 +#: sphinx/ext/intersphinx.py:302 #, python-format msgid "(in %s v%s)" -msgstr "( %s v %s இல்)" +msgstr "" -#: sphinx/ext/intersphinx.py:305 +#: sphinx/ext/intersphinx.py:304 #, python-format msgid "(in %s)" -msgstr "( %s இல்)" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:546 +#: sphinx/ext/intersphinx.py:536 #, python-format -msgid "invalid external cross-reference suffix: %r" +msgid "inventory for external cross-reference not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:557 +#: sphinx/ext/intersphinx.py:542 #, python-format -msgid "domain for external cross-reference not found: %r" +msgid "role for external cross-reference not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:750 +#: sphinx/ext/intersphinx.py:633 #, python-format msgid "external %s:%s reference target not found: %s" -msgstr "வெளிப்புற %s: %S குறிப்பு இலக்கு காணப்படவில்லை: %s" +msgstr "" -#: sphinx/ext/intersphinx.py:775 +#: sphinx/ext/intersphinx.py:658 #, python-format msgid "intersphinx identifier %r is not string. Ignored" -msgstr "இன்டர்ஸ்பின்க்ஸ் அடையாளங்காட்டி %ஆர் சரம் அல்ல. புறக்கணிக்கப்பட்டது" +msgstr "" -#: sphinx/ext/intersphinx.py:797 +#: sphinx/ext/intersphinx.py:680 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "Intersphinx_mapph [ %s], புறக்கணிக்கப்பட்டது: %r" +msgstr "" -#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 +#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 msgid "[source]" -msgstr "[மூல]" +msgstr "" -#: sphinx/ext/todo.py:69 +#: sphinx/ext/todo.py:67 msgid "Todo" -msgstr "டோடோ" +msgstr "" -#: sphinx/ext/todo.py:102 +#: sphinx/ext/todo.py:100 #, python-format msgid "TODO entry found: %s" -msgstr "டோடோ நுழைவு காணப்பட்டது: %கள்" +msgstr "" -#: sphinx/ext/todo.py:161 +#: sphinx/ext/todo.py:158 msgid "<<original entry>>" -msgstr "<< அசல் நுழைவு >>" +msgstr "" -#: sphinx/ext/todo.py:163 +#: sphinx/ext/todo.py:160 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" -msgstr "(<< அசல் நுழைவு >> %s, வரி %d இல் அமைந்துள்ளது.)" +msgstr "" -#: sphinx/ext/todo.py:173 +#: sphinx/ext/todo.py:170 msgid "original entry" -msgstr "அசல் நுழைவு" +msgstr "" -#: sphinx/ext/viewcode.py:256 +#: sphinx/ext/viewcode.py:255 msgid "highlighting module code... " -msgstr "தொகுதி குறியீட்டை முன்னிலைப்படுத்துகிறது ..." +msgstr "" -#: sphinx/ext/viewcode.py:284 +#: sphinx/ext/viewcode.py:283 msgid "[docs]" -msgstr "[டாக்ஸ்]" +msgstr "" -#: sphinx/ext/viewcode.py:304 +#: sphinx/ext/viewcode.py:303 msgid "Module code" -msgstr "தொகுதி குறியீடு" +msgstr "" -#: sphinx/ext/viewcode.py:310 +#: sphinx/ext/viewcode.py:309 #, python-format msgid "<h1>Source code for %s</h1>" -msgstr "<h1> %s </h1> க்கான மூலக் குறியீடு" +msgstr "" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:335 msgid "Overview: module code" -msgstr "கண்ணோட்டம்: தொகுதி குறியீடு" +msgstr "" -#: sphinx/ext/viewcode.py:337 +#: sphinx/ext/viewcode.py:336 msgid "<h1>All modules for which code is available</h1>" -msgstr "<H1> எந்த குறியீடு கிடைக்கும் அனைத்து தொகுதிகளும் </H1>" +msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:127 #, python-format msgid "invalid value for member-order option: %s" -msgstr "உறுப்பினர்-வரிசை விருப்பத்திற்கான தவறான மதிப்பு: %கள்" +msgstr "" -#: sphinx/ext/autodoc/__init__.py:143 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for class-doc-from option: %s" -msgstr "வகுப்பு-டாக்-ஃப்ரம் விருப்பத்திற்கான தவறான மதிப்பு: %கள்" +msgstr "" -#: sphinx/ext/autodoc/__init__.py:399 +#: sphinx/ext/autodoc/__init__.py:391 #, python-format msgid "invalid signature for auto%s (%r)" -msgstr "ஆட்டோ%s (%r) க்கான தவறான கையொப்பம்" +msgstr "" -#: sphinx/ext/autodoc/__init__.py:515 +#: sphinx/ext/autodoc/__init__.py:508 #, python-format msgid "error while formatting arguments for %s: %s" -msgstr "%s: %s க்கான வாதங்களை வடிவமைக்கும்போது பிழை" +msgstr "" -#: sphinx/ext/autodoc/__init__.py:798 +#: sphinx/ext/autodoc/__init__.py:777 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" -msgstr "ஆட்டோடோக்:%s.%s (%r) ஐ ஆவணப்படுத்தத் தவறிவிட்டது, பின்வரும் விதிவிலக்கு எழுப்பப்பட்டது: \n %கள்" +msgstr "" -#: sphinx/ext/autodoc/__init__.py:893 +#: sphinx/ext/autodoc/__init__.py:872 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " "\"module\" or \"currentmodule\" directive in the document, or giving an " "explicit module name)" -msgstr "தன்னியக்கமயமாக்கல் %r க்கு எந்த தொகுதி இறக்குமதி செய்ய வேண்டும் என்று தெரியவில்லை (ஆவணத்தில் ஒரு \"தொகுதி\" அல்லது \"தற்போதைய உருவம்\" கட்டளையை வைக்க முயற்சிக்கவும் அல்லது வெளிப்படையான தொகுதி பெயரைக் கொடுக்கவும்)" +msgstr "" -#: sphinx/ext/autodoc/__init__.py:937 +#: sphinx/ext/autodoc/__init__.py:916 #, python-format msgid "A mocked object is detected: %r" -msgstr "கேலி செய்யப்பட்ட பொருள் கண்டறியப்பட்டது: %r" +msgstr "" -#: sphinx/ext/autodoc/__init__.py:956 +#: sphinx/ext/autodoc/__init__.py:935 #, python-format msgid "error while formatting signature for %s: %s" -msgstr "%s: %s க்கான கையொப்பத்தை வடிவமைக்கும்போது பிழை" +msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:996 msgid "\"::\" in automodule name doesn't make sense" -msgstr "\"::\" ஆட்டோமோடூல் பெயரில் அர்த்தமல்ல" +msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1003 #, python-format msgid "signature arguments or return annotation given for automodule %s" -msgstr "தானியங்கு %s க்கு வழங்கப்பட்ட கையொப்ப வாதங்கள் அல்லது திரும்ப சிறுகுறிப்பு" +msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1016 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" -msgstr "__all__ என்பது சரங்களின் பட்டியலாக இருக்க வேண்டும், %R (தொகுதி %s இல்) அல்ல - __all__ ஐ புறக்கணிக்கிறது" +msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1082 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" -msgstr "குறிப்பிடப்பட்ட பண்புக்கூறு பின்வருமாறு: உறுப்பினர்கள்: விருப்பம்: தொகுதி %கள், பண்புக்கூறு %கள்" +msgstr "" -#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 -#: sphinx/ext/autodoc/__init__.py:2824 +#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" -msgstr "%S: %s க்கான செயல்பாட்டு கையொப்பத்தைப் பெறுவதில் தோல்வி" +msgstr "" -#: sphinx/ext/autodoc/__init__.py:1618 +#: sphinx/ext/autodoc/__init__.py:1586 #, python-format msgid "Failed to get a constructor signature for %s: %s" -msgstr "%S: %s க்கு ஒரு கட்டமைப்பாளர் கையொப்பத்தைப் பெறுவதில் தோல்வி" +msgstr "" -#: sphinx/ext/autodoc/__init__.py:1745 +#: sphinx/ext/autodoc/__init__.py:1713 #, python-format msgid "Bases: %s" -msgstr "தளங்கள்: %கள்" +msgstr "" -#: sphinx/ext/autodoc/__init__.py:1759 +#: sphinx/ext/autodoc/__init__.py:1727 #, python-format msgid "missing attribute %s in object %s" -msgstr "பொருள் %s இல் உள்ள பண்புக்கூறு %s" +msgstr "" -#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 -#: sphinx/ext/autodoc/__init__.py:1990 +#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 +#: sphinx/ext/autodoc/__init__.py:1946 #, python-format msgid "alias of %s" -msgstr "%கள் மாற்றுப்பெயர்" +msgstr "" -#: sphinx/ext/autodoc/__init__.py:1878 +#: sphinx/ext/autodoc/__init__.py:1846 #, python-format msgid "alias of TypeVar(%s)" -msgstr "டைப்வாரின் மாற்றுப்பெயர் (%கள்)" +msgstr "" -#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" -msgstr "%S க்கு ஒரு முறை கையொப்பத்தைப் பெறுவதில் தோல்வி: %s" +msgstr "" -#: sphinx/ext/autodoc/__init__.py:2447 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." -msgstr "தவறான __ ஸ்லாட் __ %s இல் காணப்படுகிறது. புறக்கணிக்கப்பட்டது." +msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:190 +#: sphinx/ext/autodoc/preserve_defaults.py:183 #, python-format msgid "Failed to parse a default argument value for %r: %s" -msgstr "%R: %s க்கான இயல்புநிலை வாத மதிப்பை அலசுவதில் தோல்வி" +msgstr "" -#: sphinx/ext/autodoc/type_comment.py:132 +#: sphinx/ext/autodoc/type_comment.py:131 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" -msgstr "%R க்கான கையொப்பத்தை புதுப்பிக்கத் தவறிவிட்டது: அளவுரு காணப்படவில்லை: %s" +msgstr "" -#: sphinx/ext/autodoc/type_comment.py:135 +#: sphinx/ext/autodoc/type_comment.py:134 #, python-format msgid "Failed to parse type_comment for %r: %s" -msgstr "%R: %s க்கு Type_comment ஐ பாகுபடுத்துவதில் தோல்வி" +msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:249 #, python-format msgid "autosummary references excluded document %r. Ignored." -msgstr "தன்னியக்க குறிப்புகள் விலக்கப்பட்ட ஆவணம் %r. புறக்கணிக்கப்பட்டது." +msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." -msgstr "தன்னியக்க: STUB கோப்பு காணப்படவில்லை %r. உங்கள் தன்னியக்க_ஜெனரேட் அமைப்பை சரிபார்க்கவும்." +msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:270 msgid "A captioned autosummary requires :toctree: option. ignored." -msgstr "தலைப்பிடப்பட்ட தன்னியக்க தேவைப்படுகிறது: டோக்ட்ரீ: விருப்பம். புறக்கணிக்கப்பட்டது." +msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:323 #, python-format msgid "" "autosummary: failed to import %s.\n" "Possible hints:\n" "%s" -msgstr "தன்னியக்க: %s ஐ இறக்குமதி செய்வதில் தோல்வி. \n சாத்தியமான குறிப்புகள்: \n %கள்" +msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:337 #, python-format msgid "failed to parse name %s" -msgstr "பெயர் %s என்ற பெயரை அலசத் தவறிவிட்டது" +msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:342 #, python-format msgid "failed to import object %s" -msgstr "பொருள் %s ஐ இறக்குமதி செய்வதில் தோல்வி" +msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:798 #, python-format msgid "autosummary_generate: file not found: %s" -msgstr "autosummary_generate: கோப்பு கிடைக்கவில்லை: %s" +msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:806 msgid "" -"autosummary generates .rst files internally. But your source_suffix does not" -" contain .rst. Skipped." +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3079,17 +3020,17 @@ msgstr "" msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" -msgstr "தன்னியக்க: ஆவணப்படுத்தப்பட வேண்டிய %R ஐ தீர்மானிக்கத் தவறிவிட்டது, பின்வரும் விதிவிலக்கு எழுப்பப்பட்டது: \n %கள்" +msgstr "" #: sphinx/ext/autosummary/generate.py:470 #, python-format msgid "[autosummary] generating autosummary for: %s" -msgstr "[தன்னியக்க] தன்னியக்கத்தை உருவாக்குதல்: %கள்" +msgstr "" #: sphinx/ext/autosummary/generate.py:474 #, python-format msgid "[autosummary] writing to %s" -msgstr "[தன்னியக்க] %கள் எழுதுதல்" +msgstr "" #: sphinx/ext/autosummary/generate.py:517 #, python-format @@ -3097,7 +3038,7 @@ msgid "" "[autosummary] failed to import %s.\n" "Possible hints:\n" "%s" -msgstr "[தன்னியக்க] %s ஐ இறக்குமதி செய்யத் தவறிவிட்டது. \n சாத்தியமான குறிப்புகள்: \n %கள்" +msgstr "" #: sphinx/ext/autosummary/generate.py:690 msgid "" @@ -3112,641 +3053,643 @@ msgid "" "``sphinx.ext.autosummary`` Python module and can be read using::\n" "\n" " pydoc sphinx.ext.autosummary\n" -msgstr "தன்னியக்க வழிமுறைகளைப் பயன்படுத்தி மறுசீரமைப்பு டெக்ஸ்டை உருவாக்கவும். \n\n ஸ்பின்க்ஸ்-ஆட்டோஜென் என்பது sphinx.ext.autosummary.generate க்கு ஒரு முன்னணியில் உள்ளது. இது உருவாக்குகிறது \n இல் உள்ள தன்னியக்க வழிமுறைகளிலிருந்து மறுசீரமைப்பு செய்யப்பட்ட கோப்புகள் \n வழங்கப்பட்ட உள்ளீட்டு கோப்புகள். \n\n தன்னியக்க உத்தரவின் வடிவம் ஆவணப்படுத்தப்பட்டுள்ளது \n `` sphinx.ext.autosummary`` பைதான் தொகுதி மற்றும் பயன்படுத்தி படிக்கலாம் :: \n\n pydoc sphinx.ext.autosummary" +msgstr "" #: sphinx/ext/autosummary/generate.py:707 msgid "source files to generate rST files for" -msgstr "RST கோப்புகளை உருவாக்க மூல கோப்புகள்" +msgstr "" #: sphinx/ext/autosummary/generate.py:711 msgid "directory to place all output in" -msgstr "அனைத்து வெளியீட்டையும் வைக்க கோப்பகம்" +msgstr "" #: sphinx/ext/autosummary/generate.py:714 #, python-format msgid "default suffix for files (default: %(default)s)" -msgstr "கோப்புகளுக்கான இயல்புநிலை பின்னொட்டு (இயல்புநிலை: %(இயல்புநிலை) கள்)" +msgstr "" #: sphinx/ext/autosummary/generate.py:718 #, python-format msgid "custom template directory (default: %(default)s)" -msgstr "தனிப்பயன் வார்ப்புரு அடைவு (இயல்புநிலை: %(இயல்புநிலை) கள்)" +msgstr "" #: sphinx/ext/autosummary/generate.py:722 #, python-format msgid "document imported members (default: %(default)s)" -msgstr "ஆவணம் இறக்குமதி செய்யப்பட்ட உறுப்பினர்கள் (இயல்புநிலை: %(இயல்புநிலை) கள்)" +msgstr "" #: sphinx/ext/autosummary/generate.py:726 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" -msgstr "உறுப்பினர்களை தொகுதி __all__ பண்புக்கூறில் சரியாக ஆவணப்படுத்தவும். (இயல்புநிலை: %(இயல்புநிலை) கள்)" +msgstr "" -#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 +#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 msgid "Keyword Arguments" -msgstr "முக்கிய வாதங்கள்" +msgstr "" -#: sphinx/ext/napoleon/docstring.py:682 +#: sphinx/ext/napoleon/docstring.py:680 msgid "Example" -msgstr "உதாரணமாக" +msgstr "" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:681 msgid "Examples" -msgstr "எடுத்துக்காட்டுகள்" +msgstr "" -#: sphinx/ext/napoleon/docstring.py:744 +#: sphinx/ext/napoleon/docstring.py:742 msgid "Notes" -msgstr "குறிப்புகள்" +msgstr "" -#: sphinx/ext/napoleon/docstring.py:753 +#: sphinx/ext/napoleon/docstring.py:751 msgid "Other Parameters" -msgstr "பிற அளவுருக்கள்" +msgstr "" -#: sphinx/ext/napoleon/docstring.py:789 +#: sphinx/ext/napoleon/docstring.py:787 msgid "Receives" -msgstr "பெறுகிறது" +msgstr "" -#: sphinx/ext/napoleon/docstring.py:793 +#: sphinx/ext/napoleon/docstring.py:791 msgid "References" -msgstr "குறிப்புகள்" +msgstr "" -#: sphinx/ext/napoleon/docstring.py:825 +#: sphinx/ext/napoleon/docstring.py:823 msgid "Warns" -msgstr "எச்சரிக்கைகள்" +msgstr "" -#: sphinx/ext/napoleon/docstring.py:829 +#: sphinx/ext/napoleon/docstring.py:827 msgid "Yields" -msgstr "மகசூல்" +msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "invalid value set (missing closing brace): %s" -msgstr "தவறான மதிப்பு தொகுப்பு (நிறைவு பிரேஸைக் காணவில்லை): %கள்" +msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "invalid value set (missing opening brace): %s" -msgstr "தவறான மதிப்பு தொகுப்பு (தொடக்க பிரேஸைக் காணவில்லை): %கள்" +msgstr "" -#: sphinx/ext/napoleon/docstring.py:1001 +#: sphinx/ext/napoleon/docstring.py:999 #, python-format msgid "malformed string literal (missing closing quote): %s" -msgstr "தவறாக சரம் லிட்டரல் (நிறைவு மேற்கோளைக் காணவில்லை): %கள்" +msgstr "" -#: sphinx/ext/napoleon/docstring.py:1008 +#: sphinx/ext/napoleon/docstring.py:1006 #, python-format msgid "malformed string literal (missing opening quote): %s" -msgstr "தவறான சரம் நேரடி (தொடக்க மேற்கோள்களைக் காணவில்லை" +msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:221 msgid "Attention" -msgstr "கவனம்" +msgstr "" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:222 msgid "Caution" -msgstr "எச்சரிக்கை" +msgstr "" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:223 msgid "Danger" -msgstr "ஆபத்து" +msgstr "" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:224 msgid "Error" -msgstr "பிழை" +msgstr "" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:225 msgid "Hint" -msgstr "குறிப்பு" +msgstr "" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:226 msgid "Important" -msgstr "முக்கியமான" +msgstr "" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:227 msgid "Note" -msgstr "குறிப்பு" +msgstr "" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:228 msgid "See also" -msgstr "மேலும் காண்க" +msgstr "" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:229 msgid "Tip" -msgstr "உதவிக்குறிப்பு" +msgstr "" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:230 msgid "Warning" -msgstr "எச்சரிக்கை" +msgstr "" #: sphinx/templates/latex/longtable.tex_t:52 #: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" -msgstr "முந்தைய பக்கத்திலிருந்து தொடர்கிறது" +msgstr "" #: sphinx/templates/latex/longtable.tex_t:63 #: sphinx/templates/latex/sphinxmessages.sty_t:9 msgid "continues on next page" -msgstr "அடுத்த பக்கத்தில் தொடர்கிறது" +msgstr "" #: sphinx/templates/latex/sphinxmessages.sty_t:10 msgid "Non-alphabetical" -msgstr "மக்கள்தொகை அல்லாத" +msgstr "" #: sphinx/templates/latex/sphinxmessages.sty_t:12 msgid "Numbers" -msgstr "எண்கள்" +msgstr "" #: sphinx/templates/latex/sphinxmessages.sty_t:13 msgid "page" -msgstr "பக்கம்" +msgstr "" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 #: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" -msgstr "உள்ளடக்க அட்டவணை" +msgstr "" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 msgid "Search" -msgstr "தேடல்" +msgstr "" #: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/searchbox.html:16 #: sphinx/themes/basic/searchfield.html:18 msgid "Go" -msgstr "போ" +msgstr "" #: sphinx/themes/agogo/layout.html:90 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" -msgstr "மூலத்தைக் காட்டு" +msgstr "" #: sphinx/themes/basic/defindex.html:11 msgid "Overview" -msgstr "கண்ணோட்டம்" +msgstr "" #: sphinx/themes/basic/defindex.html:15 msgid "Welcome! This is" -msgstr "வரவேற்பு! இது" +msgstr "" #: sphinx/themes/basic/defindex.html:16 msgid "the documentation for" -msgstr "ஆவணங்கள்" +msgstr "" #: sphinx/themes/basic/defindex.html:17 msgid "last updated" -msgstr "கடைசியாக புதுப்பிக்கப்பட்டது" +msgstr "" #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" -msgstr "குறியீடுகள் மற்றும் அட்டவணைகள்:" +msgstr "" #: sphinx/themes/basic/defindex.html:23 msgid "Complete Table of Contents" -msgstr "உள்ளடக்கங்களின் முழுமையான அட்டவணை" +msgstr "" #: sphinx/themes/basic/defindex.html:24 msgid "lists all sections and subsections" -msgstr "அனைத்து பிரிவுகளையும் துணைப்பிரிவுகளையும் பட்டியலிடுகிறது" +msgstr "" #: sphinx/themes/basic/defindex.html:26 msgid "search this documentation" -msgstr "இந்த ஆவணத்தைத் தேடுங்கள்" +msgstr "" #: sphinx/themes/basic/defindex.html:28 msgid "Global Module Index" -msgstr "உலகளாவிய தொகுதி அட்டவணை" +msgstr "" #: sphinx/themes/basic/defindex.html:29 msgid "quick access to all modules" -msgstr "அனைத்து தொகுதிகளுக்கும் விரைவான அணுகல்" +msgstr "" #: sphinx/themes/basic/defindex.html:31 msgid "all functions, classes, terms" -msgstr "அனைத்து செயல்பாடுகள், வகுப்புகள், விதிமுறைகள்" +msgstr "" #: sphinx/themes/basic/genindex-single.html:33 #, python-format msgid "Index – %(key)s" -msgstr "குறியீட்டு & ndash; %(விசைகள்" +msgstr "" #: sphinx/themes/basic/genindex-single.html:61 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 msgid "Full index on one page" -msgstr "ஒரு பக்கத்தில் முழு குறியீடு" +msgstr "" #: sphinx/themes/basic/genindex-split.html:16 msgid "Index pages by letter" -msgstr "கடிதம் மூலம் குறியீட்டு பக்கங்கள்" +msgstr "" #: sphinx/themes/basic/genindex-split.html:25 msgid "can be huge" -msgstr "மிகப்பெரியதாக இருக்க முடியும்" +msgstr "" #: sphinx/themes/basic/layout.html:26 msgid "Navigation" -msgstr "வழிசெலுத்தல்" +msgstr "" #: sphinx/themes/basic/layout.html:126 #, python-format msgid "Search within %(docstitle)s" -msgstr "%(டாக்ஸ்டிடில்) கள் தேடுங்கள்" +msgstr "" #: sphinx/themes/basic/layout.html:135 msgid "About these documents" -msgstr "இந்த ஆவணங்களைப் பற்றி" +msgstr "" #: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 #: sphinx/themes/basic/layout.html:190 msgid "Copyright" -msgstr "பதிப்புரிமை" +msgstr "" #: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." -msgstr "© %(பதிப்புரிமை_பிரெஃபிக்ஸ்) எஸ் %(பதிப்புரிமை) கள்." +msgstr "" #: sphinx/themes/basic/layout.html:212 #, python-format msgid "Last updated on %(last_updated)s." -msgstr "கடைசியாக %(last_updated) s இல் புதுப்பிக்கப்பட்டது." +msgstr "" #: sphinx/themes/basic/layout.html:215 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " "%(sphinx_version)s." -msgstr "<a href=\"https://www.sphinx-doc.org/\"> ஸ்பின்க்ஸ் </மற்றும்> %(ஸ்பின்க்ஸ் பதிப்புகள்." +msgstr "" #: sphinx/themes/basic/opensearch.xml:4 #, python-format msgid "Search %(docstitle)s" -msgstr "தேடல் %(டாக்ஸ்டிடில்) கள்" +msgstr "" #: sphinx/themes/basic/relations.html:12 msgid "Previous topic" -msgstr "முந்தைய தலைப்பு" +msgstr "" #: sphinx/themes/basic/relations.html:14 msgid "previous chapter" -msgstr "முந்தைய அத்தியாயம்" +msgstr "" #: sphinx/themes/basic/relations.html:19 msgid "Next topic" -msgstr "அடுத்த தலைப்பு" +msgstr "" #: sphinx/themes/basic/relations.html:21 msgid "next chapter" -msgstr "அடுத்த அத்தியாயம்" +msgstr "" -#: sphinx/themes/basic/search.html:28 +#: sphinx/themes/basic/search.html:27 msgid "" "Please activate JavaScript to enable the search\n" " functionality." -msgstr "தேடலை இயக்க ஜாவாஸ்கிரிப்டை செயல்படுத்தவும் \n செயல்பாடு." +msgstr "" -#: sphinx/themes/basic/search.html:36 +#: sphinx/themes/basic/search.html:35 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." -msgstr "பல சொற்களைத் தேடுவது காண்பிக்கும் போட்டிகளை மட்டுமே காட்டுகிறது \n அனைத்து வார்த்தைகளும்." +msgstr "" -#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/search.html:42 msgid "search" -msgstr "தேடல்" +msgstr "" + +#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "" + +#: sphinx/themes/basic/search.html:50 +#: sphinx/themes/basic/static/searchtools.js:114 +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 "" #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" -msgstr "விரைவு தேடல்" +msgstr "" #: sphinx/themes/basic/sourcelink.html:12 msgid "This Page" -msgstr "இந்த பக்கம்" +msgstr "" #: sphinx/themes/basic/changes/frameset.html:5 #: sphinx/themes/basic/changes/versionchanges.html:12 #, python-format msgid "Changes in Version %(version)s — %(docstitle)s" -msgstr "பதிப்பு %(பதிப்பு) S — %(டாக்ஸ்டிடில்) கள்" +msgstr "" #: sphinx/themes/basic/changes/rstsource.html:5 #, python-format msgid "%(filename)s — %(docstitle)s" -msgstr "%(கோப்பு பெயர்) எஸ் — %(டாக்ஸ்டிடில்) கள்" +msgstr "" #: sphinx/themes/basic/changes/versionchanges.html:17 #, python-format msgid "Automatically generated list of changes in version %(version)s" -msgstr "பதிப்பு %(பதிப்பு) S இல் மாற்றங்களின் பட்டியல் தானாக உருவாக்கப்படுகிறது" +msgstr "" #: sphinx/themes/basic/changes/versionchanges.html:18 msgid "Library changes" -msgstr "நூலக மாற்றங்கள்" +msgstr "" #: sphinx/themes/basic/changes/versionchanges.html:23 msgid "C API changes" -msgstr "சி ஏபிஐ மாற்றங்கள்" +msgstr "" #: sphinx/themes/basic/changes/versionchanges.html:25 msgid "Other changes" -msgstr "பிற மாற்றங்கள்" - -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "தேடல் முடிவுகள்" - -#: sphinx/themes/basic/static/searchtools.js:114 -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 "" #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." -msgstr "தேடல் முடிந்தது, தேடல் வினவலுடன் பொருந்தக்கூடிய $ {resultCount} பக்கம் (கள்) கிடைத்தது." +msgstr "" -#: sphinx/themes/basic/static/searchtools.js:246 +#: sphinx/themes/basic/static/searchtools.js:217 msgid "Searching" -msgstr "தேடி" +msgstr "" -#: sphinx/themes/basic/static/searchtools.js:262 +#: sphinx/themes/basic/static/searchtools.js:233 msgid "Preparing search..." -msgstr "தேடலைத் தயாரித்தல் ..." +msgstr "" -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:421 msgid ", in " -msgstr ", இல்" +msgstr "" #: sphinx/themes/basic/static/sphinx_highlight.js:112 msgid "Hide Search Matches" -msgstr "தேடல் போட்டிகளை மறைக்கவும்" +msgstr "" #: sphinx/themes/classic/layout.html:20 #: sphinx/themes/classic/static/sidebar.js_t:57 msgid "Collapse sidebar" -msgstr "பக்கப்பட்டி சரிவு" +msgstr "" #: sphinx/themes/classic/static/sidebar.js_t:48 msgid "Expand sidebar" -msgstr "பக்கப்பட்டியை விரிவாக்குங்கள்" +msgstr "" #: sphinx/themes/haiku/layout.html:24 msgid "Contents" -msgstr "உள்ளடக்கங்கள்" +msgstr "" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:126 msgid "could not calculate translation progress!" -msgstr "மொழிபெயர்ப்பு முன்னேற்றத்தை கணக்கிட முடியவில்லை!" +msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:131 msgid "no translated elements!" -msgstr "மொழிபெயர்க்கப்பட்ட கூறுகள் இல்லை!" +msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:238 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" -msgstr "4 நெடுவரிசை அடிப்படையிலான குறியீடு காணப்பட்டது. இது நீங்கள் பயன்படுத்தும் நீட்டிப்புகளின் பிழையாக இருக்கலாம்: %r" +msgstr "" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:277 #, python-format msgid "Footnote [%s] is not referenced." -msgstr "அடிக்குறிப்பு [%கள்] குறிப்பிடப்படவில்லை." +msgstr "" -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:283 msgid "Footnote [#] is not referenced." -msgstr "அடிக்குறிப்பு [#] குறிப்பிடப்படவில்லை." +msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" -msgstr "மொழிபெயர்க்கப்பட்ட செய்தியில் சீரற்ற அடிக்குறிப்பு குறிப்புகள். அசல்: {0}, மொழிபெயர்க்கப்பட்டுள்ளது: {1}" +msgstr "" #: sphinx/transforms/i18n.py:245 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" -msgstr "மொழிபெயர்க்கப்பட்ட செய்தியில் சீரற்ற குறிப்புகள். அசல்: {0}, மொழிபெயர்க்கப்பட்டுள்ளது: {1}" +msgstr "" -#: sphinx/transforms/i18n.py:285 +#: sphinx/transforms/i18n.py:287 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" -msgstr "மொழிபெயர்க்கப்பட்ட செய்தியில் சீரற்ற மேற்கோள் குறிப்புகள். அசல்: {0}, மொழிபெயர்க்கப்பட்டுள்ளது: {1}" +msgstr "" -#: sphinx/transforms/i18n.py:302 +#: sphinx/transforms/i18n.py:304 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" -msgstr "மொழிபெயர்க்கப்பட்ட செய்தியில் சீரற்ற கால குறிப்புகள். அசல்: {0}, மொழிபெயர்க்கப்பட்டுள்ளது: {1}" +msgstr "" #: sphinx/transforms/post_transforms/__init__.py:116 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." -msgstr "குறுக்கு குறிப்புக்கான குறைவடையும் உரையை தீர்மானிக்க முடியவில்லை. ஒரு பிழையாக இருக்கலாம்." +msgstr "" #: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" -msgstr "'எந்த' குறுக்கு-குறிப்பு %r க்கு ஒன்றுக்கு மேற்பட்ட இலக்குகள் காணப்படுகின்றன: %s ஆக இருக்கலாம்" +msgstr "" #: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%s:%s reference target not found: %s" -msgstr "%கள்: %S குறிப்பு இலக்கு காணப்படவில்லை: %s" +msgstr "" #: sphinx/transforms/post_transforms/__init__.py:212 #, python-format msgid "%r reference target not found: %s" -msgstr "%r குறிப்பு இலக்கு காணப்படவில்லை: %கள்" +msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:80 #, python-format msgid "Could not fetch remote image: %s [%d]" -msgstr "தொலை படத்தைப் பெற முடியவில்லை: %கள் [ %d]" +msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:108 #, python-format msgid "Could not fetch remote image: %s [%s]" -msgstr "தொலை படத்தைப் பெற முடியவில்லை: %கள் [ %கள்]" +msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:126 #, python-format msgid "Unknown image format: %s..." -msgstr "அறியப்படாத பட வடிவம்: %கள் ..." +msgstr "" -#: sphinx/util/__init__.py:168 +#: sphinx/util/__init__.py:167 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" -msgstr "தீர்மானிக்க முடியாத மூல எழுத்துக்கள், \"?\"" +msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:77 msgid "skipped" -msgstr "தவிர்க்கப்பட்டது" +msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:82 msgid "failed" -msgstr "தோல்வி" +msgstr "" -#: sphinx/util/docfields.py:87 +#: sphinx/util/docfields.py:88 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." -msgstr "%எஸ் டொமைனில் சிக்கல்: புலம் ' %கள்' பாத்திரத்தைப் பயன்படுத்த வேண்டும், ஆனால் அந்த பங்கு டொமைனில் இல்லை." +msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:311 #, python-format msgid "unknown directive or role name: %s:%s" -msgstr "அறியப்படாத உத்தரவு அல்லது பங்கு பெயர்: %s: %s" +msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:605 #, python-format msgid "unknown node type: %r" -msgstr "அறியப்படாத முனை வகை: %r" +msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:63 #, python-format msgid "reading error: %s, %s" -msgstr "வாசிப்பு பிழை: %கள், %கள்" +msgstr "" -#: sphinx/util/i18n.py:101 +#: sphinx/util/i18n.py:70 #, python-format msgid "writing error: %s, %s" -msgstr "எழுதும் பிழை: %கள், %கள்" +msgstr "" -#: sphinx/util/i18n.py:125 +#: sphinx/util/i18n.py:94 #, python-format msgid "locale_dir %s does not exist" -msgstr "locale_dir %s இல்லை" +msgstr "" -#: sphinx/util/i18n.py:215 +#: sphinx/util/i18n.py:185 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" -msgstr "தவறான தேதி வடிவம். நீங்கள் நேரடியாக வெளியிட விரும்பினால் ஒற்றை மேற்கோள் மூலம் சரத்தை மேற்கோள் காட்டுங்கள்: %கள்" +msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/nodes.py:378 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." -msgstr "குறியீட்டு உள்ளீடுகளுக்கு (நுழைவு %r இலிருந்து) %R நீக்கப்படுகிறது. அதற்கு பதிலாக 'ஜோடி: %கள்' ஐப் பயன்படுத்தவும்." +msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:426 #, python-format msgid "toctree contains ref to nonexisting file %r" -msgstr "டோக்ட்ரீ இல்லாத கோப்பு %r க்கு ரெஃப் உள்ளது" +msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:627 #, python-format msgid "exception while evaluating only directive expression: %s" -msgstr "விதிவிலக்கு மட்டுமே வழிநடத்தும் வெளிப்பாட்டை மட்டுமே மதிப்பிடுகிறது: %கள்" +msgstr "" -#: sphinx/util/rst.py:71 +#: sphinx/util/rst.py:70 #, python-format msgid "default role %s not found" -msgstr "இயல்புநிலை பங்கு %கள் காணப்படவில்லை" +msgstr "" #: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 msgid "Link to this definition" -msgstr "இந்த வரையறைக்கு இணைப்பு" +msgstr "" #: sphinx/writers/html5.py:397 #, python-format msgid "numfig_format is not defined for %s" -msgstr "Numfig_format %s க்கு வரையறுக்கப்படவில்லை" +msgstr "" #: sphinx/writers/html5.py:407 #, python-format msgid "Any IDs not assigned for %s node" -msgstr "%ஒரு முனைக்கு ஒதுக்கப்படவில்லை" +msgstr "" #: sphinx/writers/html5.py:462 msgid "Link to this term" -msgstr "இந்த காலத்திற்கான இணைப்பு" +msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 msgid "Link to this heading" -msgstr "இந்த தலைப்புக்கான இணைப்பு" +msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:494 msgid "Link to this table" -msgstr "இந்த அட்டவணையுடன் இணைப்பு" +msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:537 msgid "Link to this code" -msgstr "இந்த குறியீட்டிற்கான இணைப்பு" +msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:539 msgid "Link to this image" -msgstr "இந்த படத்துடன் இணைப்பு" +msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:541 msgid "Link to this toctree" -msgstr "இந்த டோக்ட்ரீயுடன் இணைக்கவும்" +msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:679 msgid "Could not obtain image size. :scale: option is ignored." -msgstr "பட அளவைப் பெற முடியவில்லை. : அளவு: விருப்பம் புறக்கணிக்கப்படுகிறது." +msgstr "" #: sphinx/writers/latex.py:335 #, python-format msgid "unknown %r toplevel_sectioning for class %r" -msgstr "அறியப்படாத %r toplevel_sectioning class %r" +msgstr "" #: sphinx/writers/latex.py:386 msgid "too large :maxdepth:, ignored." -msgstr "மிகப் பெரியது: மேக்ஸ்டெப்ட் :, புறக்கணிக்கப்பட்டது." +msgstr "" #: sphinx/writers/latex.py:625 msgid "document title is not a single Text node" -msgstr "ஆவண தலைப்பு ஒரு உரை முனை அல்ல" +msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" -msgstr "பிரிவு, தலைப்பு, அட்டவணை, அறிவுரை அல்லது பக்கப்பட்டியில் இல்லாத தலைப்பு முனை" +msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 +#: sphinx/writers/texinfo.py:637 msgid "Footnotes" -msgstr "அடிக்குறிப்புகள்" +msgstr "" #: sphinx/writers/latex.py:1028 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." -msgstr "அட்டவணை மற்றும்: அகலங்கள்: விருப்பம் வழங்கப்படுகின்றன. : அகலம்: புறக்கணிக்கப்படுகிறது." +msgstr "" #: sphinx/writers/latex.py:1388 #, python-format msgid "dimension unit %s is invalid. Ignored." -msgstr "பரிமாண அலகு %s தவறானது. புறக்கணிக்கப்பட்டது." +msgstr "" #: sphinx/writers/latex.py:1722 #, python-format msgid "unknown index entry type %s found" -msgstr "அறியப்படாத குறியீட்டு நுழைவு வகை %கள் காணப்படுகின்றன" +msgstr "" -#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 #, python-format msgid "[image: %s]" -msgstr "[படங்கள்]" +msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 +#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 msgid "[image]" -msgstr "[படம்]" +msgstr "" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." -msgstr "தலைப்பு ஒரு உருவத்திற்குள் இல்லை." +msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1280 #, python-format msgid "unimplemented node type: %r" -msgstr "செயல்படுத்தப்படாத முனை வகை: %r" +msgstr "" diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.js b/sphinx/locale/te/LC_MESSAGES/sphinx.js index add62e0..d21164d 100644 --- a/sphinx/locale/te/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/te/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "", "Hide Search Matches": "", "Index": "", - "Index – %(key)s": "", + "Index – %(key)s": "", "Index pages by letter": "", "Indices and tables:": "", "Last updated on %(last_updated)s.": "", diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.mo b/sphinx/locale/te/LC_MESSAGES/sphinx.mo index 8dbea57..a9d7469 100644 Binary files a/sphinx/locale/te/LC_MESSAGES/sphinx.mo and b/sphinx/locale/te/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.po b/sphinx/locale/te/LC_MESSAGES/sphinx.po index 67baf79..0d34d80 100644 --- a/sphinx/locale/te/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/te/LC_MESSAGES/sphinx.po @@ -7,134 +7,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: Telugu (http://app.transifex.com/sphinx-doc/sphinx-1/language/te/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: te\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,75 +155,77 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -231,78 +233,78 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" @@ -487,190 +489,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -679,7 +833,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" @@ -689,7 +843,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -704,28 +858,28 @@ msgstr "" msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "" @@ -814,7 +968,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -842,12 +996,17 @@ msgstr "" msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -932,7 +1091,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -958,13 +1117,13 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -978,144 +1137,149 @@ msgstr "" msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "" @@ -1141,19 +1305,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "" @@ -1211,18 +1377,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1230,27 +1388,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1262,7 +1399,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1351,7 +1488,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1362,7 +1499,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1644,12 +1781,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1758,12 +1895,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1795,11 +1932,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1827,85 +1964,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "" @@ -1913,7 +2050,7 @@ msgstr "" msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1963,7 +2100,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1978,7 +2115,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -1987,52 +2124,52 @@ msgstr "" msgid "Arguments" msgstr "" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2042,7 +2179,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2079,352 +2216,374 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr "" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "" @@ -2460,17 +2619,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2482,149 +2641,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2665,7 +2846,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2741,7 +2922,7 @@ msgstr "" msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2749,7 +2930,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2759,99 +2940,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" @@ -3027,23 +3148,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3051,46 +3172,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3098,7 +3225,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3113,36 +3240,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" @@ -3199,65 +3391,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "" @@ -3266,7 +3458,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "" @@ -3324,12 +3516,12 @@ msgstr "" msgid "all functions, classes, terms" msgstr "" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" +msgid "Index – %(key)s" msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3348,31 +3540,31 @@ msgstr "" msgid "Navigation" msgstr "" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3475,7 +3667,7 @@ msgstr "" msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr "" @@ -3484,11 +3676,11 @@ msgid "Hide Search Matches" msgstr "" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "" @@ -3496,26 +3688,26 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "" @@ -3564,17 +3756,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3584,11 +3776,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "" @@ -3599,12 +3791,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3631,18 +3823,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3652,45 +3849,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3703,31 +3905,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3741,11 +3948,11 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.js b/sphinx/locale/tr/LC_MESSAGES/sphinx.js index f7bcee8..a89baa3 100644 --- a/sphinx/locale/tr/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/tr/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "Git", "Hide Search Matches": "Arama E\u015fle\u015fmelerini Gizle", "Index": "Dizin", - "Index – %(key)s": "Dizin – %(key)s", + "Index – %(key)s": "", "Index pages by letter": "Harfe g\u00f6re dizin sayfalar\u0131", "Indices and tables:": "Dizinler ve tablolar:", "Last updated on %(last_updated)s.": "Son g\u00fcncelleme: %(last_updated)s.", diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.mo b/sphinx/locale/tr/LC_MESSAGES/sphinx.mo index 168c89d..967d711 100644 Binary files a/sphinx/locale/tr/LC_MESSAGES/sphinx.mo and b/sphinx/locale/tr/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.po b/sphinx/locale/tr/LC_MESSAGES/sphinx.po index 17978bc..b52d612 100644 --- a/sphinx/locale/tr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/tr/LC_MESSAGES/sphinx.po @@ -11,134 +11,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: BouRock, 2020\n" "Language-Team: Turkish (http://app.transifex.com/sphinx-doc/sphinx-1/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "Kaynak dizin bulunamıyor (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "Kaynak dizin ve hedef dizin aynı olamaz" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "Sphinx s%s çalışıyor" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Bu proje en az Sphinx s%s gerektirir ve bu nedenle bu sürüm ile oluşturulamaz." -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "çıktı dizini yapılıyor" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "%s uzantısı ayarlanırken:" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "Şu anda conf.py dosyasında tanımlanan 'kurulum' çağrılabilir bir Python değil. Lütfen tanımını çağrılabilir bir işlev yapmak için değiştirin. Bunun, Sphinx uzantısı gibi davranması için conf.py dosyasına ihtiyacı vardır." -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "çeviriler yükleniyor [%s]... " -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "bitti" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "yerleşik iletiler için kullanılamaz" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "derin temizlenen ortam yükleniyor" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "başarısız olan: %s" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "Seçilen oluşturucu yok, varsayılan kullanılıyor: html" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "başarılı oldu" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "sorunlarla tamamlandı" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "yapım %s, %s uyarı (hata olarak kabul edilen uyarılarla)." -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "yapım %s, %s uyarı (hatalar olarak kabul edilen uyarılarla)." -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "yapım %s, %s uyarı." -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "yapım %s, %s uyarı." -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "yapım %s." -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "düğüm sınıfı %r zaten kayıtlı, ziyaretçileri geçersiz kılınacaktır" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "yönerge %r zaten kayıtlı, geçersiz kılınacaktır" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "rol %r zaten kayıtlı, geçersiz kılınacaktır" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -146,12 +146,12 @@ msgid "" "explicit" msgstr "%s uzantısı paralel okuma için güvenli olup olmadığını bildirmez, olmadığını varsayarak - lütfen uzantıyı hazırlayandan gözden geçirmesini ve açık hale getirmesini isteyin" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "%s uzantısı paralel okuma için güvenli değil" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -159,75 +159,77 @@ msgid "" "explicit" msgstr "%s uzantısı paralel yazma için güvenli olup olmadığını bildirmez, olmadığını varsayarak - lütfen uzantıyı hazırlayandan gözden geçirmesini ve açık hale getirmesini isteyin" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "%s uzantısı paralel yazma için güvenli değil" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "%s seri nosu yapılıyor" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "config dizini bir conf.py dosyası içermiyor (%s)" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "sözlük yapılandırma ayarı %r geçersiz kılınamaz, yoksayılıyor (tek tek öğeleri ayarlamak için %r kullanın)" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "geçersiz sayı %r; yapılandırma değeri %r için; yoksayılıyor" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "desteklenmeyen tür ile yapılandırma ayarı %r geçersiz kılınamaz, yoksayılıyor" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "geçersiz kılmada bilinmeyen yapılandırma değeri %r, yoksayılıyor" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "Yapılandırma değeri %r zaten mevcut" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Yapılandırma dosyanızda bir sözdizimi hatası var: %s\n" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Yapılandırma dosyası (veya içe aktarılan modüllerden biri) sys.exit() olarak adlandırılır" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -235,78 +237,78 @@ msgid "" "%s" msgstr "Yapılandırma dosyanızda programlanabilir bir hata var:\n\n%s" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "'source_suffix' yapılandırma değeri bir dizgi, dizgiler listesi ya da sözlük bekler. Ama '%r' verilir." -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "Bölüm %s" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "Şekil %s" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "Tablo %s" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "Listeleme %s" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "`{name}` yapılandırma değeri, {candidates} geğerlrinden biri olmak zorundadır, ancak `{current}` değeridir." -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "`{name}' yapılandırma değeri `{current.__name__}' türüne sahip; beklenen {permitted}." -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "`{name}' yapılandırma değeri `{current.__name__}' türüne sahip, vassayılanları `{default.__name__}'." -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r bulunamadı, yoksayıldı." -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "Olay %r zaten mevcut" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "Bilinmeyen olay adı: %s" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" @@ -491,190 +493,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "%s.%s ayarı, aranan tema yapılandırmalarının hiçbirinde meydana gelmiyor" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "desteklenmeyen tema seçeneği %r verildi" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "tema yolundaki %r dosyası geçerli bir zip dosyası değil ya da hiç tema içermiyor" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "Yarıda kesildi!" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "Kodlama hatası:" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "Tekrarlama hatası:" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "Özel durum meydana geldi:" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "Bir dahaki sefere daha iyi bir hata iletisi sağlanabilmesi için lütfen bunu bir kullanıcı hatasıysa da bildirin." + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "%s oluşturucu için uygun bir resim bulunamadı: %s (%s)" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "%s oluşturucu için uygun bir resim bulunamadı: %s" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "[mo] oluşturuluyor: " -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "çıktı yazılıyor..." -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "%d po dosyasının tümü" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "belirtilen %d po dosyası için hedefler" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "güncel olmayan %d po dosyası için hedefler" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "tüm kaynak dosyaları" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "komut satırında verilen %r dosyası kaynak dizinin altında değil, yoksayılıyor" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "komut satırında verilen %d kaynak dosyası" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "güncel olmayan %d kaynak dosyası için hedefler" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "[%s] oluşturuluyor:" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "şimdi güncel olmayan dosyalar aranıyor..." -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "%d tane bulundu" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "hiç bulunamadı" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "ortam derin temizleniyor" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "tutarlılık denetleniyor" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "hiçbir hedef güncel değil." -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "güncellenen ortam:" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s eklendi, %s değiştirildi, %s kaldırıldı" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "kaynaklar okunuyor..." -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "yazmak için belge adları: %s" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "belgeler hazırlanıyor" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -683,7 +837,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "kopyalanmış ToC girişi bulundu: %s" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "resimler kopyalanıyor..." @@ -693,7 +847,7 @@ msgstr "resimler kopyalanıyor..." msgid "cannot read image file %r: copying it instead" msgstr "resim dosyası %r okunamıyor: bunun yerine kopyalanıyor" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -708,28 +862,28 @@ msgstr "resim dosyası %r yazılamıyor: %s" msgid "Pillow not found - copying image files" msgstr "Yastık bulunamadı - resim dosyaları kopyalanıyor" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "%s için bilinmeyen mime türü, yoksayılıyor" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "%s dosyası yazılıyor..." @@ -818,7 +972,7 @@ msgstr "yapılandırma değeri \"epub_identifier\", EPUB3 için boş olmamalıd msgid "conf value \"version\" should not be empty for EPUB3" msgstr "yapılandırma değeri \"version\", EPUB3 için boş olmamalıdır" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "geçersiz css_file: %r, yoksayıldı" @@ -846,12 +1000,17 @@ msgstr "ileti katalogları yazılıyor..." msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "Yukarıdaki çıktıda veya %(outdir)s/output.txt içinde herhangi bir hata arayın" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "bozuk bağlantı: %s (%s)" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "Bağlayıcı '%s' bulunamadı" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -936,7 +1095,7 @@ msgstr "Makefile dosyası yazılırken hata oldu: %s" msgid "The text files are in %(outdir)s." msgstr "Metin dosyaları %(outdir)s içinde." -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -962,13 +1121,13 @@ msgstr "oluşturma bilgisi dosyası bozuldu: %r" msgid "The HTML pages are in %(outdir)s." msgstr "HTML sayfaları %(outdir)s içinde." -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "oluşturma bilgisi dosyasını okuma başarısız: %r" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -982,144 +1141,149 @@ msgstr "Genel Dizin" msgid "index" msgstr "dizin" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "sonraki" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "önceki" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "dizinler oluşturuluyor" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "ilave sayfalar yazılıyor" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "indirilebilir dosyalar kopyalanıyor..." -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "indirilebilir dosya %r kopyalanamıyor: %s" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "sabit dosya %r kopyalanamıyor" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "fazladan dosyalar kopyalanıyor" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "fazladan dosya %r kopyalanamıyor..." -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "oluşturma bilgisi dosyasını yazma başarısız: %r" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "arama dizini yüklenemedi, ancak tüm belgeler oluşturulmayacaktır: dizin tamamlanmamış olacaktır." -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "sayfa %s html_sidebars içinde iki şekille eşleşiyor: %r ve %r" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "%s sayfasını işlerken bir Evrensel kod hatası meydana geldi. Lütfen ASCII olmayan içerik içeren tüm yapılandırma değerlerinin Evrensel kod dizgiler olduğundan emin olun." -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "%s sayfasını işlerken bir hata oldu.\nSebep: %r" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "nesne envanteri dökümleniyor" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "%s içinde arama dizini dökümleniyor" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "geçersiz js_file: %r, yoksayıldı" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "Birçok math_renderers kayıtlı. Ama hiç math_renderer seçilmedi." -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "Bilinmeyen math_renderer %r verildi." -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "html_extra_path girişi %r mevcut değil" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "html_extra_path girişi %r, çıktı dizini içine yerleştirildi" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "html_static_path girişi %r mevcut değil" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "html_static_path girişi %r, çıktı dizini içine yerleştirildi" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "logo dosyası %r mevcut değil" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "favicon dosyası %r mevcut değil" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "%s %s belgelendirmesi" @@ -1145,19 +1309,21 @@ msgstr "hiçbir \"latex_documents\" yapılandırma değeri bulunamadı; hiçbir msgid "\"latex_documents\" config value references unknown document %s" msgstr "\"latex_documents\" yapılandırma değeri bilinmeyen %s belgesine başvurur" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "Dizin" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "Yayım" @@ -1215,18 +1381,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "Oluşturulurken meydana gelen özel durum, hata ayıklayıcı başlatılıyor:" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "Yarıda kesildi!" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "reST biçimlendirme hatası:" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "Kodlama hatası:" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1234,27 +1392,6 @@ msgid "" "the developers." msgstr "Sorunu geliştiricilere bildirmek istiyorsanız, tam geri izleme %s içine kaydedildi." -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "Tekrarlama hatası:" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "Özel durum meydana geldi:" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "Bir dahaki sefere daha iyi bir hata iletisi sağlanabilmesi için lütfen bunu bir kullanıcı hatasıysa da bildirin." - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1266,7 +1403,7 @@ msgid "job number should be a positive number" msgstr "iş numarası pozitif bir sayı olmalıdır" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1355,7 +1492,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "etiketi tanımla: \"sadece\" TAG'li blokları dahil et" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1366,7 +1503,7 @@ msgstr "konsol çıktısı seçenekleri" msgid "increase verbosity (can be repeated)" msgstr "ayrıntı seviyesini artır (tekrarlanabilir)" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "stdout üzerinde çıktı yok, stderr üzerinde sadece uyarılar" @@ -1648,12 +1785,12 @@ msgstr "Makefile oluşturulsun mu? (y/n)" msgid "Create Windows command file? (y/n)" msgstr "Windows komut satırı oluşturulsun mu? (y/n)" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "%s dosyası oluşturuluyor." -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "%s dosyası zaten var, atlanıyor." @@ -1762,12 +1899,12 @@ msgstr "epub kullan" msgid "Extension options" msgstr "Uzantı seçenekleri" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "%s uzantısını etkinleştir" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "rasgele uzantıları etkinleştir" @@ -1799,11 +1936,11 @@ msgstr "Makefile/make.bat için make-mode kullan" msgid "do not use make-mode for Makefile/make.bat" msgstr "Makefile/make.bat için make-mode kullanma" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "Proje şablonlama" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "şablon dosyaları için şablon dizini" @@ -1831,85 +1968,85 @@ msgstr "sfenks-quickstart sadece boş bir dizin içine oluşturur. Lütfen yeni msgid "Invalid template variable: %s" msgstr "Geçersiz şablon değişkeni: %s" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "Geçersiz resim yazısı: %s" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "satır numarası özellikleri aralık dışında (1-%d): %r" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "Hem \"%s\" hem de \"%s\" seçeneği kullanılamıyor" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "Dahil edilen %r dosyası bulunamadı ya da dosyayı okuma başarısız oldu" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "%r kodlamasının kullanıldığı, dahil edilen %r dosyasını okuma yanlış gibi görünüyor, bir :encoding: seçeneği vermeyi deneyin" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "%r adlı nesne, dahil edilen %r dosyasında bulunamadı" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "Ayrık bir \"satır\" kümesiyle \"lineno-match\" kullanılamıyor" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "Satır özelliği %r: dahil edilen %r dosyasından çekilen hiç satır yok" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "toctree, hariç tutulan %r belgesine başvuru içeriyor" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "toctree, varolmayan %r belgesine başvuru içeriyor" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "Bölümü hazırlayan: " -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "Modülü hazırlayan: " -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "Kodu hazırlayan: " -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "Hazırlayan: " @@ -1917,7 +2054,7 @@ msgstr "Hazırlayan: " msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1967,7 +2104,7 @@ msgstr "Alıntı [%s] kaynak gösterilmedi." msgid "%s() (built-in function)" msgstr "%s() (yerleşik işlev)" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s yöntemi)" @@ -1982,7 +2119,7 @@ msgstr "%s() (sınıf)" msgid "%s (global variable or constant)" msgstr "%s (genel değişken veya sabit)" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s özniteliği)" @@ -1991,52 +2128,52 @@ msgstr "%s (%s özniteliği)" msgid "Arguments" msgstr "Bağımsız Değişkenler" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "Şunu verir: " -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "Dönüşler" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "Dönüş türü" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "%s (modül)" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "işlevi" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "yöntemi" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "sınıfı" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "verisi" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "özniteliği" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "modülü" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "kopya %s açıklamasına ait %s, diğer %s, %s içinde" @@ -2046,7 +2183,7 @@ msgstr "kopya %s açıklamasına ait %s, diğer %s, %s içinde" msgid "duplicate label of equation %s, other instance in %s" msgstr "%s denkleminin kopya etiketi, %s içindeki diğer örnek" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "Geçersiz math_eqref_format: %r" @@ -2083,352 +2220,374 @@ msgstr "rolü" msgid "duplicate description of %s %s, other instance in %s" msgstr "%s %s kopya açıklaması, %s içindeki diğer örnek" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "Parametreler" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "üyesi" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "değişkeni" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "makrosu" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "birliği" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "enum" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "numaralandırıcı" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "türü" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "Şablon Parametreleri" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "kavramı" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s modülü içinde)" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "%s (%s modülü içinde)" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "%s (yerleşik değişken)" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "%s (yerleşik sınıf)" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "%s (%s içindeki sınıf)" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s sınıf yöntemi)" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s sabit yöntemi)" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "Python Modül Dizini" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "modülleri" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "Kullanım dışı" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "özel durum" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "sınıf yöntemi" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "sabit yöntemi" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "çapraz referans %r için birden fazla hedef bulundu: %s" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr " (kullanım dışı)" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "Değişkenler" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "Harekete geçirir" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "ortam değişkeni; %s" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "Hatalı biçimlendirilmiş seçenek açıklaması %r, \"opt\", \"-opt args\", \"--opt args\", \"/opt args\" veya \"+opt args\" şeklinde görünmelidir" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "%s komut satırı seçeneği" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "komut satırı seçeneği" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "sözlük teriminden önce boş satır gelmek zorundadır" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "sözlük terimleri boş satırlarla ayrılmamak zorundadır" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "sözlük yanlış biçimlendirilmiş gibi görünüyor, girintiyi gözden geçirin" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "sözlük terimi" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "dilbilgisi belirteci" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "başvuru etiketi" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "ortam değişkeni" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "program seçeneği" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "belge" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "Modül Dizini" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Arama Sayfası" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "%s kopya etiketi, %s içindeki diğer örnek" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "kopya %s açıklamasına ait %s, %s içindeki diğer örnek " -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig etkisizleştirildi. :numref: yoksayıldı." -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "bağlantının resim yazısı yok: %s" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "geçersiz numfig_format: %s (%r)" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "geçersiz numfig_format: %s" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "yeni yapılandırma" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "yapılandırma değişti" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "uzantılar değişti" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "yapım ortamı sürümü şu anki değil" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "kaynak dizin değişti" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "Bu ortam seçilen oluşturucuyla uyumsuzdur, lütfen başka bir belge ağacı dizini seçin." -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "%s içinde belgeleri tarama başarısız oldu: %r" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "Etki alanı %r kayıtlı değil" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "belge herhangi bir toctree içine dahil değil" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "kendinden kaynaklı toctree bulundu. Yoksayıldı." -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "bakınız %s" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "ayrıca bakınız %s" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "bilinmeyen dizin girişi türü %r" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "Semboller" @@ -2464,17 +2623,17 @@ msgstr "%s resim dosyası okunabilir değil: %s" msgid "download file not readable: %s" msgstr "indirme dosyası okunabilir değil: %s" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "%s zaten atanmış bölüm numaralarıdır (iç içe numaralı toctree mi?)" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "%s dosyası oluşturur." -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2486,149 +2645,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "\nPython modülleri ve paketleri için <MODULE_PATH> içine art arda bakın ve <OUTPUT_PATH> içindeki\npaket başına otomodül talimatlarını içeren bir reST dosyası oluşturun.\n\n<EXCLUDE_PATTERN>'ler, nesilden hariç tutulacak olan dosya ve/veya dizin şekilleri olabilir.\n\nNot: Varsayılan olarak bu betik zaten oluşturulmuş dosyaların üzerine yazmayacak." -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "belge için modüle giden yol" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "nesilden hariç tutmak için fnmatch-style dosyası ve/veya dizin şekilleri" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "tüm çıktıların yerleştirileceği dizin" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "TOC'da gösterilecek alt modüllerin en fazla derinliği (varsayılan: 4)" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "varolan dosyaların üzerine yaz" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "sembolik bağlantıları takip edin. Collective.recipe.omelette ile birleştirildiğinde güçlü." -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "dosyaları oluşturmadan betiği çalıştır" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "her modül için belgelendirmeyi kendi sayfasına koy" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "\"_private\" modülleri dahil" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "içindekiler dosyası adı (varsayılan: modüller)" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "içindekiler tablosu oluşturma" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "modül/paket paketleri için başlıklar oluşturma (örn. docstrings zaten bunları içerdiğinde)" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "modül belgelerini alt modül belgelerinin önüne koyun" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "modül yollarını PEP-0420 kapalı ad alanları özelliklerine göre yorumla" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "dosya soneki (varsayılan: rst)" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "sphinx-quickstart ile tam bir proje oluştur" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "--full yazıldığında, append module_path to sys.path, kullanılır" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "proje adı (varsayılan: kök modül adı)" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "--full yazıldığında, proje hazırlayan(lar)ı kullanılır" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "--full yazıldığında, proje sürümü kullanılır" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "--full yazıldığında, varsayılanı to --doc-version, proje yayımı kullanılır" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "uzantı seçenekleri" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "%s bir dizin değil." +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2669,7 +2850,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2745,7 +2926,7 @@ msgstr "[grafik: %s]" msgid "[graph]" msgstr "[grafik]" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2753,7 +2934,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2763,99 +2944,39 @@ msgid "" "%r" msgstr "dönüştürmeden hata ile çıkıldı:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "dönüştürme komutu %r çalıştırılamaz, image_converter ayarını gözden geçirin" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "LaTeX komutu %r çalıştırılamaz (matematik görüntüleme için gerekli), imgmath_latex ayarını gözden geçirin" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "%s komutu %r çalıştırılamaz (matematik görüntüleme için gerekli), imgmath_%s ayarını gözden geçirin" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "görüntü latex %r: %s" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "satır içi latex %r: %s" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "intersphinx envanteri taşındı: %s -> %s" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "%s konumundan intersphinx envanteri yükleniyor..." - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "aşağıdaki sorunlardan dolayı envanterlerden herhangi birine ulaşılamadı:" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "(%s v%s içinde)" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "(%s içinde)" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[kaynak]" @@ -3031,23 +3152,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3055,46 +3176,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3102,7 +3229,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3117,36 +3244,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "aşağıdaki sorunlardan dolayı envanterlerden herhangi birine ulaşılamadı:" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "intersphinx envanteri taşındı: %s -> %s" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "(%s v%s içinde)" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "(%s içinde)" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" @@ -3203,65 +3395,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "Dikkat" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "Uyarı" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "Tehlike" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "Hata" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "İpucu" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "Önemli" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "Not" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "Ayrıca bakınız" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "Tüyo" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "Uyarı" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "önceki sayfadan devam" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "sonraki sayfaya devam" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "Alfabetik olmayan" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "Numaralar" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "sayfa" @@ -3270,7 +3462,7 @@ msgstr "sayfa" msgid "Table of Contents" msgstr "İçindekiler" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Ara" @@ -3328,12 +3520,12 @@ msgstr "tüm modüllere hızlı erişim" msgid "all functions, classes, terms" msgstr "tüm işlevler, sınıflar, terimler" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" -msgstr "Dizin – %(key)s" +msgid "Index – %(key)s" +msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3352,31 +3544,31 @@ msgstr "çok büyük olabilir" msgid "Navigation" msgstr "Gezinti" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "%(docstitle)s içinde ara" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "Bu belgeler hakkında" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "Telif hakkı" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Son güncelleme: %(last_updated)s." -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3479,7 +3671,7 @@ msgstr "Aranıyor" msgid "Preparing search..." msgstr "Aramaya hazırlanıyor..." -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr ", şunun içinde:" @@ -3488,11 +3680,11 @@ msgid "Hide Search Matches" msgstr "Arama Eşleşmelerini Gizle" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "Yan çubuğu daralt" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "Yan çubuğu genişlet" @@ -3500,26 +3692,26 @@ msgstr "Yan çubuğu genişlet" msgid "Contents" msgstr "İçindekiler" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "" @@ -3568,17 +3760,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "Bilinmeyen resim biçimi: %s..." @@ -3588,11 +3780,11 @@ msgstr "Bilinmeyen resim biçimi: %s..." msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "atlandı" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "başarısız oldu" @@ -3603,12 +3795,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3635,18 +3827,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3656,45 +3853,50 @@ msgstr "" msgid "default role %s not found" msgstr "varsayılan rol %s bulunamadı" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3707,31 +3909,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "Dipnotlar" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3745,11 +3952,11 @@ msgstr "[resim: %s]" msgid "[image]" msgstr "[resim]" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.js b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.js index bc4a88e..279943c 100644 --- a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "\u0412\u043f\u0435\u0440\u0435\u0434", "Hide Search Matches": "\u041f\u0440\u0438\u0445\u043e\u0432\u0430\u0442\u0438 \u0441\u043f\u0456\u0432\u043f\u0430\u0434\u0456\u043d\u043d\u044f \u043f\u043e\u0448\u0443\u043a\u0443", "Index": "\u0406\u043d\u0434\u0435\u043a\u0441", - "Index – %(key)s": "\u0406\u043d\u0434\u0435\u043a\u0441 – %(key)s", + "Index – %(key)s": "", "Index pages by letter": "\u0406\u043d\u0434\u0435\u043a\u0441\u043d\u0456 \u0441\u0442\u043e\u0440\u0456\u043d\u043a\u0438 \u043f\u043e \u0441\u0438\u043c\u0432\u043e\u043b\u0430\u043c", "Indices and tables:": "\u0406\u043d\u0434\u0435\u043a\u0441\u0438 \u0442\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u0456:", "Last updated on %(last_updated)s.": "\u0412\u043e\u0441\u0442\u0430\u043d\u043d\u0454 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043e %(last_updated)s.", diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo index d5d8713..8cd57d8 100644 Binary files a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo and b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po index aa18ce2..3108d9a 100644 --- a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po @@ -8,134 +8,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Petro Sasnyk <petro@sasnyk.name>, 2009\n" "Language-Team: Ukrainian (Ukraine) (http://app.transifex.com/sphinx-doc/sphinx-1/language/uk_UA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: uk_UA\n" "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,75 +156,77 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -232,78 +234,78 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" @@ -488,190 +490,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -680,7 +834,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" @@ -690,7 +844,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -705,28 +859,28 @@ msgstr "" msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "" @@ -815,7 +969,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -843,12 +997,17 @@ msgstr "" msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -933,7 +1092,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -959,13 +1118,13 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -979,144 +1138,149 @@ msgstr "Загальний індекс" msgid "index" msgstr "індекс" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "наступний" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "попередній" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "" @@ -1142,19 +1306,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "Індекс" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "Реліз" @@ -1212,18 +1378,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1231,27 +1389,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1263,7 +1400,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1352,7 +1489,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1363,7 +1500,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1645,12 +1782,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1759,12 +1896,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1796,11 +1933,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1828,85 +1965,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "Автор секції: " -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "Автор модуля: " -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "Автор: " @@ -1914,7 +2051,7 @@ msgstr "Автор: " msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1964,7 +2101,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (вбудована функція)" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s метод)" @@ -1979,7 +2116,7 @@ msgstr "%s() (клас)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s атрибут)" @@ -1988,52 +2125,52 @@ msgstr "%s (%s атрибут)" msgid "Arguments" msgstr "" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "Повертає" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "Тип повернення" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "%s (модуль)" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "функція" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "клас" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "атрибут" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "модуль" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2043,7 +2180,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2080,352 +2217,374 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "Параметри" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "член" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "макрос" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "тип" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "%s() (в модулі %s)" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "%s (в модулі %s)" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "%s (вбудована змінна)" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "%s (вбудований клас)" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "%s (клас в %s)" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s статичний метод)" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "модулі" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "Застарілий" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "виняткова ситуація" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "статичний метод" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr " (застарілий)" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "Викликає" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "змінна оточення; %s" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "змінна оточення" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "Індекс модулів" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Сторінка пошуку" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "" @@ -2461,17 +2620,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2483,149 +2642,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2666,7 +2847,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2742,7 +2923,7 @@ msgstr "" msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2750,7 +2931,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2760,99 +2941,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" @@ -3028,23 +3149,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3052,46 +3173,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3099,7 +3226,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3114,36 +3241,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" @@ -3200,65 +3392,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "Увага" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "Застереження" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "Небезпека" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "Помилка" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "Підказка" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "Важливо" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "Примітка" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "Дивись також" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "Порада" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "Попередження" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "" @@ -3267,7 +3459,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Пошук" @@ -3325,12 +3517,12 @@ msgstr "швидкий доступ до всіх модулів" msgid "all functions, classes, terms" msgstr "всі функції, класи, терміни" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" -msgstr "Індекс – %(key)s" +msgid "Index – %(key)s" +msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3349,31 +3541,31 @@ msgstr "може бути величезним" msgid "Navigation" msgstr "Навігація" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "Шукати в %(docstitle)s" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "Про ці документи" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "Авторські права" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Востаннє оновлено %(last_updated)s." -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3476,7 +3668,7 @@ msgstr "" msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr "" @@ -3485,11 +3677,11 @@ msgid "Hide Search Matches" msgstr "Приховати співпадіння пошуку" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "" @@ -3497,26 +3689,26 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "" @@ -3565,17 +3757,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3585,11 +3777,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "" @@ -3600,12 +3792,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3632,18 +3824,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3653,45 +3850,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3704,31 +3906,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3742,11 +3949,11 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.js b/sphinx/locale/ur/LC_MESSAGES/sphinx.js index 6154577..9a2d3c0 100644 --- a/sphinx/locale/ur/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/ur/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "", "Hide Search Matches": "", "Index": "", - "Index – %(key)s": "", + "Index – %(key)s": "", "Index pages by letter": "", "Indices and tables:": "", "Last updated on %(last_updated)s.": "", diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.mo b/sphinx/locale/ur/LC_MESSAGES/sphinx.mo index 95a540d..6c3cfcb 100644 Binary files a/sphinx/locale/ur/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ur/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.po b/sphinx/locale/ur/LC_MESSAGES/sphinx.po index c1ced15..559137b 100644 --- a/sphinx/locale/ur/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ur/LC_MESSAGES/sphinx.po @@ -7,134 +7,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: Urdu (http://app.transifex.com/sphinx-doc/sphinx-1/language/ur/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: ur\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,75 +155,77 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -231,78 +233,78 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" @@ -487,190 +489,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -679,7 +833,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" @@ -689,7 +843,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -704,28 +858,28 @@ msgstr "" msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "" @@ -814,7 +968,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -842,12 +996,17 @@ msgstr "" msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -932,7 +1091,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -958,13 +1117,13 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -978,144 +1137,149 @@ msgstr "" msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "" @@ -1141,19 +1305,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "" @@ -1211,18 +1377,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1230,27 +1388,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1262,7 +1399,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1351,7 +1488,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1362,7 +1499,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1644,12 +1781,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1758,12 +1895,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1795,11 +1932,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1827,85 +1964,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "" @@ -1913,7 +2050,7 @@ msgstr "" msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1963,7 +2100,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1978,7 +2115,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -1987,52 +2124,52 @@ msgstr "" msgid "Arguments" msgstr "" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2042,7 +2179,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2079,352 +2216,374 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr "" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "" @@ -2460,17 +2619,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2482,149 +2641,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2665,7 +2846,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2741,7 +2922,7 @@ msgstr "" msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2749,7 +2930,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2759,99 +2940,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" @@ -3027,23 +3148,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3051,46 +3172,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3098,7 +3225,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3113,36 +3240,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" @@ -3199,65 +3391,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "" @@ -3266,7 +3458,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "" @@ -3324,12 +3516,12 @@ msgstr "" msgid "all functions, classes, terms" msgstr "" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" +msgid "Index – %(key)s" msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3348,31 +3540,31 @@ msgstr "" msgid "Navigation" msgstr "" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3475,7 +3667,7 @@ msgstr "" msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr "" @@ -3484,11 +3676,11 @@ msgid "Hide Search Matches" msgstr "" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "" @@ -3496,26 +3688,26 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "" @@ -3564,17 +3756,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3584,11 +3776,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "" @@ -3599,12 +3791,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3631,18 +3823,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3652,45 +3849,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3703,31 +3905,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3741,11 +3948,11 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.js b/sphinx/locale/vi/LC_MESSAGES/sphinx.js index c66cf85..c28ea06 100644 --- a/sphinx/locale/vi/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/vi/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "Th\u1ef1c hi\u1ec7n", "Hide Search Matches": "", "Index": "", - "Index – %(key)s": "Ch\u1ec9 m\u1ee5c – %(key)s", + "Index – %(key)s": "", "Index pages by letter": "C\u00e1c trang ch\u1ec9 m\u1ee5c theo ch\u1eef c\u00e1i", "Indices and tables:": "C\u00e1c ch\u1ec9 m\u1ee5c v\u00e0 b\u1ea3ng bi\u1ec3u:", "Last updated on %(last_updated)s.": "C\u1eadp nh\u1eadt m\u1edbi nh\u1ea5t v\u00e0o %(last_updated)s.", diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.mo b/sphinx/locale/vi/LC_MESSAGES/sphinx.mo index f361bb6..8e4fae6 100644 Binary files a/sphinx/locale/vi/LC_MESSAGES/sphinx.mo and b/sphinx/locale/vi/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.po b/sphinx/locale/vi/LC_MESSAGES/sphinx.po index 2a39ab5..0e27bf9 100644 --- a/sphinx/locale/vi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/vi/LC_MESSAGES/sphinx.po @@ -8,134 +8,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Hoat Le Van <hoatlevan@gmail.com>, 2014\n" "Language-Team: Vietnamese (http://app.transifex.com/sphinx-doc/sphinx-1/language/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,75 +156,77 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -232,78 +234,78 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" @@ -488,190 +490,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -680,7 +834,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" @@ -690,7 +844,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -705,28 +859,28 @@ msgstr "" msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "" @@ -815,7 +969,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -843,12 +997,17 @@ msgstr "" msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -933,7 +1092,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -959,13 +1118,13 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -979,144 +1138,149 @@ msgstr "Chỉ mục chung" msgid "index" msgstr "chỉ mục" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "xem tiếp" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "xem lại" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "Tài liệu %s %s" @@ -1142,19 +1306,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "" @@ -1212,18 +1378,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1231,27 +1389,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1263,7 +1400,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1352,7 +1489,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1363,7 +1500,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1645,12 +1782,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1759,12 +1896,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1796,11 +1933,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1828,85 +1965,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "Tác giả mục:" -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "Tác giả mô-đun:" -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "Tác giả mã lệnh:" -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "Tác giả:" @@ -1914,7 +2051,7 @@ msgstr "Tác giả:" msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1964,7 +2101,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (hàm dựng sẵn)" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "%s() (phương thức %s)" @@ -1979,7 +2116,7 @@ msgstr "%s() (lớp)" msgid "%s (global variable or constant)" msgstr "%s (biến toàn cục hoặc hằng số)" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "%s (thuộc tính %s)" @@ -1988,52 +2125,52 @@ msgstr "%s (thuộc tính %s)" msgid "Arguments" msgstr "Đối số" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "Ném" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "Trả về" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "Kiểu trả về" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "%s (mô-đun)" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "hàm" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "phương thức" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "lớp" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "dữ liệu" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "thuộc tính" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "mô-đun" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2043,7 +2180,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2080,352 +2217,374 @@ msgstr "vai trò" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "Tham số" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "thuộc tính" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "biến" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "macro" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "kiểu" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "%s() (trong mô-đun %s)" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "%s (trong mô-đun %s)" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "%s (biến dựng sẵn)" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "%s (lớp dựng sẵn)" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "%s (lớp trong %s)" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "%s() (phương thức lớp %s)" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "%s() (phương thức tĩnh %s)" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "Chỉ Mục Mô-đun Python" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "các mô-đun" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "Sắp loại bỏ" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "ngoại lệ" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "phương thức lớp" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "phương thức tĩnh" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr "(sắp loại bỏ)" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "Các biến" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "Đưa ra" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "các biến môi trường; %s" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "chú giải thuật ngữ" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "xem %s" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "nên xem %s" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "Biểu tượng" @@ -2461,17 +2620,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2483,149 +2642,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2666,7 +2847,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2742,7 +2923,7 @@ msgstr "" msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2750,7 +2931,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2760,99 +2941,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" @@ -3028,23 +3149,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3052,46 +3173,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3099,7 +3226,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3114,36 +3241,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" @@ -3200,65 +3392,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "Chú ý" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "Cảnh báo" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "Nguy hiểm" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "Lỗi" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "Gợi ý" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "Quan trọng" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "Ghi chú" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "Xem thêm" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "Mẹo" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "Cảnh báo" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "" @@ -3267,7 +3459,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Tìm Kiếm" @@ -3325,12 +3517,12 @@ msgstr "truy cập nhanh tất cả các mô-đun" msgid "all functions, classes, terms" msgstr "tất cả các hàm, lớp, thuật ngữ" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" -msgstr "Chỉ mục – %(key)s" +msgid "Index – %(key)s" +msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3349,31 +3541,31 @@ msgstr "có thể rất nhiều" msgid "Navigation" msgstr "Điều hướng" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "Tìm kiếm trong %(docstitle)s" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "Về các tài liệu này" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "Bản quyền" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "Cập nhật mới nhất vào %(last_updated)s." -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3476,7 +3668,7 @@ msgstr "" msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr "" @@ -3485,11 +3677,11 @@ msgid "Hide Search Matches" msgstr "" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "" @@ -3497,26 +3689,26 @@ msgstr "" msgid "Contents" msgstr "Nội dung" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "" @@ -3565,17 +3757,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3585,11 +3777,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "" @@ -3600,12 +3792,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3632,18 +3824,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3653,45 +3850,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3704,31 +3906,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3742,11 +3949,11 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.js b/sphinx/locale/yue/LC_MESSAGES/sphinx.js index 4ca1190..568b1bb 100644 --- a/sphinx/locale/yue/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/yue/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "", "Hide Search Matches": "", "Index": "", - "Index – %(key)s": "", + "Index – %(key)s": "", "Index pages by letter": "", "Indices and tables:": "", "Last updated on %(last_updated)s.": "", diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.mo b/sphinx/locale/yue/LC_MESSAGES/sphinx.mo index bd6aca7..b6b6ab2 100644 Binary files a/sphinx/locale/yue/LC_MESSAGES/sphinx.mo and b/sphinx/locale/yue/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.po b/sphinx/locale/yue/LC_MESSAGES/sphinx.po index 0f7f88d..e92334d 100644 --- a/sphinx/locale/yue/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/yue/LC_MESSAGES/sphinx.po @@ -7,134 +7,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: Cantonese (http://app.transifex.com/sphinx-doc/sphinx-1/language/yue/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: yue\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,75 +155,77 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -231,78 +233,78 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" @@ -487,190 +489,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -679,7 +833,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" @@ -689,7 +843,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -704,28 +858,28 @@ msgstr "" msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "" @@ -814,7 +968,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -842,12 +996,17 @@ msgstr "" msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -932,7 +1091,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -958,13 +1117,13 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -978,144 +1137,149 @@ msgstr "" msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "" @@ -1141,19 +1305,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "" @@ -1211,18 +1377,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1230,27 +1388,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1262,7 +1399,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1351,7 +1488,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1362,7 +1499,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1644,12 +1781,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1758,12 +1895,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1795,11 +1932,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1827,85 +1964,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "" @@ -1913,7 +2050,7 @@ msgstr "" msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1963,7 +2100,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1978,7 +2115,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -1987,52 +2124,52 @@ msgstr "" msgid "Arguments" msgstr "" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2042,7 +2179,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2079,352 +2216,374 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr "" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "" @@ -2460,17 +2619,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2482,149 +2641,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2665,7 +2846,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2741,7 +2922,7 @@ msgstr "" msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2749,7 +2930,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2759,99 +2940,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" @@ -3027,23 +3148,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3051,46 +3172,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3098,7 +3225,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3113,36 +3240,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" @@ -3199,65 +3391,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "" @@ -3266,7 +3458,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "" @@ -3324,12 +3516,12 @@ msgstr "" msgid "all functions, classes, terms" msgstr "" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" +msgid "Index – %(key)s" msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3348,31 +3540,31 @@ msgstr "" msgid "Navigation" msgstr "" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3475,7 +3667,7 @@ msgstr "" msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr "" @@ -3484,11 +3676,11 @@ msgid "Hide Search Matches" msgstr "" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "" @@ -3496,26 +3688,26 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "" @@ -3564,17 +3756,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3584,11 +3776,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "" @@ -3599,12 +3791,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3631,18 +3823,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3652,45 +3849,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3703,31 +3905,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3741,11 +3948,11 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.js b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.js index 4e316f2..601917a 100644 --- a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "", "Hide Search Matches": "", "Index": "", - "Index – %(key)s": "", + "Index – %(key)s": "", "Index pages by letter": "", "Indices and tables:": "", "Last updated on %(last_updated)s.": "", diff --git a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo index 131d174..5b8c586 100644 Binary files a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo and b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po index 74aad20..594f79d 100644 --- a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po @@ -7,134 +7,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: Chinese (Hong Kong) (http://app.transifex.com/sphinx-doc/sphinx-1/language/zh_HK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,75 +155,77 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -231,78 +233,78 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" @@ -487,190 +489,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -679,7 +833,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" @@ -689,7 +843,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -704,28 +858,28 @@ msgstr "" msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "" @@ -814,7 +968,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -842,12 +996,17 @@ msgstr "" msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -932,7 +1091,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -958,13 +1117,13 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -978,144 +1137,149 @@ msgstr "" msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "" @@ -1141,19 +1305,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "" @@ -1211,18 +1377,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1230,27 +1388,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1262,7 +1399,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1351,7 +1488,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1362,7 +1499,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1644,12 +1781,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1758,12 +1895,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1795,11 +1932,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1827,85 +1964,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "" @@ -1913,7 +2050,7 @@ msgstr "" msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1963,7 +2100,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1978,7 +2115,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -1987,52 +2124,52 @@ msgstr "" msgid "Arguments" msgstr "" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2042,7 +2179,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2079,352 +2216,374 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr "" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "" @@ -2460,17 +2619,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2482,149 +2641,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2665,7 +2846,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2741,7 +2922,7 @@ msgstr "" msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2749,7 +2930,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2759,99 +2940,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" @@ -3027,23 +3148,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3051,46 +3172,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3098,7 +3225,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3113,36 +3240,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" @@ -3199,65 +3391,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "" @@ -3266,7 +3458,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "" @@ -3324,12 +3516,12 @@ msgstr "" msgid "all functions, classes, terms" msgstr "" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" +msgid "Index – %(key)s" msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3348,31 +3540,31 @@ msgstr "" msgid "Navigation" msgstr "" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3475,7 +3667,7 @@ msgstr "" msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr "" @@ -3484,11 +3676,11 @@ msgid "Hide Search Matches" msgstr "" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "" @@ -3496,26 +3688,26 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "" @@ -3564,17 +3756,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3584,11 +3776,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "" @@ -3599,12 +3791,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3631,18 +3823,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3652,45 +3849,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3703,31 +3905,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3741,11 +3948,11 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.js b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.js index ef157aa..fe1db78 100644 --- a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "", "Hide Search Matches": "", "Index": "", - "Index – %(key)s": "", + "Index – %(key)s": "", "Index pages by letter": "", "Indices and tables:": "", "Last updated on %(last_updated)s.": "", diff --git a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo index 4a4c5d3..dbf604f 100644 Binary files a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo and b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po index 40634ca..0cf19a2 100644 --- a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po @@ -7,134 +7,134 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: Chinese (Taiwan) (Big5) (http://app.transifex.com/sphinx-doc/sphinx-1/language/zh_TW.Big5/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: zh_TW.Big5\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,75 +155,77 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" msgstr "" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -231,78 +233,78 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" @@ -487,190 +489,342 @@ msgstr "" msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" msgstr "" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "" + +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "" @@ -679,7 +833,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" @@ -689,7 +843,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -704,28 +858,28 @@ msgstr "" msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "" -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "" @@ -814,7 +968,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -842,12 +996,17 @@ msgstr "" msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -932,7 +1091,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -958,13 +1117,13 @@ msgstr "" msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -978,144 +1137,149 @@ msgstr "" msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "" @@ -1141,19 +1305,21 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "" @@ -1211,18 +1377,10 @@ msgstr "" msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1230,27 +1388,6 @@ msgid "" "the developers." msgstr "" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1262,7 +1399,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "" @@ -1351,7 +1488,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1362,7 +1499,7 @@ msgstr "" msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "" @@ -1644,12 +1781,12 @@ msgstr "" msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "" @@ -1758,12 +1895,12 @@ msgstr "" msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "" @@ -1795,11 +1932,11 @@ msgstr "" msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "" @@ -1827,85 +1964,85 @@ msgstr "" msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "" @@ -1913,7 +2050,7 @@ msgstr "" msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr "" @@ -1963,7 +2100,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1978,7 +2115,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -1987,52 +2124,52 @@ msgstr "" msgid "Arguments" msgstr "" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" @@ -2042,7 +2179,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2079,352 +2216,374 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr "" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "" @@ -2460,17 +2619,17 @@ msgstr "" msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2482,149 +2641,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2665,7 +2846,7 @@ msgstr "" msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2741,7 +2922,7 @@ msgstr "" msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2749,7 +2930,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2759,99 +2940,39 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "" - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" @@ -3027,23 +3148,23 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3051,46 +3172,52 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3098,7 +3225,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3113,36 +3240,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" @@ -3199,65 +3391,65 @@ msgstr "" msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "" @@ -3266,7 +3458,7 @@ msgstr "" msgid "Table of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "" @@ -3324,12 +3516,12 @@ msgstr "" msgid "all functions, classes, terms" msgstr "" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" +msgid "Index – %(key)s" msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3348,31 +3540,31 @@ msgstr "" msgid "Navigation" msgstr "" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "" -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "" -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3475,7 +3667,7 @@ msgstr "" msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr "" @@ -3484,11 +3676,11 @@ msgid "Hide Search Matches" msgstr "" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "" @@ -3496,26 +3688,26 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "" @@ -3564,17 +3756,17 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "" @@ -3584,11 +3776,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "" @@ -3599,12 +3791,12 @@ msgid "" "not in the domain." msgstr "" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "" @@ -3631,18 +3823,23 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3652,45 +3849,50 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3703,31 +3905,36 @@ msgstr "" msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3741,11 +3948,11 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js index 8551239..78b4f66 100644 --- a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js @@ -20,7 +20,7 @@ Documentation.addTranslations({ "Go": "\u524d\u5f80", "Hide Search Matches": "\u96b1\u85cf\u7b26\u5408\u641c\u5c0b", "Index": "\u7d22\u5f15", - "Index – %(key)s": "\u7d22\u5f15 – %(key)s", + "Index – %(key)s": "", "Index pages by letter": "\u6309\u5b57\u6bcd\u7d22\u5f15\u9801\u9762", "Indices and tables:": "\u7d22\u5f15\u8207\u8868\u683c\uff1a", "Last updated on %(last_updated)s.": "\u6700\u5f8c\u66f4\u65b0\u65bc %(last_updated)s\u3002", diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo index d776f36..2005e5b 100644 Binary files a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo and b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po index 06f15e6..ec15df9 100644 --- a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po @@ -10,139 +10,139 @@ # Hsiaoming Yang <me@lepture.com>, 2018 # Liang-Bo Wang <me@liang2.tw>, 2016 # Liang-Bo Wang <me@liang2.tw>, 2016-2017 -# Steven Hsu <hsuhaochun@gmail.com>, 2021-2023 +# Steven Hsu <hsuhaochun@gmail.com>, 2021-2024 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-04-14 23:27+0000\n" +"POT-Creation-Date: 2024-07-15 04:59+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" -"Last-Translator: Steven Hsu <hsuhaochun@gmail.com>, 2021-2023\n" +"Last-Translator: Steven Hsu <hsuhaochun@gmail.com>, 2021-2024\n" "Language-Team: Chinese (Taiwan) (http://app.transifex.com/sphinx-doc/sphinx-1/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.15.0\n" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: sphinx/application.py:157 +#: sphinx/application.py:181 #, python-format msgid "Cannot find source directory (%s)" msgstr "找不到來源資料夾 (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:185 #, python-format msgid "Output directory (%s) is not a directory" msgstr "輸出資料夾 (%s) 不是一個資料夾" -#: sphinx/application.py:165 +#: sphinx/application.py:189 msgid "Source directory and destination directory cannot be identical" msgstr "來源資料夾與目的資料夾不能為相同" -#: sphinx/application.py:197 +#: sphinx/application.py:221 #, python-format msgid "Running Sphinx v%s" msgstr "正在執行 Sphinx v%s 版本" -#: sphinx/application.py:219 +#: sphinx/application.py:243 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "本專案需要 Sphinx v%s 版或以上,故無法以現版本編譯。" -#: sphinx/application.py:235 +#: sphinx/application.py:259 msgid "making output directory" msgstr "正在建立輸出目錄" -#: sphinx/application.py:240 sphinx/registry.py:450 +#: sphinx/application.py:264 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "正在設置擴充套件 %s 時:" -#: sphinx/application.py:246 +#: sphinx/application.py:270 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "目前在 conf.py 裡定義的 'setup' 並非一個 Python 的可呼叫物件。請將其定義修改為一個可呼叫的函式。若要使 conf.py 以 Sphinx 擴充套件的方式運作,這個修改是必須的。" -#: sphinx/application.py:277 +#: sphinx/application.py:305 #, python-format msgid "loading translations [%s]... " msgstr "正在載入翻譯 [%s]..." -#: sphinx/application.py:294 sphinx/util/display.py:85 +#: sphinx/application.py:322 sphinx/util/display.py:90 msgid "done" msgstr "完成" -#: sphinx/application.py:296 +#: sphinx/application.py:324 msgid "not available for built-in messages" msgstr "不是有效的內建訊息" -#: sphinx/application.py:310 +#: sphinx/application.py:338 msgid "loading pickled environment" msgstr "正在載入已 pickle 的環境" -#: sphinx/application.py:318 +#: sphinx/application.py:346 #, python-format msgid "failed: %s" msgstr "失敗:%s" -#: sphinx/application.py:332 +#: sphinx/application.py:359 msgid "No builder selected, using default: html" msgstr "沒有指定 builder,使用預設:html" -#: sphinx/application.py:365 +#: sphinx/application.py:392 msgid "succeeded" msgstr "成功" -#: sphinx/application.py:366 +#: sphinx/application.py:393 msgid "finished with problems" msgstr "完成但有問題" -#: sphinx/application.py:370 +#: sphinx/application.py:397 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "建立 %s,%s 警告(警告被視為錯誤)。" -#: sphinx/application.py:372 +#: sphinx/application.py:399 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "建立 %s,%s 警告(警告被視為錯誤)。" -#: sphinx/application.py:375 +#: sphinx/application.py:402 #, python-format msgid "build %s, %s warning." msgstr "建立 %s,%s 警告。" -#: sphinx/application.py:377 +#: sphinx/application.py:404 #, python-format msgid "build %s, %s warnings." msgstr "建立 %s,%s 警告。" -#: sphinx/application.py:381 +#: sphinx/application.py:408 #, python-format msgid "build %s." msgstr "建立 %s。" -#: sphinx/application.py:610 +#: sphinx/application.py:643 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "node class %r 已經被註冊,它的訪客將會被覆寫" -#: sphinx/application.py:689 +#: sphinx/application.py:722 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "指令 %r 已經被註冊,它將會被覆寫" -#: sphinx/application.py:711 sphinx/application.py:733 +#: sphinx/application.py:744 sphinx/application.py:769 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "role %r 已經被註冊,它將會被覆寫" -#: sphinx/application.py:1282 +#: sphinx/application.py:1317 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -150,12 +150,12 @@ msgid "" "explicit" msgstr "%s 擴充套件並未宣告平行讀取是否安全,假設為否 - 請尋求擴充套件作者以檢查並明確表示" -#: sphinx/application.py:1286 +#: sphinx/application.py:1321 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "%s 擴充套件對於平行讀取是不安全的" -#: sphinx/application.py:1289 +#: sphinx/application.py:1324 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -163,75 +163,77 @@ msgid "" "explicit" msgstr "%s 擴充套件並未宣告平行寫入是否安全,假設為否 - 請尋求擴充套件作者以檢查並明確表示" -#: sphinx/application.py:1293 +#: sphinx/application.py:1328 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "%s 擴充套件對於平行寫入是不安全的" -#: sphinx/application.py:1301 sphinx/application.py:1305 +#: sphinx/application.py:1336 sphinx/application.py:1340 #, python-format msgid "doing serial %s" msgstr "執行串列 %s" -#: sphinx/config.py:309 +#: sphinx/config.py:314 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "config 資料夾沒有包含 conf.py 檔案 (%s)" -#: sphinx/config.py:318 +#: sphinx/config.py:323 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "找到無效的組態值: 'language = None' 。請以一個有效的語言碼更新您的配置。跳回 'en' (英語)。" -#: sphinx/config.py:341 +#: sphinx/config.py:346 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "無法覆寫資料夾組態設定 %r,忽略中(使用 %r 來設定個別元素)" -#: sphinx/config.py:350 +#: sphinx/config.py:355 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "無效的數字 %r 於組態值 %r,忽略中" -#: sphinx/config.py:355 +#: sphinx/config.py:361 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "無法以未支援的型別覆寫組態設定 %r,忽略中" -#: sphinx/config.py:378 +#: sphinx/config.py:382 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "覆寫未知的組態值 %r,忽略中" -#: sphinx/config.py:418 +#: sphinx/config.py:435 #, python-format msgid "No such config value: %r" -msgstr "" +msgstr "缺少此組態值:%r" -#: sphinx/config.py:440 +#: sphinx/config.py:458 #, python-format msgid "Config value %r already present" msgstr "組態值 %r 已經存在" -#: sphinx/config.py:473 +#: sphinx/config.py:494 #, python-format -msgid "cannot cache unpickable configuration value: %r" -msgstr "" +msgid "" +"cannot cache unpickable configuration value: %r (because it contains a " +"function, class, or module object)" +msgstr "無法快取可拆的 (unpickable) 組態值:%r(因為它包含了一個函式、類別或模組物件)" -#: sphinx/config.py:509 +#: sphinx/config.py:531 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "在您的組態檔中有一個語法錯誤:%s\n" -#: sphinx/config.py:512 +#: sphinx/config.py:534 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "組態檔(或它 import 的其中一個模組)呼叫了 sys.exit()" -#: sphinx/config.py:519 +#: sphinx/config.py:541 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -239,78 +241,78 @@ msgid "" "%s" msgstr "在您的組態檔中有一個程式化錯誤:\n\n%s" -#: sphinx/config.py:540 +#: sphinx/config.py:564 #, python-format msgid "Failed to convert %r to a set or tuple" -msgstr "" +msgstr "無法將 %r 轉換為集合或元組" -#: sphinx/config.py:565 +#: sphinx/config.py:589 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "組態值 `source_suffix' 預期是一個字串、一組字串,或字典。但是 `%r' 被給予。" -#: sphinx/config.py:585 +#: sphinx/config.py:608 #, python-format msgid "Section %s" msgstr "章節 %s" -#: sphinx/config.py:586 +#: sphinx/config.py:609 #, python-format msgid "Fig. %s" msgstr "圖 %s" -#: sphinx/config.py:587 +#: sphinx/config.py:610 #, python-format msgid "Table %s" msgstr "表格 %s" -#: sphinx/config.py:588 +#: sphinx/config.py:611 #, python-format msgid "Listing %s" msgstr "列表 %s" -#: sphinx/config.py:663 +#: sphinx/config.py:686 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "組態值 `{name}` 必須是 {candidates} 的其中之一,但 `{current}` 被給予。" -#: sphinx/config.py:687 +#: sphinx/config.py:710 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "組態值 `{name}' 有 `{current.__name__}' 型別;預期 {permitted} 。" -#: sphinx/config.py:700 +#: sphinx/config.py:723 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "組態值 `{name}' 有 `{current.__name__}' 型別;預設為 `{default.__name__}' 。" -#: sphinx/config.py:711 +#: sphinx/config.py:734 #, python-format msgid "primary_domain %r not found, ignored." msgstr "找不到 primary_domain %r,已略過。" -#: sphinx/config.py:723 +#: sphinx/config.py:746 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "從 v2.0 開始,Sphinx 預設使用 \"index\" 作為 root_doc。請在您的 conf.py 加上 \"root_doc = 'contents'\"。" -#: sphinx/events.py:64 +#: sphinx/events.py:65 #, python-format msgid "Event %r already present" msgstr "事件 %r 已經存在" -#: sphinx/events.py:70 +#: sphinx/events.py:71 #, python-format msgid "Unknown event name: %s" msgstr "未知的事件名稱:%s" -#: sphinx/events.py:109 +#: sphinx/events.py:110 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "對於事件 %r 的 handler %r 拋出了一個例外" @@ -495,190 +497,342 @@ msgstr "無效的 PEP 號碼 %s" msgid "invalid RFC number %s" msgstr "無效的 RFC 號碼 %s" -#: sphinx/theming.py:125 +#: sphinx/theming.py:128 +#, python-format +msgid "" +"Theme configuration sections other than [theme] and [options] are not " +"supported, returning the default value instead (tried to get a value from " +"%r)" +msgstr "與 [theme] 和 [options] 不同的主題組態段落不被支援,改為回傳預設值(嘗試從 %r 取值)" + +#: sphinx/theming.py:136 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "設定 %s。%s 不在已被搜尋的主題組態中出現" -#: sphinx/theming.py:140 +#: sphinx/theming.py:151 #, python-format msgid "unsupported theme option %r given" msgstr "未支援的主題選項 %r 被給予" -#: sphinx/theming.py:206 +#: sphinx/theming.py:224 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "主題路徑中的檔案 %r 不是有效的 zipfile 或未包含主題" -#: sphinx/theming.py:226 +#: sphinx/theming.py:245 #, python-format msgid "no theme named %r found (missing theme.toml?)" -msgstr "" +msgstr "找不到名稱為 %r 的主題(遺失 theme.toml?)" -#: sphinx/theming.py:259 +#: sphinx/theming.py:285 #, python-format msgid "The %r theme has circular inheritance" -msgstr "" +msgstr "%r 主題有循環繼承" -#: sphinx/theming.py:262 +#: sphinx/theming.py:292 #, python-format msgid "" "The %r theme inherits from %r, which is not a loaded theme. Loaded themes " "are: %s" -msgstr "" +msgstr "%r 主題是從 %r 繼承的,而它不是一個已載入的主題。已載入的主題是:%s" -#: sphinx/theming.py:269 +#: sphinx/theming.py:299 #, python-format msgid "The %r theme has too many ancestors" -msgstr "" +msgstr "%r 主題有太多上代 (ancestor)" -#: sphinx/theming.py:295 +#: sphinx/theming.py:325 #, python-format msgid "no theme configuration file found in %r" -msgstr "" +msgstr "在 %r 中找不到主題的組態檔" -#: sphinx/theming.py:323 sphinx/theming.py:374 +#: sphinx/theming.py:353 sphinx/theming.py:404 #, python-format msgid "theme %r doesn't have the \"theme\" table" -msgstr "" +msgstr "主題 %r 內沒有 \"theme\" 表格" -#: sphinx/theming.py:327 +#: sphinx/theming.py:357 #, python-format msgid "The %r theme \"[theme]\" table is not a table" -msgstr "" +msgstr "%r 主題的 \"[theme]\" 表格不是一個表格" -#: sphinx/theming.py:331 sphinx/theming.py:377 +#: sphinx/theming.py:361 sphinx/theming.py:407 #, python-format msgid "The %r theme must define the \"theme.inherit\" setting" -msgstr "" +msgstr "%r 主題必須定義 \"theme.inherit\" 的設定" -#: sphinx/theming.py:335 +#: sphinx/theming.py:365 #, python-format msgid "The %r theme \"[options]\" table is not a table" -msgstr "" +msgstr "%r 主題的 \"[options]\" 表格不是一個表格" -#: sphinx/theming.py:353 +#: sphinx/theming.py:383 #, python-format msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" -msgstr "" +msgstr "\"theme.pygments_style\" 設定必須是一個表格。提示:\"%s\"" + +#: sphinx/_cli/__init__.py:72 +msgid "Usage:" +msgstr "使用:" + +#: sphinx/_cli/__init__.py:74 +msgid "{0} [OPTIONS] <COMMAND> [<ARGS>]" +msgstr "{0} [OPTIONS] <COMMAND> [<ARGS>]" + +#: sphinx/_cli/__init__.py:77 +msgid " The Sphinx documentation generator." +msgstr "Sphinx 說明文件產生器。" + +#: sphinx/_cli/__init__.py:85 +msgid "Commands:" +msgstr "指令:" + +#: sphinx/_cli/__init__.py:96 +msgid "Options" +msgstr "選項" + +#: sphinx/_cli/__init__.py:107 sphinx/_cli/__init__.py:175 +msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/." +msgstr "如需更多資訊,請參閱 https://www.sphinx-doc.org/en/master/man/。" + +#: sphinx/_cli/__init__.py:164 +msgid "" +"{0}: error: {1}\n" +"Run '{0} --help' for information" +msgstr "{0}: 錯誤: {1}\n執行 '{0} --help' 取得更多資訊" + +#: sphinx/_cli/__init__.py:174 +msgid " Manage documentation with Sphinx." +msgstr "以 Sphinx 管理說明文件。" + +#: sphinx/_cli/__init__.py:183 +msgid "Show the version and exit." +msgstr "顯示版本並離開。" + +#: sphinx/_cli/__init__.py:189 +msgid "Show this message and exit." +msgstr "顯示此訊息並離開。" + +#: sphinx/_cli/__init__.py:193 +msgid "Logging" +msgstr "登錄" + +#: sphinx/_cli/__init__.py:199 +msgid "Increase verbosity (can be repeated)" +msgstr "增加詳細內容(可以重複)" + +#: sphinx/_cli/__init__.py:206 +msgid "Only print errors and warnings." +msgstr "只印出錯誤及警告。" + +#: sphinx/_cli/__init__.py:213 +msgid "No output at all" +msgstr "完全沒有輸出" + +#: sphinx/_cli/__init__.py:219 +msgid "<command>" +msgstr "<command>" -#: sphinx/builders/__init__.py:183 +#: sphinx/_cli/__init__.py:248 +msgid "See 'sphinx --help'.\n" +msgstr "請參閱 'sphinx --help'。\n" + +#: sphinx/_cli/util/errors.py:119 +msgid "Exception occurred, starting debugger:" +msgstr "發生例外,正在啟動除錯器:" + +#: sphinx/_cli/util/errors.py:124 sphinx/cmd/build.py:61 +msgid "Interrupted!" +msgstr "已中斷!" + +#: sphinx/_cli/util/errors.py:128 +msgid "reStructuredText markup error:" +msgstr "reStructuredText 標示錯誤:" + +#: sphinx/_cli/util/errors.py:138 sphinx/cmd/build.py:69 +msgid "Encoding error:" +msgstr "編碼錯誤:" + +#: sphinx/_cli/util/errors.py:143 sphinx/cmd/build.py:76 +msgid "Recursion error:" +msgstr "遞迴錯誤:" + +#: sphinx/_cli/util/errors.py:146 sphinx/cmd/build.py:79 +msgid "" +"This can happen with very large or deeply nested source files. You can " +"carefully increase the default Python recursion limit of 1000 in conf.py " +"with e.g.:" +msgstr "這會發生在非常大或是巢套較深的原始檔案。您可以在 conf.py 中謹慎地增加 Python 的預設 1000 次遞迴上限,例如:" + +#: sphinx/_cli/util/errors.py:156 sphinx/cmd/build.py:84 +msgid "Exception occurred:" +msgstr "發生例外:" + +#: sphinx/_cli/util/errors.py:159 +msgid "The full traceback has been saved in:" +msgstr "完整的回溯已儲存於:" + +#: sphinx/_cli/util/errors.py:162 +msgid "" +"To report this error to the developers, please open an issue at " +"<https://github.com/sphinx-doc/sphinx/issues/>. Thanks!" +msgstr "要向開發者回報此錯誤,請在 <https://github.com/sphinx-doc/sphinx/issues/> 開啟一個 issue。謝謝!" + +#: sphinx/_cli/util/errors.py:164 sphinx/cmd/build.py:90 +msgid "" +"Please also report this if it was a user error, so that a better error " +"message can be provided next time." +msgstr "如果這是一個使用者錯誤,請一併回報,如此下次才能提供較佳的錯誤訊息。" + +#: sphinx/builders/__init__.py:184 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "未找到對於 %s builder 適用的圖片:%s (%s)" -#: sphinx/builders/__init__.py:187 +#: sphinx/builders/__init__.py:188 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "未找到對於 %s builder 適用的圖片:%s" -#: sphinx/builders/__init__.py:207 +#: sphinx/builders/__init__.py:208 msgid "building [mo]: " msgstr "建立 [mo]:" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 -#: sphinx/builders/__init__.py:601 +#: sphinx/builders/__init__.py:209 sphinx/builders/__init__.py:618 +#: sphinx/builders/__init__.py:645 msgid "writing output... " msgstr "編寫輸出..." -#: sphinx/builders/__init__.py:217 +#: sphinx/builders/__init__.py:218 #, python-format msgid "all of %d po files" msgstr "所有的 %d po 檔" -#: sphinx/builders/__init__.py:235 +#: sphinx/builders/__init__.py:236 #, python-format msgid "targets for %d po files that are specified" msgstr "對於指定的 po 檔 %d 的目標" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are out of date" msgstr "對於已過期 po 檔 %d 的目標" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:254 msgid "all source files" msgstr "所有原始檔案" -#: sphinx/builders/__init__.py:262 +#: sphinx/builders/__init__.py:265 #, python-format msgid "file %r given on command line does not exist, " msgstr "在命令列給的檔案 %r 不存在," -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "在命令列給的檔案 %r 不在來源資料夾下,忽略中" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:276 #, python-format msgid "file %r given on command line is not a valid document, ignoring" msgstr "在命令列給的檔案 %r 不是有效的文件,忽略中" -#: sphinx/builders/__init__.py:282 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "在命令列給了 %d 個原始檔案" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:298 #, python-format msgid "targets for %d source files that are out of date" msgstr "%d 個過時原始檔案的目標" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 +#: sphinx/builders/__init__.py:314 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "正在建立 [%s]:" -#: sphinx/builders/__init__.py:316 +#: sphinx/builders/__init__.py:321 msgid "looking for now-outdated files... " msgstr "正在尋找目前已過期的檔案..." -#: sphinx/builders/__init__.py:320 +#: sphinx/builders/__init__.py:325 #, python-format msgid "%d found" msgstr "已找到 %d" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:327 msgid "none found" msgstr "找不到任何結果" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:332 msgid "pickling environment" msgstr "正在 pickle 環境" -#: sphinx/builders/__init__.py:333 +#: sphinx/builders/__init__.py:338 msgid "checking consistency" msgstr "正在檢查一致性" -#: sphinx/builders/__init__.py:337 +#: sphinx/builders/__init__.py:342 msgid "no targets are out of date." msgstr "沒有過時的目標。" -#: sphinx/builders/__init__.py:376 +#: sphinx/builders/__init__.py:382 msgid "updating environment: " msgstr "正在更新環境:" -#: sphinx/builders/__init__.py:397 +#: sphinx/builders/__init__.py:403 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s 已新增, %s 已變更, %s 已移除" -#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 +#: sphinx/builders/__init__.py:436 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches a " +"built-in exclude pattern %r. Please move your master document to a different" +" location." +msgstr "" + +#: sphinx/builders/__init__.py:443 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it matches an " +"exclude pattern specified in conf.py, %r. Please remove this pattern from " +"conf.py." +msgstr "" + +#: sphinx/builders/__init__.py:452 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s) because it is not included" +" in the custom include_patterns = %r. Ensure that a pattern in " +"include_patterns matches the master document." +msgstr "" + +#: sphinx/builders/__init__.py:457 +#, python-format +msgid "" +"Sphinx is unable to load the master document (%s). The master document must " +"be within the source directory or a subdirectory of it." +msgstr "" + +#: sphinx/builders/__init__.py:472 sphinx/builders/__init__.py:484 msgid "reading sources... " msgstr "正在讀取來源..." -#: sphinx/builders/__init__.py:549 +#: sphinx/builders/__init__.py:593 #, python-format msgid "docnames to write: %s" msgstr "待寫入的 docname: %s" -#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 +#: sphinx/builders/__init__.py:602 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "正在準備文件" -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:605 msgid "copying assets" msgstr "正在複製資產 (asset)" @@ -687,7 +841,7 @@ msgstr "正在複製資產 (asset)" msgid "duplicated ToC entry found: %s" msgstr "找到了重複的 ToC 項目: %s" -#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:759 #: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "正在複製圖片..." @@ -697,7 +851,7 @@ msgstr "正在複製圖片..." msgid "cannot read image file %r: copying it instead" msgstr "無法讀取圖片檔 %r: 正在複製它做為替代" -#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:767 #: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" @@ -712,28 +866,28 @@ msgstr "無法寫入圖片檔 %r: %s" msgid "Pillow not found - copying image files" msgstr "未找到 Pillow - 正在複製圖片檔" -#: sphinx/builders/_epub_base.py:470 +#: sphinx/builders/_epub_base.py:476 msgid "writing mimetype file..." msgstr "正在寫入 mimetype 檔案..." -#: sphinx/builders/_epub_base.py:475 +#: sphinx/builders/_epub_base.py:481 msgid "writing META-INF/container.xml file..." msgstr "正在寫入 META-INF/container.xml 檔案..." -#: sphinx/builders/_epub_base.py:508 +#: sphinx/builders/_epub_base.py:514 msgid "writing content.opf file..." msgstr "正在寫入 content.opf 檔案..." -#: sphinx/builders/_epub_base.py:539 +#: sphinx/builders/_epub_base.py:545 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "對於 %s 未知的 mimetype,忽略中" -#: sphinx/builders/_epub_base.py:686 +#: sphinx/builders/_epub_base.py:692 msgid "writing toc.ncx file..." msgstr "正在寫入 toc.ncx 檔案..." -#: sphinx/builders/_epub_base.py:711 +#: sphinx/builders/_epub_base.py:717 #, python-format msgid "writing %s file..." msgstr "正在寫入 %s 檔案..." @@ -822,7 +976,7 @@ msgstr "conf 值 \"epub_identifier\" 在 EPUB3 不應該為空" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "conf 值 \"version\" 在 EPUB3 不應該為空" -#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1189 #, python-format msgid "invalid css_file: %r, ignored" msgstr "無效的 css_file: %r, 已略過" @@ -850,12 +1004,17 @@ msgstr "正在寫入訊息目錄..." msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "尋找以上輸出或 %(outdir)s/output.txt 中的任何錯誤" -#: sphinx/builders/linkcheck.py:137 +#: sphinx/builders/linkcheck.py:139 #, python-format msgid "broken link: %s (%s)" msgstr "錯誤連結: %s (%s)" -#: sphinx/builders/linkcheck.py:660 +#: sphinx/builders/linkcheck.py:484 +#, python-format +msgid "Anchor '%s' not found" +msgstr "未找到錨 '%s'" + +#: sphinx/builders/linkcheck.py:695 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "在 linkcheck_allowed_redirects 編譯 regex 失敗: %r %s" @@ -940,7 +1099,7 @@ msgstr "錯誤寫入檔案 Makefile: %s" msgid "The text files are in %(outdir)s." msgstr "文字檔案在 %(outdir)s 。" -#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" @@ -966,13 +1125,13 @@ msgstr "build info 檔案已失效: %r" msgid "The HTML pages are in %(outdir)s." msgstr "HTML 頁面在 %(outdir)s 。" -#: sphinx/builders/html/__init__.py:394 +#: sphinx/builders/html/__init__.py:392 #, python-format msgid "Failed to read build info file: %r" msgstr "讀取 build info 檔失敗: %r" #: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 -#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/transforms/__init__.py:131 sphinx/writers/manpage.py:101 #: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" @@ -986,144 +1145,149 @@ msgstr "總索引" msgid "index" msgstr "索引" -#: sphinx/builders/html/__init__.py:579 +#: sphinx/builders/html/__init__.py:555 +#, python-format +msgid "Logo of %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:580 msgid "next" msgstr "下一頁" -#: sphinx/builders/html/__init__.py:588 +#: sphinx/builders/html/__init__.py:589 msgid "previous" msgstr "上一頁" -#: sphinx/builders/html/__init__.py:684 +#: sphinx/builders/html/__init__.py:685 msgid "generating indices" msgstr "正在產生索引" -#: sphinx/builders/html/__init__.py:699 +#: sphinx/builders/html/__init__.py:700 msgid "writing additional pages" msgstr "正在編寫附加頁面" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:777 msgid "copying downloadable files... " msgstr "正在複製可下載的檔案..." -#: sphinx/builders/html/__init__.py:784 +#: sphinx/builders/html/__init__.py:785 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "無法複製可下載的檔案 %r: %s" -#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 +#: sphinx/builders/html/__init__.py:818 sphinx/builders/html/__init__.py:830 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "在 html_static_file 中複製一個檔案失敗: %s: %r " -#: sphinx/builders/html/__init__.py:850 +#: sphinx/builders/html/__init__.py:851 msgid "copying static files" msgstr "正在複製靜態檔案" -#: sphinx/builders/html/__init__.py:866 +#: sphinx/builders/html/__init__.py:867 #, python-format msgid "cannot copy static file %r" msgstr "無法複製靜態檔案 %r" -#: sphinx/builders/html/__init__.py:871 +#: sphinx/builders/html/__init__.py:872 msgid "copying extra files" msgstr "正在複製額外檔案" -#: sphinx/builders/html/__init__.py:877 +#: sphinx/builders/html/__init__.py:878 #, python-format msgid "cannot copy extra file %r" msgstr "無法複製額外檔案 %r" -#: sphinx/builders/html/__init__.py:884 +#: sphinx/builders/html/__init__.py:885 #, python-format msgid "Failed to write build info file: %r" msgstr "寫入 build info 檔失敗: %r" -#: sphinx/builders/html/__init__.py:933 +#: sphinx/builders/html/__init__.py:934 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "搜尋索引無法被載入,但不是所有的文件都會被建置:索引將會是不完全的。" -#: sphinx/builders/html/__init__.py:978 +#: sphinx/builders/html/__init__.py:972 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "頁面 %s 在 html_sidebars 中符合兩個型樣: %r 和 %r" -#: sphinx/builders/html/__init__.py:1121 +#: sphinx/builders/html/__init__.py:1123 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "在呈現頁面 %s 時發生了一個 Unicode 錯誤。請確認所有包含 non-ASCII 內容的組態值都是 Unicode 字串。" -#: sphinx/builders/html/__init__.py:1126 +#: sphinx/builders/html/__init__.py:1128 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "在呈現頁面 %s 時發生了一個錯誤。\n原因: %r" -#: sphinx/builders/html/__init__.py:1154 +#: sphinx/builders/html/__init__.py:1156 msgid "dumping object inventory" msgstr "正在傾印物件庫存" -#: sphinx/builders/html/__init__.py:1162 +#: sphinx/builders/html/__init__.py:1164 #, python-format msgid "dumping search index in %s" msgstr "正在傾印搜尋索引於 %s" -#: sphinx/builders/html/__init__.py:1210 +#: sphinx/builders/html/__init__.py:1212 #, python-format msgid "invalid js_file: %r, ignored" msgstr "無效的 js_file: %r, 已略過" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1240 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "多個 math_renderer 已被註冊。但是沒有 math_renderer 被選擇。" -#: sphinx/builders/html/__init__.py:1241 +#: sphinx/builders/html/__init__.py:1243 #, python-format msgid "Unknown math_renderer %r is given." msgstr "未知的 math_renderer %r 被給予。" -#: sphinx/builders/html/__init__.py:1249 +#: sphinx/builders/html/__init__.py:1251 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "html_extra_path 項目 %r 不存在" -#: sphinx/builders/html/__init__.py:1253 +#: sphinx/builders/html/__init__.py:1255 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "html_extra_path 項目 %r 被放入 outdir" -#: sphinx/builders/html/__init__.py:1262 +#: sphinx/builders/html/__init__.py:1264 #, python-format msgid "html_static_path entry %r does not exist" msgstr "html_static_path 項目 %r 不存在" -#: sphinx/builders/html/__init__.py:1266 +#: sphinx/builders/html/__init__.py:1268 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "html_static_path 項目 %r 被放入 outdir" -#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 +#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "標誌檔案 %r 不存在" -#: sphinx/builders/html/__init__.py:1284 +#: sphinx/builders/html/__init__.py:1286 #, python-format msgid "favicon file %r does not exist" msgstr "favicon 檔案 %r 不存在" -#: sphinx/builders/html/__init__.py:1291 +#: sphinx/builders/html/__init__.py:1293 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "HTML 4 已不再被 Sphinx 所支援。(在組態選項中偵測到 \"html4_writer=True\")" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1308 #, python-format msgid "%s %s documentation" msgstr "%s %s 說明文件" @@ -1149,19 +1313,21 @@ msgstr "未找到 \"latex_documents\" 組態值;不會編寫任何文件" msgid "\"latex_documents\" config value references unknown document %s" msgstr "\"latex_documents\" 組態值引用未知的文件 %s" -#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 -#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:640 +#: sphinx/domains/std/__init__.py:652 +#: sphinx/templates/latex/latex.tex.jinja:106 #: sphinx/themes/basic/genindex-single.html:30 -#: sphinx/themes/basic/genindex-single.html:55 +#: sphinx/themes/basic/genindex-single.html:56 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 -#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:138 -#: sphinx/writers/texinfo.py:497 +#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:135 +#: sphinx/writers/texinfo.py:502 msgid "Index" msgstr "索引" -#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 +#: sphinx/templates/latex/latex.tex.jinja:91 msgid "Release" msgstr "發佈" @@ -1219,18 +1385,10 @@ msgstr "給定的參考節點 %r 找不到註腳" msgid "Exception occurred while building, starting debugger:" msgstr "在建立時發生例外,正在啟動除錯器:" -#: sphinx/cmd/build.py:61 -msgid "Interrupted!" -msgstr "已中斷!" - #: sphinx/cmd/build.py:63 msgid "reST markup error:" msgstr "reST 標示錯誤:" -#: sphinx/cmd/build.py:69 -msgid "Encoding error:" -msgstr "編碼錯誤:" - #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" @@ -1238,27 +1396,6 @@ msgid "" "the developers." msgstr "若您想要回報問題給開發者,完整的回溯已被儲存在 %s 中。" -#: sphinx/cmd/build.py:76 -msgid "Recursion error:" -msgstr "遞迴錯誤:" - -#: sphinx/cmd/build.py:79 -msgid "" -"This can happen with very large or deeply nested source files. You can " -"carefully increase the default Python recursion limit of 1000 in conf.py " -"with e.g.:" -msgstr "這會發生在非常大或是巢套較深的原始檔案。您可以在 conf.py 中謹慎地增加 Python 的預設 1000 次遞迴上限,例如:" - -#: sphinx/cmd/build.py:84 -msgid "Exception occurred:" -msgstr "發生例外:" - -#: sphinx/cmd/build.py:90 -msgid "" -"Please also report this if it was a user error, so that a better error " -"message can be provided next time." -msgstr "如果這是一個使用者錯誤,請一併回報,如此下次才能提供較佳的錯誤訊息。" - #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" @@ -1270,7 +1407,7 @@ msgid "job number should be a positive number" msgstr "工件編號應該是一個正數" #: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 -#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 +#: sphinx/ext/apidoc.py:365 sphinx/ext/autosummary/generate.py:755 msgid "For more information, visit <https://www.sphinx-doc.org/>." msgstr "需要更多資訊,請拜訪 <https://www.sphinx-doc.org/>." @@ -1305,7 +1442,7 @@ msgstr "到輸出資料夾的路徑" msgid "" "(optional) a list of specific files to rebuild. Ignored if --write-all is " "specified" -msgstr "" +msgstr "(選用)一份要重建的特定檔案清單。如果已指定 --write-all,則會被忽略。" #: sphinx/cmd/build.py:146 msgid "general options" @@ -1313,13 +1450,13 @@ msgstr "一般選項" #: sphinx/cmd/build.py:149 msgid "builder to use (default: 'html')" -msgstr "" +msgstr "要使用的建立器(預設值:'html')" #: sphinx/cmd/build.py:152 msgid "" "run in parallel with N processes, when possible. 'auto' uses the number of " "CPU cores" -msgstr "" +msgstr "如果可以的話,N 個程序會平行執行。'auto' 會使用 CPU 核心的數量" #: sphinx/cmd/build.py:155 msgid "write all files (default: only write new and changed files)" @@ -1331,20 +1468,20 @@ msgstr "不要使用已儲存的環境,永遠要讀取全部的檔案" #: sphinx/cmd/build.py:161 msgid "path options" -msgstr "" +msgstr "路徑選項" #: sphinx/cmd/build.py:163 msgid "" "directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" -msgstr "" +msgstr "包含 doctree 及環境檔案的資料夾(預設值:OUTPUT_DIR/.doctrees)" #: sphinx/cmd/build.py:166 msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" -msgstr "" +msgstr "包含組態檔 (conf.py) 的資料夾(預設值:SOURCE_DIR)" #: sphinx/cmd/build.py:171 msgid "use no configuration file, only use settings from -D options" -msgstr "" +msgstr "不使用組態檔,只使用 -D 選項中的設定" #: sphinx/cmd/build.py:174 msgid "override a setting in configuration file" @@ -1359,7 +1496,7 @@ msgid "define tag: include \"only\" blocks with TAG" msgstr "定義 tag:「只」包含有 TAG 的區塊" #: sphinx/cmd/build.py:182 -msgid "nit-picky mode: warn about all missing references" +msgid "nitpicky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 @@ -1370,7 +1507,7 @@ msgstr "控制台輸出選項" msgid "increase verbosity (can be repeated)" msgstr "增加贅言(可以被重複)" -#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:402 msgid "no output on stdout, just warnings on stderr" msgstr "在 stdout 無輸出,只有在 stderr 的警告" @@ -1388,7 +1525,7 @@ msgstr "不執行 emit 彩色輸出(預設值:auto-detect)" #: sphinx/cmd/build.py:199 msgid "warning control options" -msgstr "" +msgstr "控制警告的選項" #: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" @@ -1400,7 +1537,7 @@ msgstr "將警告轉為錯誤" #: sphinx/cmd/build.py:205 msgid "with --fail-on-warning, keep going when getting warnings" -msgstr "" +msgstr "使用 --fail-on-warning,在得到警告時繼續進行" #: sphinx/cmd/build.py:207 msgid "show full traceback on exception" @@ -1652,12 +1789,12 @@ msgstr "是否建立 Makefile? (y/n)" msgid "Create Windows command file? (y/n)" msgstr "是否建立 Windows 命令檔?(y/n)" -#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:92 #, python-format msgid "Creating file %s." msgstr "正在建立檔案 %s 。" -#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:89 #, python-format msgid "File %s already exists, skipping." msgstr "檔案 %s 已存在,正在跳過。" @@ -1766,12 +1903,12 @@ msgstr "使用 epub" msgid "Extension options" msgstr "擴充套件選項" -#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:559 #, python-format msgid "enable %s extension" msgstr "啟用 %s 擴充套件" -#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:551 msgid "enable arbitrary extensions" msgstr "啟用任意的擴充套件" @@ -1803,11 +1940,11 @@ msgstr "使用 make 模式於 Makefile/make.bat" msgid "do not use make-mode for Makefile/make.bat" msgstr "不要使用 make 模式於 Makefile/make.bat" -#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:562 msgid "Project templating" msgstr "專案模板化中" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:568 msgid "template directory for template files" msgstr "用於模板檔案的模板資料夾" @@ -1835,85 +1972,85 @@ msgstr "sphinx-quickstart 只能產生於空白資料夾中。請指定一個新 msgid "Invalid template variable: %s" msgstr "無效的模板變數: %s" -#: sphinx/directives/code.py:61 +#: sphinx/directives/code.py:60 msgid "non-whitespace stripped by dedent" msgstr "非空白字元被凸排去除" -#: sphinx/directives/code.py:82 +#: sphinx/directives/code.py:80 #, python-format msgid "Invalid caption: %s" msgstr "無效標題:%s" -#: sphinx/directives/code.py:127 sphinx/directives/code.py:277 -#: sphinx/directives/code.py:453 +#: sphinx/directives/code.py:124 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:450 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "列號規格超出範圍 (1-%d): %r" -#: sphinx/directives/code.py:206 +#: sphinx/directives/code.py:203 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "不能使用 \"%s\" 及 \"%s\" 兩個選項" -#: sphinx/directives/code.py:220 +#: sphinx/directives/code.py:217 #, python-format msgid "Include file %r not found or reading it failed" msgstr "Include 檔案 %r 未找到或是讀取失敗" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:220 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "編碼 %r 用以讀取被 include 的檔案 %r 似乎有錯,嘗試給定一個 :encoding: 選項" -#: sphinx/directives/code.py:260 +#: sphinx/directives/code.py:257 #, python-format msgid "Object named %r not found in include file %r" msgstr "名為 %r 的物件在 include 檔案 %r 中未找到" -#: sphinx/directives/code.py:286 +#: sphinx/directives/code.py:283 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "無法以一個 \"lines\" 的互斥集使用 \"lineno-match\" " -#: sphinx/directives/code.py:291 +#: sphinx/directives/code.py:288 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "Line spec %r: 從 include 檔案 %r 沒有提取任何一行" -#: sphinx/directives/other.py:120 +#: sphinx/directives/other.py:123 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "toctree glob 型樣 %r 未匹配任何文件" -#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "toctree 包含了指向已排除文件的參照 %r" -#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 +#: sphinx/directives/other.py:152 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "toctree 包含了指向不存在文件的參照 %r" -#: sphinx/directives/other.py:160 +#: sphinx/directives/other.py:163 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "在 toctree 中找到重複的項目: %s" -#: sphinx/directives/other.py:193 +#: sphinx/directives/other.py:196 msgid "Section author: " msgstr "章節作者:" -#: sphinx/directives/other.py:195 +#: sphinx/directives/other.py:198 msgid "Module author: " msgstr "模組作者:" -#: sphinx/directives/other.py:197 +#: sphinx/directives/other.py:200 msgid "Code author: " msgstr "程式作者:" -#: sphinx/directives/other.py:199 +#: sphinx/directives/other.py:202 msgid "Author: " msgstr "作者:" @@ -1921,7 +2058,7 @@ msgstr "作者:" msgid ".. acks content is not a list" msgstr ".. acks 的內容不是一個列表" -#: sphinx/directives/other.py:301 +#: sphinx/directives/other.py:298 msgid ".. hlist content is not a list" msgstr ".. hlist 的內容不是一個列表" @@ -1939,7 +2076,7 @@ msgstr "%s %s" #: sphinx/domains/changeset.py:23 #, python-format msgid "Added in version %s" -msgstr "" +msgstr "在 %s 版被加入" #: sphinx/domains/changeset.py:24 #, python-format @@ -1954,7 +2091,7 @@ msgstr "在 %s 版之後被棄用" #: sphinx/domains/changeset.py:26 #, python-format msgid "Removed in version %s" -msgstr "" +msgstr "在 %s 版被移除" #: sphinx/domains/citation.py:71 #, python-format @@ -1971,7 +2108,7 @@ msgstr "引用 [%s] 未被參照。" msgid "%s() (built-in function)" msgstr "%s() (內建函式)" -#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:253 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s 的方法)" @@ -1986,7 +2123,7 @@ msgstr "%s() (類別)" msgid "%s (global variable or constant)" msgstr "%s (全域變數或常數)" -#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:338 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s 的屬性)" @@ -1995,52 +2132,52 @@ msgstr "%s (%s 的屬性)" msgid "Arguments" msgstr "引數" -#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +#: sphinx/domains/cpp/__init__.py:442 sphinx/domains/javascript.py:258 msgid "Throws" msgstr "拋出" -#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 -#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +#: sphinx/domains/c/__init__.py:304 sphinx/domains/cpp/__init__.py:453 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:177 msgid "Returns" msgstr "回傳" -#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 -#: sphinx/domains/python/_object.py:177 +#: sphinx/domains/c/__init__.py:306 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:179 msgid "Return type" msgstr "回傳型別" -#: sphinx/domains/javascript.py:331 +#: sphinx/domains/javascript.py:328 #, python-format msgid "%s (module)" msgstr "%s (模組)" -#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 -#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +#: sphinx/domains/c/__init__.py:675 sphinx/domains/cpp/__init__.py:855 +#: sphinx/domains/javascript.py:365 sphinx/domains/python/__init__.py:623 msgid "function" msgstr "函式" -#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +#: sphinx/domains/javascript.py:366 sphinx/domains/python/__init__.py:627 msgid "method" msgstr "方法" -#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 -#: sphinx/domains/python/__init__.py:576 +#: sphinx/domains/cpp/__init__.py:853 sphinx/domains/javascript.py:367 +#: sphinx/domains/python/__init__.py:625 msgid "class" msgstr "類別" -#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:624 msgid "data" msgstr "資料" -#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:630 msgid "attribute" msgstr "屬性" -#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +#: sphinx/domains/javascript.py:370 sphinx/domains/python/__init__.py:633 msgid "module" msgstr "模組" -#: sphinx/domains/javascript.py:404 +#: sphinx/domains/javascript.py:401 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "%s 的重複 %s 敘述,其他的 %s 在 %s" @@ -2050,7 +2187,7 @@ msgstr "%s 的重複 %s 敘述,其他的 %s 在 %s" msgid "duplicate label of equation %s, other instance in %s" msgstr "重複公式標籤 %s,亦出現於 %s" -#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2282 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "無效的 math_eqref_format: %r" @@ -2087,352 +2224,374 @@ msgstr "角色" msgid "duplicate description of %s %s, other instance in %s" msgstr "%s %s 的重複敘述,其他的實例在 %s" -#: sphinx/domains/c/__init__.py:146 +#: sphinx/domains/c/__init__.py:199 #, python-format msgid "%s (C %s)" msgstr "%s (C %s)" -#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#: sphinx/domains/c/__init__.py:260 sphinx/domains/c/_symbol.py:510 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "重複的 C 宣告,亦被定義於 %s:%s。\n宣告是 '.. c:%s:: %s'。" -#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 -#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +#: sphinx/domains/c/__init__.py:298 sphinx/domains/cpp/__init__.py:436 +#: sphinx/domains/python/_object.py:165 sphinx/ext/napoleon/docstring.py:762 msgid "Parameters" msgstr "參數" -#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +#: sphinx/domains/c/__init__.py:301 sphinx/domains/cpp/__init__.py:449 msgid "Return values" msgstr "回傳值" -#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +#: sphinx/domains/c/__init__.py:673 sphinx/domains/cpp/__init__.py:856 msgid "member" msgstr "成員函數" -#: sphinx/domains/c/__init__.py:621 +#: sphinx/domains/c/__init__.py:674 msgid "variable" msgstr "變數" -#: sphinx/domains/c/__init__.py:623 +#: sphinx/domains/c/__init__.py:676 msgid "macro" msgstr "巨集" -#: sphinx/domains/c/__init__.py:624 +#: sphinx/domains/c/__init__.py:677 msgid "struct" msgstr "結構" -#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +#: sphinx/domains/c/__init__.py:678 sphinx/domains/cpp/__init__.py:854 msgid "union" msgstr "union" -#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +#: sphinx/domains/c/__init__.py:679 sphinx/domains/cpp/__init__.py:859 msgid "enum" msgstr "enum" -#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +#: sphinx/domains/c/__init__.py:680 sphinx/domains/cpp/__init__.py:860 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +#: sphinx/domains/c/__init__.py:681 sphinx/domains/cpp/__init__.py:857 msgid "type" msgstr "型別" -#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +#: sphinx/domains/c/__init__.py:683 sphinx/domains/cpp/__init__.py:862 msgid "function parameter" msgstr "函式參數" -#: sphinx/domains/cpp/__init__.py:63 +#: sphinx/domains/cpp/__init__.py:155 msgid "Template Parameters" msgstr "模板參數" -#: sphinx/domains/cpp/__init__.py:185 +#: sphinx/domains/cpp/__init__.py:277 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#: sphinx/domains/cpp/__init__.py:360 sphinx/domains/cpp/_symbol.py:793 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "重複的 C++ 宣告,亦被定義於 %s:%s。\n宣告是 '.. cpp:%s:: %s'。" -#: sphinx/domains/cpp/__init__.py:767 +#: sphinx/domains/cpp/__init__.py:858 msgid "concept" msgstr "概念" -#: sphinx/domains/cpp/__init__.py:772 +#: sphinx/domains/cpp/__init__.py:863 msgid "template parameter" msgstr "模板參數" -#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 +#: sphinx/domains/python/__init__.py:107 sphinx/domains/python/__init__.py:244 #, python-format msgid "%s() (in module %s)" msgstr "%s() (於 %s 模組中)" -#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 -#: sphinx/domains/python/__init__.py:372 +#: sphinx/domains/python/__init__.py:167 sphinx/domains/python/__init__.py:334 +#: sphinx/domains/python/__init__.py:385 sphinx/domains/python/__init__.py:424 #, python-format msgid "%s (in module %s)" msgstr "%s (於 %s 模組中)" -#: sphinx/domains/python/__init__.py:156 +#: sphinx/domains/python/__init__.py:169 #, python-format msgid "%s (built-in variable)" msgstr "%s (內建變數)" -#: sphinx/domains/python/__init__.py:181 +#: sphinx/domains/python/__init__.py:194 #, python-format msgid "%s (built-in class)" msgstr "%s (內建類別)" -#: sphinx/domains/python/__init__.py:182 +#: sphinx/domains/python/__init__.py:195 #, python-format msgid "%s (class in %s)" msgstr "%s (%s 中的類別)" -#: sphinx/domains/python/__init__.py:236 +#: sphinx/domains/python/__init__.py:249 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s 的類別方法)" -#: sphinx/domains/python/__init__.py:238 +#: sphinx/domains/python/__init__.py:251 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s 的靜態方法)" -#: sphinx/domains/python/__init__.py:376 +#: sphinx/domains/python/__init__.py:389 #, python-format msgid "%s (%s property)" msgstr "%s (%s 的特性)" -#: sphinx/domains/python/__init__.py:502 +#: sphinx/domains/python/__init__.py:428 +#, python-format +msgid "%s (type alias in %s)" +msgstr "" + +#: sphinx/domains/python/__init__.py:551 msgid "Python Module Index" msgstr "Python 模組索引" -#: sphinx/domains/python/__init__.py:503 +#: sphinx/domains/python/__init__.py:552 msgid "modules" msgstr "模組" -#: sphinx/domains/python/__init__.py:552 +#: sphinx/domains/python/__init__.py:601 msgid "Deprecated" msgstr "已棄用" -#: sphinx/domains/python/__init__.py:577 +#: sphinx/domains/python/__init__.py:626 msgid "exception" msgstr "例外" -#: sphinx/domains/python/__init__.py:579 +#: sphinx/domains/python/__init__.py:628 msgid "class method" msgstr "類別方法" -#: sphinx/domains/python/__init__.py:580 +#: sphinx/domains/python/__init__.py:629 msgid "static method" msgstr "靜態方法" -#: sphinx/domains/python/__init__.py:582 +#: sphinx/domains/python/__init__.py:631 msgid "property" msgstr "特性" -#: sphinx/domains/python/__init__.py:640 +#: sphinx/domains/python/__init__.py:632 +msgid "type alias" +msgstr "" + +#: sphinx/domains/python/__init__.py:692 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "重複的 %s 的物件描述,在 %s 有其他實例,請在它們其中之一使用 :no-index:" -#: sphinx/domains/python/__init__.py:760 +#: sphinx/domains/python/__init__.py:812 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "為交互參照 %r 找到多於一個目標: %s" -#: sphinx/domains/python/__init__.py:821 +#: sphinx/domains/python/__init__.py:873 msgid " (deprecated)" msgstr "(已棄用)" -#: sphinx/domains/python/_object.py:168 +#: sphinx/domains/python/_object.py:170 msgid "Variables" msgstr "變數" -#: sphinx/domains/python/_object.py:172 +#: sphinx/domains/python/_object.py:174 msgid "Raises" msgstr "引發" -#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 +#: sphinx/domains/std/__init__.py:81 sphinx/domains/std/__init__.py:98 #, python-format msgid "environment variable; %s" msgstr "環境變數; %s" -#: sphinx/domains/std/__init__.py:157 +#: sphinx/domains/std/__init__.py:106 +#, python-format +msgid "%s; configuration value" +msgstr "" + +#: sphinx/domains/std/__init__.py:159 +msgid "Type" +msgstr "" + +#: sphinx/domains/std/__init__.py:169 +msgid "Default" +msgstr "" + +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "異常的選項敘述 %r ,應該要看起來像 \"opt\", \"-opt args\", \"--opt args\", \"/opt args\" 或 \"+opt args\"" -#: sphinx/domains/std/__init__.py:228 +#: sphinx/domains/std/__init__.py:299 #, python-format msgid "%s command line option" msgstr "%s 命令列選項" -#: sphinx/domains/std/__init__.py:230 +#: sphinx/domains/std/__init__.py:301 msgid "command line option" msgstr "命令列選項" -#: sphinx/domains/std/__init__.py:348 +#: sphinx/domains/std/__init__.py:424 msgid "glossary term must be preceded by empty line" msgstr "術語表項目必須有空白行在前" -#: sphinx/domains/std/__init__.py:356 +#: sphinx/domains/std/__init__.py:432 msgid "glossary terms must not be separated by empty lines" msgstr "術語表項目不可以被空白行分隔" -#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 +#: sphinx/domains/std/__init__.py:438 sphinx/domains/std/__init__.py:451 msgid "glossary seems to be misformatted, check indentation" msgstr "術語表似乎有格式錯誤,請檢查縮排" -#: sphinx/domains/std/__init__.py:518 +#: sphinx/domains/std/__init__.py:596 msgid "glossary term" msgstr "雜項術語" -#: sphinx/domains/std/__init__.py:519 +#: sphinx/domains/std/__init__.py:597 msgid "grammar token" msgstr "語法單詞" -#: sphinx/domains/std/__init__.py:520 +#: sphinx/domains/std/__init__.py:598 msgid "reference label" msgstr "參照標籤" -#: sphinx/domains/std/__init__.py:522 +#: sphinx/domains/std/__init__.py:601 msgid "environment variable" msgstr "環境變數" -#: sphinx/domains/std/__init__.py:523 +#: sphinx/domains/std/__init__.py:602 msgid "program option" msgstr "程式選項" -#: sphinx/domains/std/__init__.py:524 +#: sphinx/domains/std/__init__.py:603 msgid "document" msgstr "文件" -#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 +#: sphinx/domains/std/__init__.py:641 sphinx/domains/std/__init__.py:653 msgid "Module Index" msgstr "模組索引" -#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 +#: sphinx/domains/std/__init__.py:642 sphinx/domains/std/__init__.py:654 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "搜尋頁面" -#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/domains/std/__init__.py:697 sphinx/domains/std/__init__.py:803 #: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "重複的標籤 %s,亦出現於 %s" -#: sphinx/domains/std/__init__.py:635 +#: sphinx/domains/std/__init__.py:716 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "重複 %s 的描述 %s,亦出現於 %s" -#: sphinx/domains/std/__init__.py:841 +#: sphinx/domains/std/__init__.py:922 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig 已停用。 :numref: 已略過。" -#: sphinx/domains/std/__init__.py:849 +#: sphinx/domains/std/__init__.py:930 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "無法建立一個交互參照。任一數字未被指定: %s" -#: sphinx/domains/std/__init__.py:861 +#: sphinx/domains/std/__init__.py:942 #, python-format msgid "the link has no caption: %s" msgstr "這個連結沒有標題: %s" -#: sphinx/domains/std/__init__.py:875 +#: sphinx/domains/std/__init__.py:956 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "無效的 numfig_format: %s (%r)" -#: sphinx/domains/std/__init__.py:878 +#: sphinx/domains/std/__init__.py:959 #, python-format msgid "invalid numfig_format: %s" msgstr "無效的 numfig_format: %s" -#: sphinx/domains/std/__init__.py:1109 +#: sphinx/domains/std/__init__.py:1190 #, python-format msgid "undefined label: %r" msgstr "未定義的標籤: %r" -#: sphinx/domains/std/__init__.py:1111 +#: sphinx/domains/std/__init__.py:1192 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "無法建立一個交互參照。未找到標題或說明: %r" -#: sphinx/environment/__init__.py:71 +#: sphinx/environment/__init__.py:72 msgid "new config" msgstr "新的組態" -#: sphinx/environment/__init__.py:72 +#: sphinx/environment/__init__.py:73 msgid "config changed" msgstr "組態已變更" -#: sphinx/environment/__init__.py:73 +#: sphinx/environment/__init__.py:74 msgid "extensions changed" msgstr "擴充套件已變更" -#: sphinx/environment/__init__.py:279 +#: sphinx/environment/__init__.py:292 msgid "build environment version not current" msgstr "建立環境的版本不是目前的" -#: sphinx/environment/__init__.py:281 +#: sphinx/environment/__init__.py:294 msgid "source directory has changed" msgstr "來源資料夾已變更" -#: sphinx/environment/__init__.py:360 +#: sphinx/environment/__init__.py:375 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "這個環境與所選的 builder 不相容,請選擇另一個 doctree 資料夾。" -#: sphinx/environment/__init__.py:459 +#: sphinx/environment/__init__.py:474 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "無法掃描 %s 中的文件: %r" -#: sphinx/environment/__init__.py:596 +#: sphinx/environment/__init__.py:616 #, python-format msgid "Domain %r is not registered" msgstr "Domain %r 未被註冊" -#: sphinx/environment/__init__.py:730 +#: sphinx/environment/__init__.py:750 msgid "document isn't included in any toctree" msgstr "文件未被包含於任何 toctree" -#: sphinx/environment/__init__.py:766 +#: sphinx/environment/__init__.py:786 msgid "self referenced toctree found. Ignored." msgstr "找到自我參照的 toctree。已略過。" -#: sphinx/environment/adapters/indexentries.py:69 +#: sphinx/environment/adapters/indexentries.py:105 #, python-format msgid "see %s" msgstr "參考 %s" -#: sphinx/environment/adapters/indexentries.py:73 +#: sphinx/environment/adapters/indexentries.py:109 #, python-format msgid "see also %s" msgstr "也參考 %s" -#: sphinx/environment/adapters/indexentries.py:76 +#: sphinx/environment/adapters/indexentries.py:112 #, python-format msgid "unknown index entry type %r" msgstr "未知的索引項目型別 %r" -#: sphinx/environment/adapters/indexentries.py:187 -#: sphinx/templates/latex/sphinxmessages.sty_t:11 +#: sphinx/environment/adapters/indexentries.py:234 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:11 msgid "Symbols" msgstr "符號" @@ -2468,17 +2627,17 @@ msgstr "影像檔案 %s 無法讀取: %s" msgid "download file not readable: %s" msgstr "下載檔案無法讀取: %s" -#: sphinx/environment/collectors/toctree.py:225 +#: sphinx/environment/collectors/toctree.py:238 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "%s 已經被指定段落編號(巢狀編號的 toctree?)" -#: sphinx/ext/apidoc.py:86 +#: sphinx/ext/apidoc.py:85 #, python-format msgid "Would create file %s." msgstr "將會建立檔案 %s 。" -#: sphinx/ext/apidoc.py:318 +#: sphinx/ext/apidoc.py:366 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2490,149 +2649,171 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "\n在 <MODULE_PATH> 中遞迴查找 Python 模組及套件,並在 <OUTPUT_PATH> 中\n為每個套件建立一個帶有 automodule 指令的 reST 檔。\n\n<EXCLUDE_PATTERN> 可以是檔案及/或資料夾型樣,它們將在生成時被\n移除。\n\n備註:在預設情況,此腳本不會重寫已經被建立的檔案。" -#: sphinx/ext/apidoc.py:331 +#: sphinx/ext/apidoc.py:383 msgid "path to module to document" msgstr "要生成文件的模組路徑" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:387 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "fnmatch 風格的檔案及/或資料夾模式,將在生成時移除。" -#: sphinx/ext/apidoc.py:338 +#: sphinx/ext/apidoc.py:396 msgid "directory to place all output" msgstr "要放置所有輸出的資料夾" -#: sphinx/ext/apidoc.py:343 +#: sphinx/ext/apidoc.py:411 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "能顯示 TOC 的子模組最大深度(預設值:4)" -#: sphinx/ext/apidoc.py:346 +#: sphinx/ext/apidoc.py:414 msgid "overwrite existing files" msgstr "重寫已存在的檔案" -#: sphinx/ext/apidoc.py:349 +#: sphinx/ext/apidoc.py:422 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "跟隨符號鏈接。與 collective.recipe.omelette 結合時很有用。" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:431 msgid "run the script without creating files" msgstr "執行腳本而不建立檔案" -#: sphinx/ext/apidoc.py:355 +#: sphinx/ext/apidoc.py:438 msgid "put documentation for each module on its own page" msgstr "為每個模組在它自己的頁面置放說明文件" -#: sphinx/ext/apidoc.py:358 +#: sphinx/ext/apidoc.py:445 msgid "include \"_private\" modules" msgstr "包含 \"_private\" 模組" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:452 msgid "filename of table of contents (default: modules)" msgstr "目錄的檔名(預設值:模組)" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:459 msgid "don't create a table of contents file" msgstr "不要建立目錄檔案" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:466 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "不要為模組/套件建立標頭(例如:當說明字串已經包含它們時)" -#: sphinx/ext/apidoc.py:370 +#: sphinx/ext/apidoc.py:477 msgid "put module documentation before submodule documentation" msgstr "在子模組說明文件之前置放模組說明文件" -#: sphinx/ext/apidoc.py:374 +#: sphinx/ext/apidoc.py:483 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "根據 PEP-0420 隱式命名空間規範來解譯模組路徑" -#: sphinx/ext/apidoc.py:378 +#: sphinx/ext/apidoc.py:493 msgid "file suffix (default: rst)" msgstr "檔案後綴(預設值:rst)" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:500 sphinx/ext/autosummary/generate.py:828 +msgid "Remove existing files in the output directory that were not generated" +msgstr "" + +#: sphinx/ext/apidoc.py:507 msgid "generate a full project with sphinx-quickstart" msgstr "以 sphinx-quickstart 生成一個完全的專案" -#: sphinx/ext/apidoc.py:383 +#: sphinx/ext/apidoc.py:514 msgid "append module_path to sys.path, used when --full is given" msgstr "附加 module_path 到 sys.path,在給予 --full 時使用" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:521 msgid "project name (default: root module name)" msgstr "專案名稱(預設值:根模組名稱)" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:528 msgid "project author(s), used when --full is given" msgstr "專案作者(們),在給予 --full 時使用" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:535 msgid "project version, used when --full is given" msgstr "專案版本,在給予 --full 時使用" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:542 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "專案發布,在給予 --full 時使用,預設為 --doc-version" -#: sphinx/ext/apidoc.py:394 +#: sphinx/ext/apidoc.py:545 msgid "extension options" msgstr "擴充套件選項" -#: sphinx/ext/apidoc.py:427 +#: sphinx/ext/apidoc.py:620 #, python-format msgid "%s is not a directory." msgstr "%s 不是資料夾" +#: sphinx/ext/apidoc.py:686 sphinx/ext/autosummary/generate.py:862 +#, python-format +msgid "Failed to remove %s: %s" +msgstr "" + #: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "段落 \"%s\" 取得標籤 \"%s\"" -#: sphinx/ext/coverage.py:46 +#: sphinx/ext/coverage.py:47 #, python-format msgid "invalid regex %r in %s" msgstr "無效的 regex %r 在 %s" -#: sphinx/ext/coverage.py:75 +#: sphinx/ext/coverage.py:134 sphinx/ext/coverage.py:280 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "模組 %s 無法被 import: %s" + +#: sphinx/ext/coverage.py:141 +#, python-format +msgid "" +"the following modules are documented but were not specified in " +"coverage_modules: %s" +msgstr "" + +#: sphinx/ext/coverage.py:149 +msgid "" +"the following modules are specified in coverage_modules but were not " +"documented" +msgstr "" + +#: sphinx/ext/coverage.py:163 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "來源的涵蓋測試已結束,在 %(outdir)spython.txt 中查看結果。" -#: sphinx/ext/coverage.py:89 +#: sphinx/ext/coverage.py:177 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "無效的 regex %r 在 coverage_c_regexes" -#: sphinx/ext/coverage.py:157 +#: sphinx/ext/coverage.py:245 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "未文件化的 c api: %s [%s] 在檔案 %s 中" -#: sphinx/ext/coverage.py:189 -#, python-format -msgid "module %s could not be imported: %s" -msgstr "模組 %s 無法被 import: %s" - -#: sphinx/ext/coverage.py:340 +#: sphinx/ext/coverage.py:429 #, python-format msgid "undocumented python function: %s :: %s" msgstr "未文件化的 python 函式: %s :: %s" -#: sphinx/ext/coverage.py:356 +#: sphinx/ext/coverage.py:445 #, python-format msgid "undocumented python class: %s :: %s" msgstr "未文件化的 python class: %s :: %s" -#: sphinx/ext/coverage.py:369 +#: sphinx/ext/coverage.py:458 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "未文件化的 python method: %s :: %s :: %s" @@ -2673,7 +2854,7 @@ msgstr "在 %s 區塊中的 %s:%s 沒有程式碼/輸出" msgid "ignoring invalid doctest code: %r" msgstr "正在忽略無效的 doctest 碼: %r" -#: sphinx/ext/duration.py:77 +#: sphinx/ext/duration.py:84 msgid "" "====================== slowest reading durations =======================" msgstr "====================== 最慢的讀取歷時 =======================" @@ -2749,7 +2930,7 @@ msgstr "[圖:%s]" msgid "[graph]" msgstr "[圖]" -#: sphinx/ext/imgconverter.py:39 +#: sphinx/ext/imgconverter.py:40 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2757,7 +2938,7 @@ msgid "" "Traceback: %s" msgstr "無法執行影像轉換命令 %r。 'sphinx.ext.imgconverter' 預設為需要 ImageMagick。請確認它已被安裝,或是設定 'image_converter' 選項為一個自訂轉換命令。\n\n回溯: %s" -#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 +#: sphinx/ext/imgconverter.py:49 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" @@ -2767,99 +2948,39 @@ msgid "" "%r" msgstr "退出轉換,發生錯誤:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/imgconverter.py:67 +#: sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "轉換命令 %r 無法被執行,請檢查 image_converter 設定" -#: sphinx/ext/imgmath.py:158 +#: sphinx/ext/imgmath.py:159 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "LaTeX 命令 %r 無法被執行(數學顯示所需要),請檢查 imgmath_latex 設定" -#: sphinx/ext/imgmath.py:173 +#: sphinx/ext/imgmath.py:174 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "%s 命令 %r 無法被執行(數學顯示所需要),請檢查 imgmath_%s 設定" -#: sphinx/ext/imgmath.py:327 +#: sphinx/ext/imgmath.py:328 #, python-format msgid "display latex %r: %s" msgstr "顯示 latex %r: %s" -#: sphinx/ext/imgmath.py:361 +#: sphinx/ext/imgmath.py:362 #, python-format msgid "inline latex %r: %s" msgstr "行內 latex %r: %s" -#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 +#: sphinx/ext/imgmath.py:369 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "連結到這個方程式" -#: sphinx/ext/intersphinx.py:195 -#, python-format -msgid "intersphinx inventory has moved: %s -> %s" -msgstr "intersphinx 庫存已移動: %s -> %s" - -#: sphinx/ext/intersphinx.py:230 -#, python-format -msgid "loading intersphinx inventory from %s..." -msgstr "正在從 %s 載入 intersphinx 庫存... " - -#: sphinx/ext/intersphinx.py:244 -msgid "" -"encountered some issues with some of the inventories, but they had working " -"alternatives:" -msgstr "從一些庫存中遇到一些問題,但他們已在進行替代方案:" - -#: sphinx/ext/intersphinx.py:250 -msgid "failed to reach any of the inventories with the following issues:" -msgstr "無法到達任何的庫存,遇到以下問題:" - -#: sphinx/ext/intersphinx.py:303 -#, python-format -msgid "(in %s v%s)" -msgstr "(於 %s v%s)" - -#: sphinx/ext/intersphinx.py:305 -#, python-format -msgid "(in %s)" -msgstr "(於 %s)" - -#: sphinx/ext/intersphinx.py:538 -#, python-format -msgid "inventory for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:546 -#, python-format -msgid "invalid external cross-reference suffix: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:557 -#, python-format -msgid "domain for external cross-reference not found: %r" -msgstr "" - -#: sphinx/ext/intersphinx.py:750 -#, python-format -msgid "external %s:%s reference target not found: %s" -msgstr "未找到外部的 %s:%s 參照目標: %s" - -#: sphinx/ext/intersphinx.py:775 -#, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "intersphinx identifier %r 不是字串。已略過" - -#: sphinx/ext/intersphinx.py:797 -#, python-format -msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "無法讀取 intersphinx_mapping[%s], 已略過: %r" - #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[原始碼]" @@ -3035,23 +3156,23 @@ msgstr "無法為 %r 更新簽名:未找到參數: %s" msgid "Failed to parse type_comment for %r: %s" msgstr "無法為 %r 剖析 type_comment: %s" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:252 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "autosummary 參照已排除文件 %r 。已略過。" -#: sphinx/ext/autosummary/__init__.py:253 +#: sphinx/ext/autosummary/__init__.py:254 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "autosummary: 未找到 stub 檔 %r 。請檢查您的 autosummary_generate 設定。" -#: sphinx/ext/autosummary/__init__.py:272 +#: sphinx/ext/autosummary/__init__.py:273 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "一個有標題的 autosummary 需要 :toctree: 選項。已略過。 " -#: sphinx/ext/autosummary/__init__.py:325 +#: sphinx/ext/autosummary/__init__.py:326 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3059,46 +3180,52 @@ msgid "" "%s" msgstr "autosummary: import %s 失敗。\n可能的提示:\n%s" -#: sphinx/ext/autosummary/__init__.py:339 +#: sphinx/ext/autosummary/__init__.py:340 #, python-format msgid "failed to parse name %s" msgstr "剖析名稱 %s 失敗" -#: sphinx/ext/autosummary/__init__.py:344 +#: sphinx/ext/autosummary/__init__.py:345 #, python-format msgid "failed to import object %s" msgstr "import 物件 %s 失敗" -#: sphinx/ext/autosummary/__init__.py:802 +#: sphinx/ext/autosummary/__init__.py:644 +#, python-format +msgid "" +"Summarised items should not include the current module. Replace %r with %r." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:808 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: 檔案未找到: %s" -#: sphinx/ext/autosummary/__init__.py:810 +#: sphinx/ext/autosummary/__init__.py:816 msgid "" "autosummary generates .rst files internally. But your source_suffix does not" " contain .rst. Skipped." -msgstr "" +msgstr "autosummary 會在內部產生 .rst 檔。但是您的 source_suffix 並未包含 .rst。已跳過。" -#: sphinx/ext/autosummary/generate.py:200 -#: sphinx/ext/autosummary/generate.py:358 +#: sphinx/ext/autosummary/generate.py:211 +#: sphinx/ext/autosummary/generate.py:387 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "autosummary: 無法決定 %r 被記錄,以下例外被引發:\n%s" -#: sphinx/ext/autosummary/generate.py:470 +#: sphinx/ext/autosummary/generate.py:516 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[autosummary] 正在產生 autosummary 給: %s" -#: sphinx/ext/autosummary/generate.py:474 +#: sphinx/ext/autosummary/generate.py:519 #, python-format msgid "[autosummary] writing to %s" msgstr "[autosummary] 正在寫入 %s" -#: sphinx/ext/autosummary/generate.py:517 +#: sphinx/ext/autosummary/generate.py:561 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3106,7 +3233,7 @@ msgid "" "%s" msgstr "[autosummary] import %s 失敗。\n可能的提示:\n%s" -#: sphinx/ext/autosummary/generate.py:690 +#: sphinx/ext/autosummary/generate.py:756 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3121,36 +3248,101 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\n使用 autosummary 指令產生 ReStructuredText。\n\nsphinx-autogen 是 sphinx.ext.autosummary.generate 的一個前端。它會從給定的\n輸入檔案中所包含的 autosummary 指令,產生 reStructuredText 檔案。\n\nautosummary 指令的格式被記錄在 ``sphinx.ext.autosummary`` Python 模組中,\n它可以使用此方法來讀取::\n\npydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:707 +#: sphinx/ext/autosummary/generate.py:778 msgid "source files to generate rST files for" msgstr "原始檔案以產生 rST 檔案給" -#: sphinx/ext/autosummary/generate.py:711 +#: sphinx/ext/autosummary/generate.py:786 msgid "directory to place all output in" msgstr "資料夾來放置所有輸出在" -#: sphinx/ext/autosummary/generate.py:714 +#: sphinx/ext/autosummary/generate.py:794 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "檔案的預設後綴(預設: %(default)s )" -#: sphinx/ext/autosummary/generate.py:718 +#: sphinx/ext/autosummary/generate.py:802 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "自訂模板資料夾(預設: %(default)s )" -#: sphinx/ext/autosummary/generate.py:722 +#: sphinx/ext/autosummary/generate.py:810 #, python-format msgid "document imported members (default: %(default)s)" msgstr "文件引入成員(預設: %(default)s )" -#: sphinx/ext/autosummary/generate.py:726 +#: sphinx/ext/autosummary/generate.py:818 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" msgstr "文件確實是在模組 __all__ 屬性中的成員。(預設值: %(default)s)" +#: sphinx/ext/intersphinx/_load.py:35 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "intersphinx identifier %r 不是字串。已略過" + +#: sphinx/ext/intersphinx/_load.py:57 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "無法讀取 intersphinx_mapping[%s], 已略過: %r" + +#: sphinx/ext/intersphinx/_load.py:121 +#, python-format +msgid "loading intersphinx inventory '%s' from %s..." +msgstr "" + +#: sphinx/ext/intersphinx/_load.py:136 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "從一些庫存中遇到一些問題,但他們已在進行替代方案:" + +#: sphinx/ext/intersphinx/_load.py:142 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "無法到達任何的庫存,遇到以下問題:" + +#: sphinx/ext/intersphinx/_load.py:166 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "intersphinx 庫存已移動: %s -> %s" + +#: sphinx/ext/intersphinx/_resolve.py:42 +#, python-format +msgid "(in %s v%s)" +msgstr "(於 %s v%s)" + +#: sphinx/ext/intersphinx/_resolve.py:44 +#, python-format +msgid "(in %s)" +msgstr "(於 %s)" + +#: sphinx/ext/intersphinx/_resolve.py:85 +#, python-format +msgid "inventory '%s': multiple matches found for %s:%s" +msgstr "" + +#: sphinx/ext/intersphinx/_resolve.py:281 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "找不到外部交互參照的庫存:%r" + +#: sphinx/ext/intersphinx/_resolve.py:289 +#, python-format +msgid "invalid external cross-reference suffix: %r" +msgstr "無效的外部交互參照後綴:%r" + +#: sphinx/ext/intersphinx/_resolve.py:300 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "找不到外部交互參照的領域:%r" + +#: sphinx/ext/intersphinx/_resolve.py:493 +#, python-format +msgid "external %s:%s reference target not found: %s" +msgstr "未找到外部的 %s:%s 參照目標: %s" + #: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "關鍵字引數" @@ -3207,65 +3399,65 @@ msgstr "異常的字串文本(缺少右括號): %s" msgid "malformed string literal (missing opening quote): %s" msgstr "異常的字串文本(缺少左括號): %s" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:224 msgid "Attention" msgstr "注意" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:225 msgid "Caution" msgstr "警示" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:226 msgid "Danger" msgstr "危險" -#: sphinx/locale/__init__.py:231 +#: sphinx/locale/__init__.py:227 msgid "Error" msgstr "錯誤" -#: sphinx/locale/__init__.py:232 +#: sphinx/locale/__init__.py:228 msgid "Hint" msgstr "提示" -#: sphinx/locale/__init__.py:233 +#: sphinx/locale/__init__.py:229 msgid "Important" msgstr "重要" -#: sphinx/locale/__init__.py:234 +#: sphinx/locale/__init__.py:230 msgid "Note" msgstr "備註" -#: sphinx/locale/__init__.py:235 +#: sphinx/locale/__init__.py:231 msgid "See also" msgstr "也參考" -#: sphinx/locale/__init__.py:236 +#: sphinx/locale/__init__.py:232 msgid "Tip" msgstr "小訣竅" -#: sphinx/locale/__init__.py:237 +#: sphinx/locale/__init__.py:233 msgid "Warning" msgstr "警告" -#: sphinx/templates/latex/longtable.tex_t:52 -#: sphinx/templates/latex/sphinxmessages.sty_t:8 +#: sphinx/templates/latex/longtable.tex.jinja:52 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:8 msgid "continued from previous page" msgstr "繼續上一頁" -#: sphinx/templates/latex/longtable.tex_t:63 -#: sphinx/templates/latex/sphinxmessages.sty_t:9 +#: sphinx/templates/latex/longtable.tex.jinja:63 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:9 msgid "continues on next page" msgstr "繼續下一頁" -#: sphinx/templates/latex/sphinxmessages.sty_t:10 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:10 msgid "Non-alphabetical" msgstr "非依字母順序" -#: sphinx/templates/latex/sphinxmessages.sty_t:12 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:12 msgid "Numbers" msgstr "數字" -#: sphinx/templates/latex/sphinxmessages.sty_t:13 +#: sphinx/templates/latex/sphinxmessages.sty.jinja:13 msgid "page" msgstr "頁" @@ -3274,7 +3466,7 @@ msgstr "頁" msgid "Table of Contents" msgstr "目錄" -#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:138 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "搜尋" @@ -3332,12 +3524,12 @@ msgstr "迅速找到所有模組" msgid "all functions, classes, terms" msgstr "所有函式、類別、術語" -#: sphinx/themes/basic/genindex-single.html:33 +#: sphinx/themes/basic/genindex-single.html:34 #, python-format -msgid "Index – %(key)s" -msgstr "索引 – %(key)s" +msgid "Index – %(key)s" +msgstr "" -#: sphinx/themes/basic/genindex-single.html:61 +#: sphinx/themes/basic/genindex-single.html:62 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 @@ -3356,31 +3548,31 @@ msgstr "可能會很大" msgid "Navigation" msgstr "瀏覽" -#: sphinx/themes/basic/layout.html:126 +#: sphinx/themes/basic/layout.html:123 #, python-format msgid "Search within %(docstitle)s" msgstr "在 %(docstitle)s 中搜尋" -#: sphinx/themes/basic/layout.html:135 +#: sphinx/themes/basic/layout.html:132 msgid "About these documents" msgstr "關於這些文件" -#: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 -#: sphinx/themes/basic/layout.html:190 +#: sphinx/themes/basic/layout.html:141 sphinx/themes/basic/layout.html:185 +#: sphinx/themes/basic/layout.html:187 msgid "Copyright" msgstr "版權所有" -#: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 +#: sphinx/themes/basic/layout.html:191 sphinx/themes/basic/layout.html:197 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." msgstr "© %(copyright_prefix)s %(copyright)s." -#: sphinx/themes/basic/layout.html:212 +#: sphinx/themes/basic/layout.html:209 #, python-format msgid "Last updated on %(last_updated)s." msgstr "最後更新於 %(last_updated)s。" -#: sphinx/themes/basic/layout.html:215 +#: sphinx/themes/basic/layout.html:212 #, python-format msgid "" "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> " @@ -3483,7 +3675,7 @@ msgstr "搜尋中" msgid "Preparing search..." msgstr "準備搜尋中…" -#: sphinx/themes/basic/static/searchtools.js:463 +#: sphinx/themes/basic/static/searchtools.js:464 msgid ", in " msgstr ",於 " @@ -3492,11 +3684,11 @@ msgid "Hide Search Matches" msgstr "隱藏符合搜尋" #: sphinx/themes/classic/layout.html:20 -#: sphinx/themes/classic/static/sidebar.js_t:57 +#: sphinx/themes/classic/static/sidebar.js.jinja:57 msgid "Collapse sidebar" msgstr "收合側邊欄" -#: sphinx/themes/classic/static/sidebar.js_t:48 +#: sphinx/themes/classic/static/sidebar.js.jinja:48 msgid "Expand sidebar" msgstr "展開側邊欄" @@ -3504,26 +3696,26 @@ msgstr "展開側邊欄" msgid "Contents" msgstr "內容" -#: sphinx/transforms/__init__.py:128 +#: sphinx/transforms/__init__.py:142 msgid "could not calculate translation progress!" msgstr "無法計算翻譯進度!" -#: sphinx/transforms/__init__.py:133 +#: sphinx/transforms/__init__.py:147 msgid "no translated elements!" msgstr "沒有已翻譯的元素!" -#: sphinx/transforms/__init__.py:250 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "找到基於 4 欄位的索引。它可能是您使用的擴充套件的一個錯誤: %r" -#: sphinx/transforms/__init__.py:291 +#: sphinx/transforms/__init__.py:305 #, python-format msgid "Footnote [%s] is not referenced." msgstr "註腳 [%s] 未被參照。" -#: sphinx/transforms/__init__.py:297 +#: sphinx/transforms/__init__.py:311 msgid "Footnote [#] is not referenced." msgstr "註腳 [#] 未被參照。" @@ -3543,7 +3735,7 @@ msgstr "被翻譯訊息中有不一致的參照。原文: {0},譯文: {1}" msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" -msgstr "被翻譯訊息中有不一致的引用。原文: {0},譯文: {1}" +msgstr "被翻譯訊息中有不一致的參照。原文: {0},譯文: {1}" #: sphinx/transforms/i18n.py:302 msgid "" @@ -3572,17 +3764,17 @@ msgstr "%s:%s 參照目標未找到: %s" msgid "%r reference target not found: %s" msgstr "%r 參照目標未找到: %s" -#: sphinx/transforms/post_transforms/images.py:89 +#: sphinx/transforms/post_transforms/images.py:83 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "無法提取遠端圖片: %s [%d]" -#: sphinx/transforms/post_transforms/images.py:117 +#: sphinx/transforms/post_transforms/images.py:111 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "無法提取遠端圖片: %s [%s]" -#: sphinx/transforms/post_transforms/images.py:135 +#: sphinx/transforms/post_transforms/images.py:127 #, python-format msgid "Unknown image format: %s..." msgstr "未知的圖片格式: %s..." @@ -3592,11 +3784,11 @@ msgstr "未知的圖片格式: %s..." msgid "undecodable source characters, replacing with \"?\": %r" msgstr "無法解碼的原始字元,以 \"?\" 取代: %r" -#: sphinx/util/display.py:78 +#: sphinx/util/display.py:83 msgid "skipped" msgstr "已省略" -#: sphinx/util/display.py:83 +#: sphinx/util/display.py:88 msgid "failed" msgstr "失敗" @@ -3607,12 +3799,12 @@ msgid "" "not in the domain." msgstr "在 %s domain 中的問題:欄位應該要用角色 '%s' ,但是那個角色並不在該 domain。" -#: sphinx/util/docutils.py:295 +#: sphinx/util/docutils.py:261 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "未知的指令或角色名稱: %s:%s" -#: sphinx/util/docutils.py:591 +#: sphinx/util/docutils.py:639 #, python-format msgid "unknown node type: %r" msgstr "未知的節點型別: %r" @@ -3639,18 +3831,23 @@ msgid "" "it directly: %s" msgstr "無效的日期格式。如果您要直接將它輸出,則以單引號引用該字串: %s" -#: sphinx/util/nodes.py:386 +#: sphinx/util/inventory.py:168 +#, python-format +msgid "inventory <%s> contains multiple definitions for %s" +msgstr "" + +#: sphinx/util/nodes.py:383 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "%r 已棄用於索引項目(從項目 %r)。請改用 'pair: %s'。" -#: sphinx/util/nodes.py:439 +#: sphinx/util/nodes.py:436 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "toctree 包含了不存在的檔案 %r 的參照 " -#: sphinx/util/nodes.py:637 +#: sphinx/util/nodes.py:634 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "在評估只有指令的運算式時發生例外: %s" @@ -3660,45 +3857,50 @@ msgstr "在評估只有指令的運算式時發生例外: %s" msgid "default role %s not found" msgstr "預設角色 %s 未找到" -#: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 +#: sphinx/writers/html5.py:99 sphinx/writers/html5.py:108 msgid "Link to this definition" msgstr "連結到這個定義" -#: sphinx/writers/html5.py:397 +#: sphinx/writers/html5.py:398 #, python-format msgid "numfig_format is not defined for %s" msgstr "numfig_format 未被定義給 %s" -#: sphinx/writers/html5.py:407 +#: sphinx/writers/html5.py:408 #, python-format msgid "Any IDs not assigned for %s node" msgstr "任一個 ID 未被指定給 %s 節點" -#: sphinx/writers/html5.py:462 +#: sphinx/writers/html5.py:463 msgid "Link to this term" msgstr "連結到這個項目" -#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 +#: sphinx/writers/html5.py:497 sphinx/writers/html5.py:502 msgid "Link to this heading" msgstr "連結到這個標頭" -#: sphinx/writers/html5.py:505 +#: sphinx/writers/html5.py:506 msgid "Link to this table" msgstr "連結到這個表格" -#: sphinx/writers/html5.py:548 +#: sphinx/writers/html5.py:520 sphinx/writers/latex.py:985 +#, python-format +msgid "unsupported rubric heading level: %s" +msgstr "" + +#: sphinx/writers/html5.py:573 msgid "Link to this code" msgstr "連結到這個程式碼" -#: sphinx/writers/html5.py:550 +#: sphinx/writers/html5.py:575 msgid "Link to this image" msgstr "連結到這個圖片" -#: sphinx/writers/html5.py:552 +#: sphinx/writers/html5.py:577 msgid "Link to this toctree" msgstr "連結到這個 toctree" -#: sphinx/writers/html5.py:688 +#: sphinx/writers/html5.py:713 msgid "Could not obtain image size. :scale: option is ignored." msgstr "無法取得圖片大小。 :scale: 選項已略過。" @@ -3711,31 +3913,36 @@ msgstr "未知的 %r toplevel_sectioning 對於 class %r" msgid "too large :maxdepth:, ignored." msgstr ":maxdepth: 太大,已略過。" -#: sphinx/writers/latex.py:625 +#: sphinx/writers/latex.py:530 +#, python-format +msgid "template %s not found; loading from legacy %s instead" +msgstr "" + +#: sphinx/writers/latex.py:634 msgid "document title is not a single Text node" msgstr "文件標題不是單一的 Text 節點" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 +#: sphinx/writers/latex.py:665 sphinx/writers/texinfo.py:631 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "遇到的標題節點不是在段落、主題、表格、警告或側邊欄" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 -#: sphinx/writers/texinfo.py:641 +#: sphinx/writers/latex.py:976 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:646 msgid "Footnotes" msgstr "註腳" -#: sphinx/writers/latex.py:1028 +#: sphinx/writers/latex.py:1058 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "同時被給予 tabularcolumns 及 :widths: 選項。 :widths: 已略過。" -#: sphinx/writers/latex.py:1388 +#: sphinx/writers/latex.py:1418 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "維度單位 %s 是無效的。已略過。" -#: sphinx/writers/latex.py:1722 +#: sphinx/writers/latex.py:1752 #, python-format msgid "unknown index entry type %s found" msgstr "找到了未知的索引條目型別 %s" @@ -3749,11 +3956,11 @@ msgstr "[圖片:%s]" msgid "[image]" msgstr "[圖片]" -#: sphinx/writers/texinfo.py:1197 +#: sphinx/writers/texinfo.py:1202 msgid "caption not inside a figure." msgstr "標題不在圖之內。" -#: sphinx/writers/texinfo.py:1284 +#: sphinx/writers/texinfo.py:1289 #, python-format msgid "unimplemented node type: %r" msgstr "未實作的節點型別: %r" diff --git a/sphinx/registry.py b/sphinx/registry.py index 7887858..3ae5fd1 100644 --- a/sphinx/registry.py +++ b/sphinx/registry.py @@ -504,10 +504,14 @@ def merge_source_suffix(app: Sphinx, config: Config) -> None: for suffix, filetype in app.registry.source_suffix.items(): if suffix not in app.config.source_suffix: # NoQA: SIM114 app.config.source_suffix[suffix] = filetype - elif app.config.source_suffix[suffix] is None: - # filetype is not specified (default filetype). + elif app.config.source_suffix[suffix] == 'restructuredtext': + # The filetype is not specified (default filetype). # So it overrides default filetype by extensions setting. app.config.source_suffix[suffix] = filetype + elif app.config.source_suffix[suffix] is None: + msg = __('`None` is not a valid filetype for %r.') % suffix + logger.warning(msg) + app.config.source_suffix[suffix] = filetype # copy config.source_suffix to registry app.registry.source_suffix = app.config.source_suffix diff --git a/sphinx/roles.py b/sphinx/roles.py index 2fa242f..fbc322d 100644 --- a/sphinx/roles.py +++ b/sphinx/roles.py @@ -374,7 +374,7 @@ class Manpage(ReferenceRole): inner: nodes.Node text = self.title[1:] if self.disabled else self.title if not self.disabled and self.config.manpages_url: - uri = self.config.manpages_url.format(**info) + uri = self.config.manpages_url.format_map(info) inner = nodes.reference('', text, classes=[self.name], refuri=uri) else: inner = nodes.Text(text) diff --git a/sphinx/search/__init__.py b/sphinx/search/__init__.py index 2638f92..77eadb8 100644 --- a/sphinx/search/__init__.py +++ b/sphinx/search/__init__.py @@ -52,11 +52,11 @@ class SearchLanguage: This class is used to preprocess search word which Sphinx HTML readers type, before searching index. Default implementation does nothing. """ - lang: str | None = None - language_name: str | None = None + lang: str = '' + language_name: str = '' stopwords: set[str] = set() js_splitter_code: str = "" - js_stemmer_rawcode: str | None = None + js_stemmer_rawcode: str = '' js_stemmer_code = """ /** * Dummy stemmer for languages without stemming rules. @@ -198,7 +198,7 @@ def _is_meta_keywords( @dataclasses.dataclass class WordStore: words: list[str] = dataclasses.field(default_factory=list) - titles: list[tuple[str, str]] = dataclasses.field(default_factory=list) + titles: list[tuple[str, str | None]] = dataclasses.field(default_factory=list) title_words: list[str] = dataclasses.field(default_factory=list) @@ -253,7 +253,7 @@ class IndexBuilder: def __init__(self, env: BuildEnvironment, lang: str, options: dict[str, str], scoring: str) -> None: self.env = env # docname -> title - self._titles: dict[str, str] = env._search_index_titles + self._titles: dict[str, str | None] = env._search_index_titles # docname -> filename self._filenames: dict[str, str] = env._search_index_filenames # stemmed words -> set(docname) @@ -261,7 +261,7 @@ class IndexBuilder: # stemmed words in titles -> set(docname) self._title_mapping: dict[str, set[str]] = env._search_index_title_mapping # docname -> all titles in document - self._all_titles: dict[str, list[tuple[str, str]]] = env._search_index_all_titles + self._all_titles: dict[str, list[tuple[str, str | None]]] = env._search_index_all_titles # docname -> list(index entry) self._index_entries: dict[str, list[tuple[str, str, str]]] = env._search_index_index_entries # objtype -> index @@ -369,6 +369,13 @@ class IndexBuilder: return rv def get_terms(self, fn2index: dict[str, int]) -> tuple[dict[str, list[int] | int], dict[str, list[int] | int]]: + """ + Return a mapping of document and title terms to their corresponding sorted document IDs. + + When a term is only found within a single document, then the value for that term will be + an integer value. When a term is found within multiple documents, the value will be a list + of integers. + """ rvs: tuple[dict[str, list[int] | int], dict[str, list[int] | int]] = ({}, {}) for rv, mapping in zip(rvs, (self._mapping, self._title_mapping)): for k, v in mapping.items(): @@ -391,7 +398,7 @@ class IndexBuilder: objtypes = {v: k[0] + ':' + k[1] for (k, v) in self._objtypes.items()} objnames = self._objnames - alltitles: dict[str, list[tuple[int, str]]] = {} + alltitles: dict[str, list[tuple[int, str | None]]] = {} for docname, titlelist in sorted(self._all_titles.items()): for title, titleid in titlelist: alltitles.setdefault(title, []).append((fn2index[docname], titleid)) @@ -502,9 +509,10 @@ class IndexBuilder: elif isinstance(node, nodes.Text): word_store.words.extend(split(node.astext())) elif isinstance(node, nodes.title): - title = node.astext() + title, is_main_title = node.astext(), len(word_store.titles) == 0 ids = node.parent['ids'] - word_store.titles.append((title, ids[0] if ids else None)) + title_node_id = None if is_main_title else ids[0] if ids else None + word_store.titles.append((title, title_node_id)) word_store.title_words.extend(split(title)) for child in node.children: _visit_nodes(child) diff --git a/sphinx/templates/apidoc/module.rst.jinja b/sphinx/templates/apidoc/module.rst.jinja new file mode 100644 index 0000000..2490278 --- /dev/null +++ b/sphinx/templates/apidoc/module.rst.jinja @@ -0,0 +1,9 @@ +{%- if show_headings %} +{{- [basename, "module"] | join(' ') | e | heading }} + +{% endif -%} +.. automodule:: {{ qualname }} +{%- for option in automodule_options %} + :{{ option }}: +{%- endfor %} + diff --git a/sphinx/templates/apidoc/module.rst_t b/sphinx/templates/apidoc/module.rst_t deleted file mode 100644 index 2490278..0000000 --- a/sphinx/templates/apidoc/module.rst_t +++ /dev/null @@ -1,9 +0,0 @@ -{%- if show_headings %} -{{- [basename, "module"] | join(' ') | e | heading }} - -{% endif -%} -.. automodule:: {{ qualname }} -{%- for option in automodule_options %} - :{{ option }}: -{%- endfor %} - diff --git a/sphinx/templates/apidoc/package.rst.jinja b/sphinx/templates/apidoc/package.rst.jinja new file mode 100644 index 0000000..2229c31 --- /dev/null +++ b/sphinx/templates/apidoc/package.rst.jinja @@ -0,0 +1,57 @@ +{%- macro automodule(modname, options) -%} +.. automodule:: {{ modname }} +{%- for option in options %} + :{{ option }}: +{%- endfor %} +{%- endmacro %} + +{%- macro toctree(docnames) -%} +.. toctree:: + :maxdepth: {{ maxdepth }} +{% for docname in docnames %} + {{ docname }} +{%- endfor %} +{%- endmacro %} + +{%- if is_namespace %} +{{- [pkgname, "namespace"] | join(" ") | e | heading }} +{% else %} +{{- [pkgname, "package"] | join(" ") | e | heading }} +{% endif %} + +{%- if is_namespace %} +.. py:module:: {{ pkgname }} +{% endif %} + +{%- if modulefirst and not is_namespace %} +{{ automodule(pkgname, automodule_options) }} +{% endif %} + +{%- if subpackages %} +Subpackages +----------- + +{{ toctree(subpackages) }} +{% endif %} + +{%- if submodules %} +Submodules +---------- +{% if separatemodules %} +{{ toctree(submodules) }} +{% else %} +{%- for submodule in submodules %} +{% if show_headings %} +{{- [submodule, "module"] | join(" ") | e | heading(2) }} +{% endif %} +{{ automodule(submodule, automodule_options) }} +{% endfor %} +{%- endif %} +{%- endif %} + +{%- if not modulefirst and not is_namespace %} +Module contents +--------------- + +{{ automodule(pkgname, automodule_options) }} +{% endif %} diff --git a/sphinx/templates/apidoc/package.rst_t b/sphinx/templates/apidoc/package.rst_t deleted file mode 100644 index 2229c31..0000000 --- a/sphinx/templates/apidoc/package.rst_t +++ /dev/null @@ -1,57 +0,0 @@ -{%- macro automodule(modname, options) -%} -.. automodule:: {{ modname }} -{%- for option in options %} - :{{ option }}: -{%- endfor %} -{%- endmacro %} - -{%- macro toctree(docnames) -%} -.. toctree:: - :maxdepth: {{ maxdepth }} -{% for docname in docnames %} - {{ docname }} -{%- endfor %} -{%- endmacro %} - -{%- if is_namespace %} -{{- [pkgname, "namespace"] | join(" ") | e | heading }} -{% else %} -{{- [pkgname, "package"] | join(" ") | e | heading }} -{% endif %} - -{%- if is_namespace %} -.. py:module:: {{ pkgname }} -{% endif %} - -{%- if modulefirst and not is_namespace %} -{{ automodule(pkgname, automodule_options) }} -{% endif %} - -{%- if subpackages %} -Subpackages ------------ - -{{ toctree(subpackages) }} -{% endif %} - -{%- if submodules %} -Submodules ----------- -{% if separatemodules %} -{{ toctree(submodules) }} -{% else %} -{%- for submodule in submodules %} -{% if show_headings %} -{{- [submodule, "module"] | join(" ") | e | heading(2) }} -{% endif %} -{{ automodule(submodule, automodule_options) }} -{% endfor %} -{%- endif %} -{%- endif %} - -{%- if not modulefirst and not is_namespace %} -Module contents ---------------- - -{{ automodule(pkgname, automodule_options) }} -{% endif %} diff --git a/sphinx/templates/apidoc/toc.rst.jinja b/sphinx/templates/apidoc/toc.rst.jinja new file mode 100644 index 0000000..f0877ee --- /dev/null +++ b/sphinx/templates/apidoc/toc.rst.jinja @@ -0,0 +1,8 @@ +{{ header | heading }} + +.. toctree:: + :maxdepth: {{ maxdepth }} +{% for docname in docnames %} + {{ docname }} +{%- endfor %} + diff --git a/sphinx/templates/apidoc/toc.rst_t b/sphinx/templates/apidoc/toc.rst_t deleted file mode 100644 index f0877ee..0000000 --- a/sphinx/templates/apidoc/toc.rst_t +++ /dev/null @@ -1,8 +0,0 @@ -{{ header | heading }} - -.. toctree:: - :maxdepth: {{ maxdepth }} -{% for docname in docnames %} - {{ docname }} -{%- endfor %} - diff --git a/sphinx/templates/epub3/content.opf.jinja b/sphinx/templates/epub3/content.opf.jinja new file mode 100644 index 0000000..417888c --- /dev/null +++ b/sphinx/templates/epub3/content.opf.jinja @@ -0,0 +1,50 @@ +<?xml version="1.0" encoding="UTF-8"?> +<package xmlns="http://www.idpf.org/2007/opf" version="{{ epub_version }}" xml:lang="{{ lang }}" + unique-identifier="{{ uid }}" + prefix="ibooks: http://vocabulary.itunes.apple.com/rdf/ibooks/vocabulary-extensions-1.0/"> + <metadata xmlns:opf="http://www.idpf.org/2007/opf" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <dc:language>{{ lang }}</dc:language> + <dc:title>{{ title }}</dc:title> + <dc:description>{{ description }}</dc:description> + <dc:creator>{{ author }}</dc:creator> + <dc:contributor>{{ contributor }}</dc:contributor> + <dc:publisher>{{ publisher }}</dc:publisher> + <dc:rights>{{ copyright }}</dc:rights> + {%- if epub_version == 3.1 %} + <dc:identifier id="{{ uid }}" opf:scheme="{{ scheme }}">{{ id }}</dc:identifier> + {%- else %} + <dc:identifier id="{{ uid }}">{{ id }}</dc:identifier> + {%- endif %} + <dc:date>{{ date }}</dc:date> + <meta property="dcterms:modified">{{ date }}</meta> + <meta property="ibooks:version">{{ version }}</meta> + <meta property="ibooks:specified-fonts">true</meta> + <meta property="ibooks:binding">true</meta> + <meta property="ibooks:scroll-axis">{{ ibook_scroll_axis }}</meta> + {%- if cover %} + <meta name="cover" content="{{ cover }}"/> + {%- endif %} + </metadata> + <manifest> + <item id="ncx" href="toc.ncx" media-type="application/x-dtbncx+xml" /> + <item id="nav" href="nav.xhtml" media-type="application/xhtml+xml" properties="nav"/> + {%- for item in manifest_items %} + <item id="{{ item.id }}" href="{{ item.href }}" media-type="{{ item.media_type }}" /> + {%- endfor %} + </manifest> + <spine toc="ncx" page-progression-direction="{{ page_progression_direction }}"> + {%- for spine in spines %} + {%- if spine.linear %} + <itemref idref="{{ spine.idref }}" /> + {%- else %} + <itemref idref="{{ spine.idref }}" linear="no" /> + {%- endif %} + {%- endfor %} + </spine> + <guide> + {%- for guide in guides %} + <reference type="{{ guide.type }}" title="{{ guide.title }}" href="{{ guide.uri }}" /> + {%- endfor %} + </guide> +</package> diff --git a/sphinx/templates/epub3/content.opf_t b/sphinx/templates/epub3/content.opf_t deleted file mode 100644 index 417888c..0000000 --- a/sphinx/templates/epub3/content.opf_t +++ /dev/null @@ -1,50 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<package xmlns="http://www.idpf.org/2007/opf" version="{{ epub_version }}" xml:lang="{{ lang }}" - unique-identifier="{{ uid }}" - prefix="ibooks: http://vocabulary.itunes.apple.com/rdf/ibooks/vocabulary-extensions-1.0/"> - <metadata xmlns:opf="http://www.idpf.org/2007/opf" - xmlns:dc="http://purl.org/dc/elements/1.1/"> - <dc:language>{{ lang }}</dc:language> - <dc:title>{{ title }}</dc:title> - <dc:description>{{ description }}</dc:description> - <dc:creator>{{ author }}</dc:creator> - <dc:contributor>{{ contributor }}</dc:contributor> - <dc:publisher>{{ publisher }}</dc:publisher> - <dc:rights>{{ copyright }}</dc:rights> - {%- if epub_version == 3.1 %} - <dc:identifier id="{{ uid }}" opf:scheme="{{ scheme }}">{{ id }}</dc:identifier> - {%- else %} - <dc:identifier id="{{ uid }}">{{ id }}</dc:identifier> - {%- endif %} - <dc:date>{{ date }}</dc:date> - <meta property="dcterms:modified">{{ date }}</meta> - <meta property="ibooks:version">{{ version }}</meta> - <meta property="ibooks:specified-fonts">true</meta> - <meta property="ibooks:binding">true</meta> - <meta property="ibooks:scroll-axis">{{ ibook_scroll_axis }}</meta> - {%- if cover %} - <meta name="cover" content="{{ cover }}"/> - {%- endif %} - </metadata> - <manifest> - <item id="ncx" href="toc.ncx" media-type="application/x-dtbncx+xml" /> - <item id="nav" href="nav.xhtml" media-type="application/xhtml+xml" properties="nav"/> - {%- for item in manifest_items %} - <item id="{{ item.id }}" href="{{ item.href }}" media-type="{{ item.media_type }}" /> - {%- endfor %} - </manifest> - <spine toc="ncx" page-progression-direction="{{ page_progression_direction }}"> - {%- for spine in spines %} - {%- if spine.linear %} - <itemref idref="{{ spine.idref }}" /> - {%- else %} - <itemref idref="{{ spine.idref }}" linear="no" /> - {%- endif %} - {%- endfor %} - </spine> - <guide> - {%- for guide in guides %} - <reference type="{{ guide.type }}" title="{{ guide.title }}" href="{{ guide.uri }}" /> - {%- endfor %} - </guide> -</package> diff --git a/sphinx/templates/epub3/nav.xhtml.jinja b/sphinx/templates/epub3/nav.xhtml.jinja new file mode 100644 index 0000000..2a32c20 --- /dev/null +++ b/sphinx/templates/epub3/nav.xhtml.jinja @@ -0,0 +1,26 @@ +{%- macro toctree(navlist) -%} +<ol> +{%- for nav in navlist %} + <li> + <a href="{{ nav.refuri }}">{{ nav.text }}</a> + {%- if nav.children %} +{{ toctree(nav.children)|indent(4, true) }} + {%- endif %} + </li> +{%- endfor %} +</ol> +{%- endmacro -%} +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE html> +<html xmlns="http://www.w3.org/1999/xhtml" + xmlns:epub="http://www.idpf.org/2007/ops" lang="{{ lang }}" xml:lang="{{ lang }}"> + <head> + <title>{{ toc_locale }} + + + + + diff --git a/sphinx/templates/epub3/nav.xhtml_t b/sphinx/templates/epub3/nav.xhtml_t deleted file mode 100644 index 2a32c20..0000000 --- a/sphinx/templates/epub3/nav.xhtml_t +++ /dev/null @@ -1,26 +0,0 @@ -{%- macro toctree(navlist) -%} -
      -{%- for nav in navlist %} -
    1. - {{ nav.text }} - {%- if nav.children %} -{{ toctree(nav.children)|indent(4, true) }} - {%- endif %} -
    2. -{%- endfor %} -
    -{%- endmacro -%} - - - - - {{ toc_locale }} - - - - - diff --git a/sphinx/templates/epub3/toc.ncx.jinja b/sphinx/templates/epub3/toc.ncx.jinja new file mode 100644 index 0000000..0ea7ca3 --- /dev/null +++ b/sphinx/templates/epub3/toc.ncx.jinja @@ -0,0 +1,24 @@ +{%- macro navPoints(navlist) %} +{%- for nav in navlist %} + + + {{ nav.text }} + + {{ navPoints(nav.children)|indent(2, true) }} + +{%- endfor %} +{%- endmacro -%} + + + + + + + + + + {{ title }} + + {{ navPoints(navpoints)|indent(4, true) }} + + diff --git a/sphinx/templates/epub3/toc.ncx_t b/sphinx/templates/epub3/toc.ncx_t deleted file mode 100644 index 0ea7ca3..0000000 --- a/sphinx/templates/epub3/toc.ncx_t +++ /dev/null @@ -1,24 +0,0 @@ -{%- macro navPoints(navlist) %} -{%- for nav in navlist %} - - - {{ nav.text }} - - {{ navPoints(nav.children)|indent(2, true) }} - -{%- endfor %} -{%- endmacro -%} - - - - - - - - - - {{ title }} - - {{ navPoints(navpoints)|indent(4, true) }} - - diff --git a/sphinx/templates/gettext/message.pot.jinja b/sphinx/templates/gettext/message.pot.jinja new file mode 100644 index 0000000..6138f54 --- /dev/null +++ b/sphinx/templates/gettext/message.pot.jinja @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) {{ copyright }} +# This file is distributed under the same license as the {{ project }} package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: {{ project|e }} {{ version|e }}\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: {{ ctime|e }}\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: {{ last_translator|e }}\n" +"Language-Team: {{ language_team|e }}\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +{% for message in messages %} +{% if display_location -%} +{% for source, line in message.locations -%} +#: {{ relpath(source) }}:{{ line }} +{% endfor -%} +{% endif -%} + +{% if display_uuid -%} +{% for uuid in message.uuids -%} +#: {{ uuid }} +{% endfor -%} +{% endif -%} + +msgid "{{ message.text|e }}" +msgstr "" +{% endfor -%} diff --git a/sphinx/templates/gettext/message.pot_t b/sphinx/templates/gettext/message.pot_t deleted file mode 100644 index 6138f54..0000000 --- a/sphinx/templates/gettext/message.pot_t +++ /dev/null @@ -1,33 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) {{ copyright }} -# This file is distributed under the same license as the {{ project }} package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: {{ project|e }} {{ version|e }}\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: {{ ctime|e }}\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: {{ last_translator|e }}\n" -"Language-Team: {{ language_team|e }}\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -{% for message in messages %} -{% if display_location -%} -{% for source, line in message.locations -%} -#: {{ relpath(source) }}:{{ line }} -{% endfor -%} -{% endif -%} - -{% if display_uuid -%} -{% for uuid in message.uuids -%} -#: {{ uuid }} -{% endfor -%} -{% endif -%} - -msgid "{{ message.text|e }}" -msgstr "" -{% endfor -%} diff --git a/sphinx/templates/imgmath/preview.tex.jinja b/sphinx/templates/imgmath/preview.tex.jinja new file mode 100644 index 0000000..f3fdcda --- /dev/null +++ b/sphinx/templates/imgmath/preview.tex.jinja @@ -0,0 +1,18 @@ +\documentclass[12pt]{article} +\usepackage[utf8]{inputenc} +\usepackage{amsmath} +\usepackage{amsthm} +\usepackage{amssymb} +\usepackage{amsfonts} +\usepackage{anyfontsize} +\usepackage{bm} +\pagestyle{empty} +<%= preamble %> + +\usepackage[active<%= tightpage %>]{preview} + +\begin{document} +\begin{preview} +\fontsize{<%= fontsize %>}{<%= baselineskip %>}\selectfont <%= math %> +\end{preview} +\end{document} diff --git a/sphinx/templates/imgmath/preview.tex_t b/sphinx/templates/imgmath/preview.tex_t deleted file mode 100644 index f3fdcda..0000000 --- a/sphinx/templates/imgmath/preview.tex_t +++ /dev/null @@ -1,18 +0,0 @@ -\documentclass[12pt]{article} -\usepackage[utf8]{inputenc} -\usepackage{amsmath} -\usepackage{amsthm} -\usepackage{amssymb} -\usepackage{amsfonts} -\usepackage{anyfontsize} -\usepackage{bm} -\pagestyle{empty} -<%= preamble %> - -\usepackage[active<%= tightpage %>]{preview} - -\begin{document} -\begin{preview} -\fontsize{<%= fontsize %>}{<%= baselineskip %>}\selectfont <%= math %> -\end{preview} -\end{document} diff --git a/sphinx/templates/imgmath/template.tex.jinja b/sphinx/templates/imgmath/template.tex.jinja new file mode 100644 index 0000000..92fa8b0 --- /dev/null +++ b/sphinx/templates/imgmath/template.tex.jinja @@ -0,0 +1,14 @@ +\documentclass[12pt]{article} +\usepackage[utf8]{inputenc} +\usepackage{amsmath} +\usepackage{amsthm} +\usepackage{amssymb} +\usepackage{amsfonts} +\usepackage{anyfontsize} +\usepackage{bm} +\pagestyle{empty} +<%= preamble %> + +\begin{document} +\fontsize{<%= fontsize %>}{<%= baselineskip %>}\selectfont <%= math %> +\end{document} diff --git a/sphinx/templates/imgmath/template.tex_t b/sphinx/templates/imgmath/template.tex_t deleted file mode 100644 index 92fa8b0..0000000 --- a/sphinx/templates/imgmath/template.tex_t +++ /dev/null @@ -1,14 +0,0 @@ -\documentclass[12pt]{article} -\usepackage[utf8]{inputenc} -\usepackage{amsmath} -\usepackage{amsthm} -\usepackage{amssymb} -\usepackage{amsfonts} -\usepackage{anyfontsize} -\usepackage{bm} -\pagestyle{empty} -<%= preamble %> - -\begin{document} -\fontsize{<%= fontsize %>}{<%= baselineskip %>}\selectfont <%= math %> -\end{document} diff --git a/sphinx/templates/latex/latex.tex.jinja b/sphinx/templates/latex/latex.tex.jinja new file mode 100644 index 0000000..deb0305 --- /dev/null +++ b/sphinx/templates/latex/latex.tex.jinja @@ -0,0 +1,108 @@ +%% Generated by Sphinx. +\def\sphinxdocclass{<%= docclass %>} +<% if latex_engine == 'lualatex' -%> +\IfFileExists{luatex85.sty} + {\RequirePackage{luatex85}} + {\ifdefined\luatexversion\ifnum\luatexversion>84\relax + \PackageError{sphinx} + {** With this LuaTeX (\the\luatexversion),Sphinx requires luatex85.sty **} + {** Add the LaTeX package luatex85 to your TeX installation, and try again **} + \endinput\fi\fi} +<% endif -%> +\documentclass[<%= papersize %>,<%= pointsize %><%= classoptions %>]{<%= wrapperclass %>} +\ifdefined\pdfpxdimen + \let\sphinxpxdimen\pdfpxdimen\else\newdimen\sphinxpxdimen +\fi \sphinxpxdimen=<%= pxunit %>\relax +\ifdefined\pdfimageresolution + \pdfimageresolution= \numexpr \dimexpr1in\relax/\sphinxpxdimen\relax +\fi +%% let collapsible pdf bookmarks panel have high depth per default +\PassOptionsToPackage{bookmarksdepth=5}{hyperref} +<% if use_xindy -%> +%% turn off hyperref patch of \index as sphinx.xdy xindy module takes care of +%% suitable \hyperpage mark-up, working around hyperref-xindy incompatibility +\PassOptionsToPackage{hyperindex=false}{hyperref} +%% memoir class requires extra handling +\makeatletter\@ifclassloaded{memoir} +{\ifdefined\memhyperindexfalse\memhyperindexfalse\fi}{}\makeatother +<% endif %> +<% if booktabs -%> +\PassOptionsToPackage{booktabs}{sphinx} +<% endif -%> +<% if borderless -%> +\PassOptionsToPackage{borderless}{sphinx} +<% endif -%> +<% if colorrows -%> +\PassOptionsToPackage{colorrows}{sphinx} +<% endif -%> +<%= passoptionstopackages %> +\PassOptionsToPackage{warn}{textcomp} +<%= inputenc %> +<%= utf8extra %> +<%= cmappkg %> +<%= fontenc %> +<%= amsmath %> +<%= multilingual %> +<%= substitutefont %> +<%= textcyrillic %> +<%= fontpkg %> +<%= fontsubstitution %> +<%= textgreek %> +<%= fncychap %> +\usepackage<%= sphinxpkgoptions %>{sphinx} +<%= sphinxsetup %> +<%= fvset %> +<%= geometry %> +<%= extrapackages %> + +<%- for name, option in packages %> +<%- if option %> +\usepackage[<%= option %>]{<%= name %>} +<%- else %> +\usepackage{<%= name %>} +<%- endif %> +<%- endfor %> + +<%= hyperref %> +<%- for name, option in packages_after_hyperref %> +<%- if option %> +\usepackage[<%= option %>]{<%= name %>} +<%- else %> +\usepackage{<%= name %>} +<%- endif %> +<%- endfor %> + +<%= contentsname %> +\usepackage{sphinxmessages} +<%= tocdepth %> +<%= secnumdepth %> +<%= preamble %> + +\title{<%= title %>} +\date{<%= date %>} +\release{<%= release | e %>} +\author{<%= author %>} +<%- if logofilename %> +\newcommand{\sphinxlogo}{\sphinxincludegraphics{<%= logofilename %>}\par} +<%- else %> +\newcommand{\sphinxlogo}{\vbox{}} +<%- endif %> +<%- if releasename or release %> +\renewcommand{\releasename}{<%= releasename or _('Release') | e %>} +<%- else %> +\renewcommand{\releasename}{} +<%- endif %> +<%= makeindex %> +\begin{document} +<%= shorthandoff %> +\pagestyle{empty} +<%= maketitle %> +\pagestyle{plain} +<%= tableofcontents %> +\pagestyle{normal} +<%= body %> +<%= atendofbody %> +<%= indices %> +\renewcommand{\indexname}{<%= _('Index') | e %>} +<%= printindex %> +\end{document} diff --git a/sphinx/templates/latex/latex.tex_t b/sphinx/templates/latex/latex.tex_t deleted file mode 100644 index deb0305..0000000 --- a/sphinx/templates/latex/latex.tex_t +++ /dev/null @@ -1,108 +0,0 @@ -%% Generated by Sphinx. -\def\sphinxdocclass{<%= docclass %>} -<% if latex_engine == 'lualatex' -%> -\IfFileExists{luatex85.sty} - {\RequirePackage{luatex85}} - {\ifdefined\luatexversion\ifnum\luatexversion>84\relax - \PackageError{sphinx} - {** With this LuaTeX (\the\luatexversion),Sphinx requires luatex85.sty **} - {** Add the LaTeX package luatex85 to your TeX installation, and try again **} - \endinput\fi\fi} -<% endif -%> -\documentclass[<%= papersize %>,<%= pointsize %><%= classoptions %>]{<%= wrapperclass %>} -\ifdefined\pdfpxdimen - \let\sphinxpxdimen\pdfpxdimen\else\newdimen\sphinxpxdimen -\fi \sphinxpxdimen=<%= pxunit %>\relax -\ifdefined\pdfimageresolution - \pdfimageresolution= \numexpr \dimexpr1in\relax/\sphinxpxdimen\relax -\fi -%% let collapsible pdf bookmarks panel have high depth per default -\PassOptionsToPackage{bookmarksdepth=5}{hyperref} -<% if use_xindy -%> -%% turn off hyperref patch of \index as sphinx.xdy xindy module takes care of -%% suitable \hyperpage mark-up, working around hyperref-xindy incompatibility -\PassOptionsToPackage{hyperindex=false}{hyperref} -%% memoir class requires extra handling -\makeatletter\@ifclassloaded{memoir} -{\ifdefined\memhyperindexfalse\memhyperindexfalse\fi}{}\makeatother -<% endif %> -<% if booktabs -%> -\PassOptionsToPackage{booktabs}{sphinx} -<% endif -%> -<% if borderless -%> -\PassOptionsToPackage{borderless}{sphinx} -<% endif -%> -<% if colorrows -%> -\PassOptionsToPackage{colorrows}{sphinx} -<% endif -%> -<%= passoptionstopackages %> -\PassOptionsToPackage{warn}{textcomp} -<%= inputenc %> -<%= utf8extra %> -<%= cmappkg %> -<%= fontenc %> -<%= amsmath %> -<%= multilingual %> -<%= substitutefont %> -<%= textcyrillic %> -<%= fontpkg %> -<%= fontsubstitution %> -<%= textgreek %> -<%= fncychap %> -\usepackage<%= sphinxpkgoptions %>{sphinx} -<%= sphinxsetup %> -<%= fvset %> -<%= geometry %> -<%= extrapackages %> - -<%- for name, option in packages %> -<%- if option %> -\usepackage[<%= option %>]{<%= name %>} -<%- else %> -\usepackage{<%= name %>} -<%- endif %> -<%- endfor %> - -<%= hyperref %> -<%- for name, option in packages_after_hyperref %> -<%- if option %> -\usepackage[<%= option %>]{<%= name %>} -<%- else %> -\usepackage{<%= name %>} -<%- endif %> -<%- endfor %> - -<%= contentsname %> -\usepackage{sphinxmessages} -<%= tocdepth %> -<%= secnumdepth %> -<%= preamble %> - -\title{<%= title %>} -\date{<%= date %>} -\release{<%= release | e %>} -\author{<%= author %>} -<%- if logofilename %> -\newcommand{\sphinxlogo}{\sphinxincludegraphics{<%= logofilename %>}\par} -<%- else %> -\newcommand{\sphinxlogo}{\vbox{}} -<%- endif %> -<%- if releasename or release %> -\renewcommand{\releasename}{<%= releasename or _('Release') | e %>} -<%- else %> -\renewcommand{\releasename}{} -<%- endif %> -<%= makeindex %> -\begin{document} -<%= shorthandoff %> -\pagestyle{empty} -<%= maketitle %> -\pagestyle{plain} -<%= tableofcontents %> -\pagestyle{normal} -<%= body %> -<%= atendofbody %> -<%= indices %> -\renewcommand{\indexname}{<%= _('Index') | e %>} -<%= printindex %> -\end{document} diff --git a/sphinx/templates/latex/longtable.tex.jinja b/sphinx/templates/latex/longtable.tex.jinja new file mode 100644 index 0000000..83790f4 --- /dev/null +++ b/sphinx/templates/latex/longtable.tex.jinja @@ -0,0 +1,74 @@ +\begin{savenotes} +\sphinxatlongtablestart +\sphinxthistablewithglobalstyle +<% if 'booktabs' in table.styles -%> +\sphinxthistablewithbooktabsstyle +<% endif -%> +<% if 'borderless' in table.styles -%> +\sphinxthistablewithborderlessstyle +<% endif -%> +<% if 'standard' in table.styles -%> +\sphinxthistablewithstandardstyle +<% endif -%> +<% if 'vlines' in table.styles -%> +\sphinxthistablewithvlinesstyle +<% endif -%> +<% if 'novlines' in table.styles -%> +\sphinxthistablewithnovlinesstyle +<% endif -%> +<% if 'colorrows' in table.styles -%> +\sphinxthistablewithcolorrowsstyle +<% endif -%> +<% if 'nocolorrows' in table.styles -%> +\sphinxthistablewithnocolorrowsstyle +<% endif -%> +\makeatletter +<%- if table.align in ('center', 'default') %> + \LTleft \@totalleftmargin plus1fill + \LTright\dimexpr\columnwidth-\@totalleftmargin-\linewidth\relax plus1fill +<%- elif table.align == 'left' %> + \LTleft \@totalleftmargin + \LTright\dimexpr\columnwidth-\@totalleftmargin-\linewidth\relax plus1fill +<%- elif table.align == 'right' %> + \LTleft \@totalleftmargin plus1fill + \LTright\dimexpr\columnwidth-\@totalleftmargin-\linewidth\relax +<%- endif %> +\makeatother +\begin{longtable}<%= table.get_colspec() %> +<%- if table.caption -%> +\sphinxthelongtablecaptionisattop +\caption{<%= ''.join(table.caption) %>\strut}<%= labels %>\\*[\sphinxlongtablecapskipadjust] +<% elif labels -%> +\noalign{\phantomsection<%= labels %>}% +<% endif -%> +\sphinxtoprule +<%= ''.join(table.header) -%> +<%- if table.header -%> +\sphinxmidrule +<% endif -%> +\endfirsthead + +\multicolumn{<%= table.colcount %>}{c}{\sphinxnorowcolor + \makebox[0pt]{\sphinxtablecontinued{\tablename\ \thetable{} \textendash{} <%= _('continued from previous page') %>}}% +}\\ +\sphinxtoprule +<%= ''.join(table.header) -%> +<%- if table.header -%> +\sphinxmidrule +<% endif -%> +\endhead + +\sphinxbottomrule +\multicolumn{<%= table.colcount %>}{r}{\sphinxnorowcolor + \makebox[0pt][r]{\sphinxtablecontinued{<%= _('continues on next page') %>}}% +}\\ +\endfoot + +\endlastfoot +\sphinxtableatstartofbodyhook +<%= ''.join(table.body) -%> +\sphinxbottomrule +\end{longtable} +\sphinxtableafterendhook +\sphinxatlongtableend +\end{savenotes} diff --git a/sphinx/templates/latex/longtable.tex_t b/sphinx/templates/latex/longtable.tex_t deleted file mode 100644 index 83790f4..0000000 --- a/sphinx/templates/latex/longtable.tex_t +++ /dev/null @@ -1,74 +0,0 @@ -\begin{savenotes} -\sphinxatlongtablestart -\sphinxthistablewithglobalstyle -<% if 'booktabs' in table.styles -%> -\sphinxthistablewithbooktabsstyle -<% endif -%> -<% if 'borderless' in table.styles -%> -\sphinxthistablewithborderlessstyle -<% endif -%> -<% if 'standard' in table.styles -%> -\sphinxthistablewithstandardstyle -<% endif -%> -<% if 'vlines' in table.styles -%> -\sphinxthistablewithvlinesstyle -<% endif -%> -<% if 'novlines' in table.styles -%> -\sphinxthistablewithnovlinesstyle -<% endif -%> -<% if 'colorrows' in table.styles -%> -\sphinxthistablewithcolorrowsstyle -<% endif -%> -<% if 'nocolorrows' in table.styles -%> -\sphinxthistablewithnocolorrowsstyle -<% endif -%> -\makeatletter -<%- if table.align in ('center', 'default') %> - \LTleft \@totalleftmargin plus1fill - \LTright\dimexpr\columnwidth-\@totalleftmargin-\linewidth\relax plus1fill -<%- elif table.align == 'left' %> - \LTleft \@totalleftmargin - \LTright\dimexpr\columnwidth-\@totalleftmargin-\linewidth\relax plus1fill -<%- elif table.align == 'right' %> - \LTleft \@totalleftmargin plus1fill - \LTright\dimexpr\columnwidth-\@totalleftmargin-\linewidth\relax -<%- endif %> -\makeatother -\begin{longtable}<%= table.get_colspec() %> -<%- if table.caption -%> -\sphinxthelongtablecaptionisattop -\caption{<%= ''.join(table.caption) %>\strut}<%= labels %>\\*[\sphinxlongtablecapskipadjust] -<% elif labels -%> -\noalign{\phantomsection<%= labels %>}% -<% endif -%> -\sphinxtoprule -<%= ''.join(table.header) -%> -<%- if table.header -%> -\sphinxmidrule -<% endif -%> -\endfirsthead - -\multicolumn{<%= table.colcount %>}{c}{\sphinxnorowcolor - \makebox[0pt]{\sphinxtablecontinued{\tablename\ \thetable{} \textendash{} <%= _('continued from previous page') %>}}% -}\\ -\sphinxtoprule -<%= ''.join(table.header) -%> -<%- if table.header -%> -\sphinxmidrule -<% endif -%> -\endhead - -\sphinxbottomrule -\multicolumn{<%= table.colcount %>}{r}{\sphinxnorowcolor - \makebox[0pt][r]{\sphinxtablecontinued{<%= _('continues on next page') %>}}% -}\\ -\endfoot - -\endlastfoot -\sphinxtableatstartofbodyhook -<%= ''.join(table.body) -%> -\sphinxbottomrule -\end{longtable} -\sphinxtableafterendhook -\sphinxatlongtableend -\end{savenotes} diff --git a/sphinx/templates/latex/sphinxmessages.sty.jinja b/sphinx/templates/latex/sphinxmessages.sty.jinja new file mode 100644 index 0000000..ef2750f --- /dev/null +++ b/sphinx/templates/latex/sphinxmessages.sty.jinja @@ -0,0 +1,21 @@ +% +% sphinxmessages.sty +% +% message resources for Sphinx +% +\ProvidesPackage{sphinxmessages}[2019/01/04 v2.0 Localized LaTeX macros (Sphinx team)] + +\renewcommand{\literalblockcontinuedname}{<%= _('continued from previous page') | e %>} +\renewcommand{\literalblockcontinuesname}{<%= _('continues on next page') | e %>} +\renewcommand{\sphinxnonalphabeticalgroupname}{<%= _('Non-alphabetical') | e %>} +\renewcommand{\sphinxsymbolsname}{<%= _('Symbols') | e %>} +\renewcommand{\sphinxnumbersname}{<%= _('Numbers') | e %>} +\def\pageautorefname{<%= _('page') | e %>} + +<%= addtocaptions %>{\renewcommand{\figurename}{<%= figurename[0] | e | eabbr %>}} +\def\fnum@figure{\figurename\thefigure{}<%= figurename[1] | e %>} + +<%= addtocaptions %>{\renewcommand{\tablename}{<%= tablename[0] | e | eabbr %>}} +\def\fnum@table{\tablename\thetable{}<%= tablename[1] | e %>} + +<%= addtocaptions %>{\renewcommand{\literalblockname}{<%= literalblockname[0].strip() %>}} diff --git a/sphinx/templates/latex/sphinxmessages.sty_t b/sphinx/templates/latex/sphinxmessages.sty_t deleted file mode 100644 index ef2750f..0000000 --- a/sphinx/templates/latex/sphinxmessages.sty_t +++ /dev/null @@ -1,21 +0,0 @@ -% -% sphinxmessages.sty -% -% message resources for Sphinx -% -\ProvidesPackage{sphinxmessages}[2019/01/04 v2.0 Localized LaTeX macros (Sphinx team)] - -\renewcommand{\literalblockcontinuedname}{<%= _('continued from previous page') | e %>} -\renewcommand{\literalblockcontinuesname}{<%= _('continues on next page') | e %>} -\renewcommand{\sphinxnonalphabeticalgroupname}{<%= _('Non-alphabetical') | e %>} -\renewcommand{\sphinxsymbolsname}{<%= _('Symbols') | e %>} -\renewcommand{\sphinxnumbersname}{<%= _('Numbers') | e %>} -\def\pageautorefname{<%= _('page') | e %>} - -<%= addtocaptions %>{\renewcommand{\figurename}{<%= figurename[0] | e | eabbr %>}} -\def\fnum@figure{\figurename\thefigure{}<%= figurename[1] | e %>} - -<%= addtocaptions %>{\renewcommand{\tablename}{<%= tablename[0] | e | eabbr %>}} -\def\fnum@table{\tablename\thetable{}<%= tablename[1] | e %>} - -<%= addtocaptions %>{\renewcommand{\literalblockname}{<%= literalblockname[0].strip() %>}} diff --git a/sphinx/templates/latex/tabular.tex.jinja b/sphinx/templates/latex/tabular.tex.jinja new file mode 100644 index 0000000..0a9310a --- /dev/null +++ b/sphinx/templates/latex/tabular.tex.jinja @@ -0,0 +1,54 @@ +\begin{savenotes}\sphinxattablestart +\sphinxthistablewithglobalstyle +<% if 'booktabs' in table.styles -%> +\sphinxthistablewithbooktabsstyle +<% endif -%> +<% if 'borderless' in table.styles -%> +\sphinxthistablewithborderlessstyle +<% endif -%> +<% if 'standard' in table.styles -%> +\sphinxthistablewithstandardstyle +<% endif -%> +<% if 'vlines' in table.styles -%> +\sphinxthistablewithvlinesstyle +<% endif -%> +<% if 'novlines' in table.styles -%> +\sphinxthistablewithnovlinesstyle +<% endif -%> +<% if 'colorrows' in table.styles -%> +\sphinxthistablewithcolorrowsstyle +<% endif -%> +<% if 'nocolorrows' in table.styles -%> +\sphinxthistablewithnocolorrowsstyle +<% endif -%> +<% if table.align -%> + <%- if table.align in ('center', 'default') -%> + \centering + <%- elif table.align == 'left' -%> + \raggedright + <%- else -%> + \raggedleft + <%- endif %> +<%- else -%> + \centering +<%- endif %> +<% if table.caption -%> +\sphinxcapstartof{table} +\sphinxthecaptionisattop +\sphinxcaption{<%= ''.join(table.caption) %>}<%= labels %> +\sphinxaftertopcaption +<% elif labels -%> +\phantomsection<%= labels %>\nobreak +<% endif -%> +\begin{tabular}[t]<%= table.get_colspec() -%> +\sphinxtoprule +<%= ''.join(table.header) -%> +<%- if table.header -%> +\sphinxmidrule +<% endif -%> +\sphinxtableatstartofbodyhook +<%=- ''.join(table.body) -%> +\sphinxbottomrule +\end{tabular} +\sphinxtableafterendhook\par +\sphinxattableend\end{savenotes} diff --git a/sphinx/templates/latex/tabular.tex_t b/sphinx/templates/latex/tabular.tex_t deleted file mode 100644 index 0a9310a..0000000 --- a/sphinx/templates/latex/tabular.tex_t +++ /dev/null @@ -1,54 +0,0 @@ -\begin{savenotes}\sphinxattablestart -\sphinxthistablewithglobalstyle -<% if 'booktabs' in table.styles -%> -\sphinxthistablewithbooktabsstyle -<% endif -%> -<% if 'borderless' in table.styles -%> -\sphinxthistablewithborderlessstyle -<% endif -%> -<% if 'standard' in table.styles -%> -\sphinxthistablewithstandardstyle -<% endif -%> -<% if 'vlines' in table.styles -%> -\sphinxthistablewithvlinesstyle -<% endif -%> -<% if 'novlines' in table.styles -%> -\sphinxthistablewithnovlinesstyle -<% endif -%> -<% if 'colorrows' in table.styles -%> -\sphinxthistablewithcolorrowsstyle -<% endif -%> -<% if 'nocolorrows' in table.styles -%> -\sphinxthistablewithnocolorrowsstyle -<% endif -%> -<% if table.align -%> - <%- if table.align in ('center', 'default') -%> - \centering - <%- elif table.align == 'left' -%> - \raggedright - <%- else -%> - \raggedleft - <%- endif %> -<%- else -%> - \centering -<%- endif %> -<% if table.caption -%> -\sphinxcapstartof{table} -\sphinxthecaptionisattop -\sphinxcaption{<%= ''.join(table.caption) %>}<%= labels %> -\sphinxaftertopcaption -<% elif labels -%> -\phantomsection<%= labels %>\nobreak -<% endif -%> -\begin{tabular}[t]<%= table.get_colspec() -%> -\sphinxtoprule -<%= ''.join(table.header) -%> -<%- if table.header -%> -\sphinxmidrule -<% endif -%> -\sphinxtableatstartofbodyhook -<%=- ''.join(table.body) -%> -\sphinxbottomrule -\end{tabular} -\sphinxtableafterendhook\par -\sphinxattableend\end{savenotes} diff --git a/sphinx/templates/latex/tabulary.tex.jinja b/sphinx/templates/latex/tabulary.tex.jinja new file mode 100644 index 0000000..6ebcec6 --- /dev/null +++ b/sphinx/templates/latex/tabulary.tex.jinja @@ -0,0 +1,54 @@ +\begin{savenotes}\sphinxattablestart +\sphinxthistablewithglobalstyle +<% if 'booktabs' in table.styles -%> +\sphinxthistablewithbooktabsstyle +<% endif -%> +<% if 'borderless' in table.styles -%> +\sphinxthistablewithborderlessstyle +<% endif -%> +<% if 'standard' in table.styles -%> +\sphinxthistablewithstandardstyle +<% endif -%> +<% if 'vlines' in table.styles -%> +\sphinxthistablewithvlinesstyle +<% endif -%> +<% if 'novlines' in table.styles -%> +\sphinxthistablewithnovlinesstyle +<% endif -%> +<% if 'colorrows' in table.styles -%> +\sphinxthistablewithcolorrowsstyle +<% endif -%> +<% if 'nocolorrows' in table.styles -%> +\sphinxthistablewithnocolorrowsstyle +<% endif -%> +<% if table.align -%> + <%- if table.align in ('center', 'default') -%> + \centering + <%- elif table.align == 'left' -%> + \raggedright + <%- else -%> + \raggedleft + <%- endif %> +<%- else -%> + \centering +<%- endif %> +<% if table.caption -%> +\sphinxcapstartof{table} +\sphinxthecaptionisattop +\sphinxcaption{<%= ''.join(table.caption) %>}<%= labels %> +\sphinxaftertopcaption +<% elif labels -%> +\phantomsection<%= labels %>\nobreak +<% endif -%> +\begin{tabulary}{\linewidth}[t]<%= table.get_colspec() -%> +\sphinxtoprule +<%= ''.join(table.header) -%> +<%- if table.header -%> +\sphinxmidrule +<% endif -%> +\sphinxtableatstartofbodyhook +<%=- ''.join(table.body) -%> +\sphinxbottomrule +\end{tabulary} +\sphinxtableafterendhook\par +\sphinxattableend\end{savenotes} diff --git a/sphinx/templates/latex/tabulary.tex_t b/sphinx/templates/latex/tabulary.tex_t deleted file mode 100644 index 6ebcec6..0000000 --- a/sphinx/templates/latex/tabulary.tex_t +++ /dev/null @@ -1,54 +0,0 @@ -\begin{savenotes}\sphinxattablestart -\sphinxthistablewithglobalstyle -<% if 'booktabs' in table.styles -%> -\sphinxthistablewithbooktabsstyle -<% endif -%> -<% if 'borderless' in table.styles -%> -\sphinxthistablewithborderlessstyle -<% endif -%> -<% if 'standard' in table.styles -%> -\sphinxthistablewithstandardstyle -<% endif -%> -<% if 'vlines' in table.styles -%> -\sphinxthistablewithvlinesstyle -<% endif -%> -<% if 'novlines' in table.styles -%> -\sphinxthistablewithnovlinesstyle -<% endif -%> -<% if 'colorrows' in table.styles -%> -\sphinxthistablewithcolorrowsstyle -<% endif -%> -<% if 'nocolorrows' in table.styles -%> -\sphinxthistablewithnocolorrowsstyle -<% endif -%> -<% if table.align -%> - <%- if table.align in ('center', 'default') -%> - \centering - <%- elif table.align == 'left' -%> - \raggedright - <%- else -%> - \raggedleft - <%- endif %> -<%- else -%> - \centering -<%- endif %> -<% if table.caption -%> -\sphinxcapstartof{table} -\sphinxthecaptionisattop -\sphinxcaption{<%= ''.join(table.caption) %>}<%= labels %> -\sphinxaftertopcaption -<% elif labels -%> -\phantomsection<%= labels %>\nobreak -<% endif -%> -\begin{tabulary}{\linewidth}[t]<%= table.get_colspec() -%> -\sphinxtoprule -<%= ''.join(table.header) -%> -<%- if table.header -%> -\sphinxmidrule -<% endif -%> -\sphinxtableatstartofbodyhook -<%=- ''.join(table.body) -%> -\sphinxbottomrule -\end{tabulary} -\sphinxtableafterendhook\par -\sphinxattableend\end{savenotes} diff --git a/sphinx/templates/quickstart/Makefile.jinja b/sphinx/templates/quickstart/Makefile.jinja new file mode 100644 index 0000000..14b2dc5 --- /dev/null +++ b/sphinx/templates/quickstart/Makefile.jinja @@ -0,0 +1,98 @@ +# Makefile for Sphinx documentation +# + +# You can set these variables from the command line. +SPHINXOPTS ?= +SPHINXBUILD ?= sphinx-build +PAPER ?= +SOURCEDIR = {{ rsrcdir }} +BUILDDIR = {{ rbuilddir }} + +# Internal variables. +PAPEROPT_a4 = -D latex_elements.papersize=a4paper +PAPEROPT_letter = -D latex_elements.papersize=letterpaper +# $(O) is meant as a shortcut for $(SPHINXOPTS) +ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) $(O) $(SOURCEDIR) +# the i18n builder cannot share the environment and doctrees with the others +I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) $(O) $(SOURCEDIR) + +.PHONY: help +help: + @echo "Please use \`make ' where is one of" + @echo " html to make standalone HTML files" + @echo " dirhtml to make HTML files named index.html in directories" + @echo " singlehtml to make a single large HTML file" + @echo " pickle to make pickle files" + @echo " json to make JSON files" + @echo " htmlhelp to make HTML files and an HTML help project" + @echo " qthelp to make HTML files and a qthelp project" + @echo " applehelp to make an Apple Help Book" + @echo " devhelp to make HTML files and a Devhelp project" + @echo " epub to make an epub" + @echo " latex to make LaTeX files (you can set PAPER=a4 or PAPER=letter)" + @echo " latexpdf to make LaTeX files and then PDFs out of them" + @echo " latexpdfja to make LaTeX files and run them through platex/dvipdfmx" + @echo " lualatexpdf to make LaTeX files and run them through lualatex" + @echo " xelatexpdf to make LaTeX files and run them through xelatex" + @echo " text to make text files" + @echo " man to make manual pages" + @echo " texinfo to make Texinfo files" + @echo " info to make Texinfo files and run them through makeinfo" + @echo " gettext to make PO message catalogs" + @echo " changes to make an overview of all changed/added/deprecated items" + @echo " xml to make Docutils-native XML files" + @echo " pseudoxml to make pseudoxml-XML files for display purposes" + @echo " linkcheck to check all external links for integrity" + @echo " doctest to run all doctests embedded in the documentation (if enabled)" + @echo " coverage to run coverage check of the documentation (if enabled)" + @echo " dummy to check syntax errors of document sources" + @echo " clean to remove everything in the build directory" + +.PHONY: clean +clean: + rm -rf $(BUILDDIR) + +.PHONY: latexpdf +latexpdf: + $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex + @echo "Running LaTeX files through pdflatex..." + $(MAKE) -C $(BUILDDIR)/latex all-pdf + @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex." + +.PHONY: latexpdfja +latexpdfja: + $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex + @echo "Running LaTeX files through platex and dvipdfmx..." + $(MAKE) -C $(BUILDDIR)/latex all-pdf-ja + @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex." + +.PHONY: lualatexpdf +lualatexpdf: + $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex + @echo "Running LaTeX files through lualatex..." + $(MAKE) PDFLATEX=lualatex -C $(BUILDDIR)/latex all-pdf + @echo "lualatex finished; the PDF files are in $(BUILDDIR)/latex." + +.PHONY: xelatexpdf +xelatexpdf: + $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex + @echo "Running LaTeX files through xelatex..." + $(MAKE) PDFLATEX=xelatex -C $(BUILDDIR)/latex all-pdf + @echo "xelatex finished; the PDF files are in $(BUILDDIR)/latex." + +.PHONY: info +info: + $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo + @echo "Running Texinfo files through makeinfo..." + make -C $(BUILDDIR)/texinfo info + @echo "makeinfo finished; the Info files are in $(BUILDDIR)/texinfo." + +.PHONY: gettext +gettext: + $(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale + +# Catch-all target: route all unknown targets to Sphinx +.PHONY: Makefile +%: Makefile + $(SPHINXBUILD) -b "$@" $(ALLSPHINXOPTS) "$(BUILDDIR)/$@" + diff --git a/sphinx/templates/quickstart/Makefile.new.jinja b/sphinx/templates/quickstart/Makefile.new.jinja new file mode 100644 index 0000000..1a52757 --- /dev/null +++ b/sphinx/templates/quickstart/Makefile.new.jinja @@ -0,0 +1,21 @@ +# Minimal makefile for Sphinx documentation +# + +# You can set these variables from the command line, and also +# from the environment for the first two. +SPHINXOPTS ?= +SPHINXBUILD ?= sphinx-build +SOURCEDIR = {{ rsrcdir }} +BUILDDIR = {{ rbuilddir }} + +# Put it first so that "make" without argument is like "make help". +help: + @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) + +.PHONY: help Makefile + +# Catch-all target: route all unknown targets to Sphinx using the new +# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). +%: Makefile + @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) + diff --git a/sphinx/templates/quickstart/Makefile.new_t b/sphinx/templates/quickstart/Makefile.new_t deleted file mode 100644 index 1a52757..0000000 --- a/sphinx/templates/quickstart/Makefile.new_t +++ /dev/null @@ -1,21 +0,0 @@ -# Minimal makefile for Sphinx documentation -# - -# You can set these variables from the command line, and also -# from the environment for the first two. -SPHINXOPTS ?= -SPHINXBUILD ?= sphinx-build -SOURCEDIR = {{ rsrcdir }} -BUILDDIR = {{ rbuilddir }} - -# Put it first so that "make" without argument is like "make help". -help: - @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) - -.PHONY: help Makefile - -# Catch-all target: route all unknown targets to Sphinx using the new -# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). -%: Makefile - @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) - diff --git a/sphinx/templates/quickstart/Makefile_t b/sphinx/templates/quickstart/Makefile_t deleted file mode 100644 index 14b2dc5..0000000 --- a/sphinx/templates/quickstart/Makefile_t +++ /dev/null @@ -1,98 +0,0 @@ -# Makefile for Sphinx documentation -# - -# You can set these variables from the command line. -SPHINXOPTS ?= -SPHINXBUILD ?= sphinx-build -PAPER ?= -SOURCEDIR = {{ rsrcdir }} -BUILDDIR = {{ rbuilddir }} - -# Internal variables. -PAPEROPT_a4 = -D latex_elements.papersize=a4paper -PAPEROPT_letter = -D latex_elements.papersize=letterpaper -# $(O) is meant as a shortcut for $(SPHINXOPTS) -ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) $(O) $(SOURCEDIR) -# the i18n builder cannot share the environment and doctrees with the others -I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) $(O) $(SOURCEDIR) - -.PHONY: help -help: - @echo "Please use \`make ' where is one of" - @echo " html to make standalone HTML files" - @echo " dirhtml to make HTML files named index.html in directories" - @echo " singlehtml to make a single large HTML file" - @echo " pickle to make pickle files" - @echo " json to make JSON files" - @echo " htmlhelp to make HTML files and an HTML help project" - @echo " qthelp to make HTML files and a qthelp project" - @echo " applehelp to make an Apple Help Book" - @echo " devhelp to make HTML files and a Devhelp project" - @echo " epub to make an epub" - @echo " latex to make LaTeX files (you can set PAPER=a4 or PAPER=letter)" - @echo " latexpdf to make LaTeX files and then PDFs out of them" - @echo " latexpdfja to make LaTeX files and run them through platex/dvipdfmx" - @echo " lualatexpdf to make LaTeX files and run them through lualatex" - @echo " xelatexpdf to make LaTeX files and run them through xelatex" - @echo " text to make text files" - @echo " man to make manual pages" - @echo " texinfo to make Texinfo files" - @echo " info to make Texinfo files and run them through makeinfo" - @echo " gettext to make PO message catalogs" - @echo " changes to make an overview of all changed/added/deprecated items" - @echo " xml to make Docutils-native XML files" - @echo " pseudoxml to make pseudoxml-XML files for display purposes" - @echo " linkcheck to check all external links for integrity" - @echo " doctest to run all doctests embedded in the documentation (if enabled)" - @echo " coverage to run coverage check of the documentation (if enabled)" - @echo " dummy to check syntax errors of document sources" - @echo " clean to remove everything in the build directory" - -.PHONY: clean -clean: - rm -rf $(BUILDDIR) - -.PHONY: latexpdf -latexpdf: - $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex - @echo "Running LaTeX files through pdflatex..." - $(MAKE) -C $(BUILDDIR)/latex all-pdf - @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex." - -.PHONY: latexpdfja -latexpdfja: - $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex - @echo "Running LaTeX files through platex and dvipdfmx..." - $(MAKE) -C $(BUILDDIR)/latex all-pdf-ja - @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex." - -.PHONY: lualatexpdf -lualatexpdf: - $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex - @echo "Running LaTeX files through lualatex..." - $(MAKE) PDFLATEX=lualatex -C $(BUILDDIR)/latex all-pdf - @echo "lualatex finished; the PDF files are in $(BUILDDIR)/latex." - -.PHONY: xelatexpdf -xelatexpdf: - $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex - @echo "Running LaTeX files through xelatex..." - $(MAKE) PDFLATEX=xelatex -C $(BUILDDIR)/latex all-pdf - @echo "xelatex finished; the PDF files are in $(BUILDDIR)/latex." - -.PHONY: info -info: - $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo - @echo "Running Texinfo files through makeinfo..." - make -C $(BUILDDIR)/texinfo info - @echo "makeinfo finished; the Info files are in $(BUILDDIR)/texinfo." - -.PHONY: gettext -gettext: - $(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale - -# Catch-all target: route all unknown targets to Sphinx -.PHONY: Makefile -%: Makefile - $(SPHINXBUILD) -b "$@" $(ALLSPHINXOPTS) "$(BUILDDIR)/$@" - diff --git a/sphinx/templates/quickstart/conf.py.jinja b/sphinx/templates/quickstart/conf.py.jinja new file mode 100644 index 0000000..3836486 --- /dev/null +++ b/sphinx/templates/quickstart/conf.py.jinja @@ -0,0 +1,71 @@ +# Configuration file for the Sphinx documentation builder. +# +# For the full list of built-in configuration values, see the documentation: +# https://www.sphinx-doc.org/en/master/usage/configuration.html + +{% if append_syspath -%} +# -- Path setup -------------------------------------------------------------- + +import os +import sys +sys.path.insert(0, {{ module_path | repr }}) + +{% endif -%} +# -- Project information ----------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information + +project = {{ project | repr }} +copyright = {{ copyright | repr }} +author = {{ author | repr }} + +{%- if version %} + +version = {{ version | repr }} +{%- endif %} +{%- if release %} +release = {{ release | repr }} +{%- endif %} + +# -- General configuration --------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration + +extensions = [{% if extensions %} +{%- for ext in extensions %} + '{{ ext }}', +{%- endfor %} +{% endif %}] + +templates_path = ['{{ dot }}templates'] +exclude_patterns = [{{ exclude_patterns }}] + +{% if suffix != '.rst' -%} +source_suffix = {{ suffix | repr }} +{% endif -%} + +{% if root_doc != 'index' -%} +root_doc = {{ root_doc | repr }} +{% endif -%} + +{% if language -%} +language = {{ language | repr }} +{%- endif %} + +# -- Options for HTML output ------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output + +html_theme = 'alabaster' +html_static_path = ['{{ dot }}static'] +{% if 'sphinx.ext.intersphinx' in extensions %} +# -- Options for intersphinx extension --------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/extensions/intersphinx.html#configuration + +intersphinx_mapping = { + 'python': ('https://docs.python.org/3', None), +} +{% endif -%} +{% if 'sphinx.ext.todo' in extensions %} +# -- Options for todo extension ---------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/extensions/todo.html#configuration + +todo_include_todos = True +{% endif %} diff --git a/sphinx/templates/quickstart/conf.py_t b/sphinx/templates/quickstart/conf.py_t deleted file mode 100644 index 3836486..0000000 --- a/sphinx/templates/quickstart/conf.py_t +++ /dev/null @@ -1,71 +0,0 @@ -# Configuration file for the Sphinx documentation builder. -# -# For the full list of built-in configuration values, see the documentation: -# https://www.sphinx-doc.org/en/master/usage/configuration.html - -{% if append_syspath -%} -# -- Path setup -------------------------------------------------------------- - -import os -import sys -sys.path.insert(0, {{ module_path | repr }}) - -{% endif -%} -# -- Project information ----------------------------------------------------- -# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information - -project = {{ project | repr }} -copyright = {{ copyright | repr }} -author = {{ author | repr }} - -{%- if version %} - -version = {{ version | repr }} -{%- endif %} -{%- if release %} -release = {{ release | repr }} -{%- endif %} - -# -- General configuration --------------------------------------------------- -# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration - -extensions = [{% if extensions %} -{%- for ext in extensions %} - '{{ ext }}', -{%- endfor %} -{% endif %}] - -templates_path = ['{{ dot }}templates'] -exclude_patterns = [{{ exclude_patterns }}] - -{% if suffix != '.rst' -%} -source_suffix = {{ suffix | repr }} -{% endif -%} - -{% if root_doc != 'index' -%} -root_doc = {{ root_doc | repr }} -{% endif -%} - -{% if language -%} -language = {{ language | repr }} -{%- endif %} - -# -- Options for HTML output ------------------------------------------------- -# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output - -html_theme = 'alabaster' -html_static_path = ['{{ dot }}static'] -{% if 'sphinx.ext.intersphinx' in extensions %} -# -- Options for intersphinx extension --------------------------------------- -# https://www.sphinx-doc.org/en/master/usage/extensions/intersphinx.html#configuration - -intersphinx_mapping = { - 'python': ('https://docs.python.org/3', None), -} -{% endif -%} -{% if 'sphinx.ext.todo' in extensions %} -# -- Options for todo extension ---------------------------------------------- -# https://www.sphinx-doc.org/en/master/usage/extensions/todo.html#configuration - -todo_include_todos = True -{% endif %} diff --git a/sphinx/templates/quickstart/make.bat.jinja b/sphinx/templates/quickstart/make.bat.jinja new file mode 100644 index 0000000..dfc619a --- /dev/null +++ b/sphinx/templates/quickstart/make.bat.jinja @@ -0,0 +1,110 @@ +@ECHO OFF + +REM Command file for Sphinx documentation + +pushd %~dp0 + +if "%SPHINXBUILD%" == "" ( + set SPHINXBUILD=sphinx-build +) +set BUILDDIR={{ rbuilddir }} +set SOURCEDIR={{ rsrcdir }} +set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% %O% %SOURCEDIR% +set I18NSPHINXOPTS=%SPHINXOPTS% %SOURCEDIR% +if NOT "%PAPER%" == "" ( + set ALLSPHINXOPTS=-D latex_elements.papersize=%PAPER%paper %ALLSPHINXOPTS% + set I18NSPHINXOPTS=-D latex_elements.papersize=%PAPER%paper %I18NSPHINXOPTS% +) + +if "%1" == "" goto help + +if "%1" == "help" ( + :help + echo.Please use `make ^` where ^ is one of + echo. html to make standalone HTML files + echo. dirhtml to make HTML files named index.html in directories + echo. singlehtml to make a single large HTML file + echo. pickle to make pickle files + echo. json to make JSON files + echo. htmlhelp to make HTML files and an HTML help project + echo. qthelp to make HTML files and a Qt help project + echo. devhelp to make HTML files and a Devhelp project + echo. epub to make an EPUB + echo. latex to make LaTeX files (you can set PAPER=a4 or PAPER=letter) + echo. latexpdf to make LaTeX files and then PDFs out of them + echo. text to make text files + echo. man to make manual pages + echo. texinfo to make Texinfo files + echo. gettext to make PO message catalogs + echo. changes to make an overview over all changed/added/deprecated items + echo. xml to make Docutils-native XML files + echo. pseudoxml to make pseudoxml-XML files for display purposes + echo. linkcheck to check all external links for integrity + echo. doctest to run all doctests embedded in the documentation if enabled + echo. coverage to run coverage check of the documentation if enabled + echo. dummy to check syntax errors of document sources + echo. clean to remove everything in the build directory + goto end +) + +if "%1" == "clean" ( + for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i + del /q /s %BUILDDIR%\* + goto end +) + +REM Check if sphinx-build is available and fallback to Python version if any +%SPHINXBUILD% 1>NUL 2>NUL +if errorlevel 9009 goto sphinx_python +goto sphinx_ok + +:sphinx_python + +set SPHINXBUILD=python -m sphinx.__init__ +%SPHINXBUILD% 2> nul +if errorlevel 9009 ( + echo. + echo.The 'sphinx-build' command was not found. Make sure you have Sphinx + echo.installed, then set the SPHINXBUILD environment variable to point + echo.to the full path of the 'sphinx-build' executable. Alternatively you + echo.may add the Sphinx directory to PATH. + echo. + echo.If you don't have Sphinx installed, grab it from + echo.https://www.sphinx-doc.org/ + exit /b 1 +) + +:sphinx_ok + +if "%1" == "latexpdf" ( + %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex + cd %BUILDDIR%/latex + make all-pdf + cd %~dp0 + echo. + echo.Build finished; the PDF files are in %BUILDDIR%/latex. + goto end +) + +if "%1" == "latexpdfja" ( + %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex + cd %BUILDDIR%/latex + make all-pdf-ja + cd %~dp0 + echo. + echo.Build finished; the PDF files are in %BUILDDIR%/latex. + goto end +) + +if "%1" == "gettext" ( + %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale + if errorlevel 1 exit /b 1 + goto end +) + +%SPHINXBUILD% -b %1 %ALLSPHINXOPTS% %BUILDDIR%/%1 +goto end + +:end +popd + diff --git a/sphinx/templates/quickstart/make.bat.new.jinja b/sphinx/templates/quickstart/make.bat.new.jinja new file mode 100644 index 0000000..c89237b --- /dev/null +++ b/sphinx/templates/quickstart/make.bat.new.jinja @@ -0,0 +1,36 @@ +@ECHO OFF + +pushd %~dp0 + +REM Command file for Sphinx documentation + +if "%SPHINXBUILD%" == "" ( + set SPHINXBUILD=sphinx-build +) +set SOURCEDIR={{ rsrcdir }} +set BUILDDIR={{ rbuilddir }} + +%SPHINXBUILD% >NUL 2>NUL +if errorlevel 9009 ( + echo. + echo.The 'sphinx-build' command was not found. Make sure you have Sphinx + echo.installed, then set the SPHINXBUILD environment variable to point + echo.to the full path of the 'sphinx-build' executable. Alternatively you + echo.may add the Sphinx directory to PATH. + echo. + echo.If you don't have Sphinx installed, grab it from + echo.https://www.sphinx-doc.org/ + exit /b 1 +) + +if "%1" == "" goto help + +%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% +goto end + +:help +%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% + +:end +popd + diff --git a/sphinx/templates/quickstart/make.bat.new_t b/sphinx/templates/quickstart/make.bat.new_t deleted file mode 100644 index c89237b..0000000 --- a/sphinx/templates/quickstart/make.bat.new_t +++ /dev/null @@ -1,36 +0,0 @@ -@ECHO OFF - -pushd %~dp0 - -REM Command file for Sphinx documentation - -if "%SPHINXBUILD%" == "" ( - set SPHINXBUILD=sphinx-build -) -set SOURCEDIR={{ rsrcdir }} -set BUILDDIR={{ rbuilddir }} - -%SPHINXBUILD% >NUL 2>NUL -if errorlevel 9009 ( - echo. - echo.The 'sphinx-build' command was not found. Make sure you have Sphinx - echo.installed, then set the SPHINXBUILD environment variable to point - echo.to the full path of the 'sphinx-build' executable. Alternatively you - echo.may add the Sphinx directory to PATH. - echo. - echo.If you don't have Sphinx installed, grab it from - echo.https://www.sphinx-doc.org/ - exit /b 1 -) - -if "%1" == "" goto help - -%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% -goto end - -:help -%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% - -:end -popd - diff --git a/sphinx/templates/quickstart/make.bat_t b/sphinx/templates/quickstart/make.bat_t deleted file mode 100644 index dfc619a..0000000 --- a/sphinx/templates/quickstart/make.bat_t +++ /dev/null @@ -1,110 +0,0 @@ -@ECHO OFF - -REM Command file for Sphinx documentation - -pushd %~dp0 - -if "%SPHINXBUILD%" == "" ( - set SPHINXBUILD=sphinx-build -) -set BUILDDIR={{ rbuilddir }} -set SOURCEDIR={{ rsrcdir }} -set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% %O% %SOURCEDIR% -set I18NSPHINXOPTS=%SPHINXOPTS% %SOURCEDIR% -if NOT "%PAPER%" == "" ( - set ALLSPHINXOPTS=-D latex_elements.papersize=%PAPER%paper %ALLSPHINXOPTS% - set I18NSPHINXOPTS=-D latex_elements.papersize=%PAPER%paper %I18NSPHINXOPTS% -) - -if "%1" == "" goto help - -if "%1" == "help" ( - :help - echo.Please use `make ^` where ^ is one of - echo. html to make standalone HTML files - echo. dirhtml to make HTML files named index.html in directories - echo. singlehtml to make a single large HTML file - echo. pickle to make pickle files - echo. json to make JSON files - echo. htmlhelp to make HTML files and an HTML help project - echo. qthelp to make HTML files and a Qt help project - echo. devhelp to make HTML files and a Devhelp project - echo. epub to make an EPUB - echo. latex to make LaTeX files (you can set PAPER=a4 or PAPER=letter) - echo. latexpdf to make LaTeX files and then PDFs out of them - echo. text to make text files - echo. man to make manual pages - echo. texinfo to make Texinfo files - echo. gettext to make PO message catalogs - echo. changes to make an overview over all changed/added/deprecated items - echo. xml to make Docutils-native XML files - echo. pseudoxml to make pseudoxml-XML files for display purposes - echo. linkcheck to check all external links for integrity - echo. doctest to run all doctests embedded in the documentation if enabled - echo. coverage to run coverage check of the documentation if enabled - echo. dummy to check syntax errors of document sources - echo. clean to remove everything in the build directory - goto end -) - -if "%1" == "clean" ( - for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i - del /q /s %BUILDDIR%\* - goto end -) - -REM Check if sphinx-build is available and fallback to Python version if any -%SPHINXBUILD% 1>NUL 2>NUL -if errorlevel 9009 goto sphinx_python -goto sphinx_ok - -:sphinx_python - -set SPHINXBUILD=python -m sphinx.__init__ -%SPHINXBUILD% 2> nul -if errorlevel 9009 ( - echo. - echo.The 'sphinx-build' command was not found. Make sure you have Sphinx - echo.installed, then set the SPHINXBUILD environment variable to point - echo.to the full path of the 'sphinx-build' executable. Alternatively you - echo.may add the Sphinx directory to PATH. - echo. - echo.If you don't have Sphinx installed, grab it from - echo.https://www.sphinx-doc.org/ - exit /b 1 -) - -:sphinx_ok - -if "%1" == "latexpdf" ( - %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex - cd %BUILDDIR%/latex - make all-pdf - cd %~dp0 - echo. - echo.Build finished; the PDF files are in %BUILDDIR%/latex. - goto end -) - -if "%1" == "latexpdfja" ( - %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex - cd %BUILDDIR%/latex - make all-pdf-ja - cd %~dp0 - echo. - echo.Build finished; the PDF files are in %BUILDDIR%/latex. - goto end -) - -if "%1" == "gettext" ( - %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale - if errorlevel 1 exit /b 1 - goto end -) - -%SPHINXBUILD% -b %1 %ALLSPHINXOPTS% %BUILDDIR%/%1 -goto end - -:end -popd - diff --git a/sphinx/templates/quickstart/root_doc.rst.jinja b/sphinx/templates/quickstart/root_doc.rst.jinja new file mode 100644 index 0000000..163a470 --- /dev/null +++ b/sphinx/templates/quickstart/root_doc.rst.jinja @@ -0,0 +1,18 @@ +.. {{ project }} documentation master file, created by + sphinx-quickstart on {{ now }}. + You can adapt this file completely to your liking, but it should at least + contain the root `toctree` directive. + +{{ project }} documentation +{{ project_underline }}============== + +Add your content using ``reStructuredText`` syntax. See the +`reStructuredText `_ +documentation for details. + + +.. toctree:: + :maxdepth: {{ mastertocmaxdepth }} + :caption: Contents: + +{{ mastertoctree }} diff --git a/sphinx/templates/quickstart/root_doc.rst_t b/sphinx/templates/quickstart/root_doc.rst_t deleted file mode 100644 index 3aa98af..0000000 --- a/sphinx/templates/quickstart/root_doc.rst_t +++ /dev/null @@ -1,21 +0,0 @@ -.. {{ project }} documentation master file, created by - sphinx-quickstart on {{ now }}. - You can adapt this file completely to your liking, but it should at least - contain the root `toctree` directive. - -Welcome to {{ project }}'s documentation! -==========={{ project_underline }}================= - -.. toctree:: - :maxdepth: {{ mastertocmaxdepth }} - :caption: Contents: - -{{ mastertoctree }} - -Indices and tables -================== - -* :ref:`genindex` -* :ref:`modindex` -* :ref:`search` - diff --git a/sphinx/testing/fixtures.py b/sphinx/testing/fixtures.py index 6e1a122..388e5f6 100644 --- a/sphinx/testing/fixtures.py +++ b/sphinx/testing/fixtures.py @@ -68,10 +68,10 @@ class SharedResult: } -@pytest.fixture() +@pytest.fixture def app_params( request: Any, - test_params: dict, + test_params: dict[str, Any], shared_result: SharedResult, sphinx_test_tempdir: str, rootdir: str, @@ -117,8 +117,8 @@ def app_params( _app_params = namedtuple('_app_params', 'args,kwargs') -@pytest.fixture() -def test_params(request: Any) -> dict: +@pytest.fixture +def test_params(request: Any) -> dict[str, Any]: """ Test parameters that are specified by 'pytest.mark.test_params' @@ -141,11 +141,11 @@ def test_params(request: Any) -> dict: return result -@pytest.fixture() +@pytest.fixture def app( - test_params: dict, - app_params: tuple[dict, dict], - make_app: Callable, + test_params: dict[str, Any], + app_params: _app_params, + make_app: Callable[[], SphinxTestApp], shared_result: SharedResult, ) -> Iterator[SphinxTestApp]: """ @@ -159,14 +159,14 @@ def app( print('# builder:', app_.builder.name) print('# srcdir:', app_.srcdir) print('# outdir:', app_.outdir) - print('# status:', '\n' + app_._status.getvalue()) - print('# warning:', '\n' + app_._warning.getvalue()) + print('# status:', '\n' + app_.status.getvalue()) + print('# warning:', '\n' + app_.warning.getvalue()) if test_params['shared_result']: shared_result.store(test_params['shared_result'], app_) -@pytest.fixture() +@pytest.fixture def status(app: SphinxTestApp) -> StringIO: """ Back-compatibility for testing with previous @with_app decorator @@ -174,7 +174,7 @@ def status(app: SphinxTestApp) -> StringIO: return app.status -@pytest.fixture() +@pytest.fixture def warning(app: SphinxTestApp) -> StringIO: """ Back-compatibility for testing with previous @with_app decorator @@ -182,8 +182,8 @@ def warning(app: SphinxTestApp) -> StringIO: return app.warning -@pytest.fixture() -def make_app(test_params: dict, monkeypatch: Any) -> Iterator[Callable]: +@pytest.fixture +def make_app(test_params: dict[str, Any]) -> Iterator[Callable[[], SphinxTestApp]]: """ Provides make_app function to initialize SphinxTestApp instance. if you want to initialize 'app' in your test function. please use this @@ -196,10 +196,12 @@ def make_app(test_params: dict, monkeypatch: Any) -> Iterator[Callable]: status, warning = StringIO(), StringIO() kwargs.setdefault('status', status) kwargs.setdefault('warning', warning) - app_: Any = SphinxTestApp(*args, **kwargs) - apps.append(app_) + app_: SphinxTestApp if test_params['shared_result']: - app_ = SphinxTestAppWrapperForSkipBuilding(app_) + app_ = SphinxTestAppWrapperForSkipBuilding(*args, **kwargs) + else: + app_ = SphinxTestApp(*args, **kwargs) + apps.append(app_) return app_ yield make @@ -208,7 +210,7 @@ def make_app(test_params: dict, monkeypatch: Any) -> Iterator[Callable]: app_.cleanup() -@pytest.fixture() +@pytest.fixture def shared_result() -> SharedResult: return SharedResult() @@ -218,7 +220,7 @@ def _shared_result_cache() -> None: SharedResult.cache.clear() -@pytest.fixture() +@pytest.fixture def if_graphviz_found(app: SphinxTestApp) -> None: # NoQA: PT004 """ The test will be skipped when using 'if_graphviz_found' fixture and graphviz @@ -242,7 +244,7 @@ def sphinx_test_tempdir(tmp_path_factory: Any) -> Path: return tmp_path_factory.getbasetemp() -@pytest.fixture() +@pytest.fixture def rollback_sysmodules() -> Iterator[None]: # NoQA: PT004 """ Rollback sys.modules to its value before testing to unload modules diff --git a/sphinx/testing/path.py b/sphinx/testing/path.py index 49e62ce..8244e69 100644 --- a/sphinx/testing/path.py +++ b/sphinx/testing/path.py @@ -82,7 +82,11 @@ class path(str): """ return os.path.ismount(self) - def rmtree(self, ignore_errors: bool = False, onerror: Callable | None = None) -> None: + def rmtree( + self, + ignore_errors: bool = False, + onerror: Callable[[Callable[..., Any], str, Any], object] | None = None, + ) -> None: """ Removes the file or directory and any files or directories it may contain. @@ -149,7 +153,7 @@ class path(str): def utime(self, arg: Any) -> None: os.utime(self, arg) - def open(self, mode: str = 'r', **kwargs: Any) -> IO: + def open(self, mode: str = 'r', **kwargs: Any) -> IO[str]: return open(self, mode, **kwargs) # NoQA: SIM115 def write_text(self, text: str, encoding: str = 'utf-8', **kwargs: Any) -> None: diff --git a/sphinx/testing/util.py b/sphinx/testing/util.py index d1de8ea..1cc6c4a 100644 --- a/sphinx/testing/util.py +++ b/sphinx/testing/util.py @@ -11,7 +11,6 @@ from io import StringIO from types import MappingProxyType from typing import TYPE_CHECKING -from defusedxml.ElementTree import parse as xml_parse from docutils import nodes from docutils.parsers.rst import directives, roles @@ -22,7 +21,7 @@ from sphinx.util.console import strip_colors from sphinx.util.docutils import additional_nodes if TYPE_CHECKING: - from collections.abc import Mapping + from collections.abc import Mapping, Sequence from pathlib import Path from typing import Any from xml.etree.ElementTree import ElementTree @@ -73,6 +72,8 @@ def assert_node(node: Node, cls: Any = None, xpath: str = "", **kwargs: Any) -> # keep this to restrict the API usage and to have a correct return type def etree_parse(path: str | os.PathLike[str]) -> ElementTree: """Parse a file into a (safe) XML element tree.""" + from defusedxml.ElementTree import parse as xml_parse + return xml_parse(path) @@ -111,7 +112,7 @@ class SphinxTestApp(sphinx.application.Sphinx): confoverrides: dict[str, Any] | None = None, status: StringIO | None = None, warning: StringIO | None = None, - tags: list[str] | None = None, + tags: Sequence[str] = (), docutils_conf: str | None = None, # extra constructor argument parallel: int = 0, # additional arguments at the end to keep the signature @@ -204,23 +205,17 @@ class SphinxTestApp(sphinx.application.Sphinx): super().build(force_all, filenames) -class SphinxTestAppWrapperForSkipBuilding: +class SphinxTestAppWrapperForSkipBuilding(SphinxTestApp): """A wrapper for SphinxTestApp. This class is used to speed up the test by skipping ``app.build()`` if it has already been built and there are any output files. """ - def __init__(self, app_: SphinxTestApp) -> None: - self.app = app_ - - def __getattr__(self, name: str) -> Any: - return getattr(self.app, name) - - def build(self, *args: Any, **kwargs: Any) -> None: - if not os.listdir(self.app.outdir): + def build(self, force_all: bool = False, filenames: list[str] | None = None) -> None: + if not os.listdir(self.outdir): # if listdir is empty, do build. - self.app.build(*args, **kwargs) + super().build(force_all, filenames) # otherwise, we can use built cache diff --git a/sphinx/texinputs/Makefile.jinja b/sphinx/texinputs/Makefile.jinja new file mode 100644 index 0000000..96bb0fe --- /dev/null +++ b/sphinx/texinputs/Makefile.jinja @@ -0,0 +1,92 @@ +# Makefile for Sphinx LaTeX output + +ALLDOCS = $(basename $(wildcard *.tex)) +ALLPDF = $(addsuffix .pdf,$(ALLDOCS)) +{% if latex_engine == 'xelatex' -%} +ALLDVI = +ALLXDV = $(addsuffix .xdv,$(ALLDOCS)) +{% else -%} +ALLDVI = $(addsuffix .dvi,$(ALLDOCS)) +ALLXDV = +{% endif -%} +ALLPS = $(addsuffix .ps,$(ALLDOCS)) + +# Prefix for archive names +ARCHIVEPREFIX = +# Additional LaTeX options (passed via variables in latexmkrc/latexmkjarc file) +export LATEXOPTS ?= +# Additional latexmk options +{% if latex_engine == 'xelatex' -%} +# with latexmk version 4.52b or higher set LATEXMKOPTS to -xelatex either here +# or on command line for faster builds. +{% endif -%} +LATEXMKOPTS ?= +{% if xindy_use -%} +export XINDYOPTS = {{ xindy_lang_option }} -M sphinx.xdy +{% if latex_engine == 'pdflatex' -%} +XINDYOPTS += -M LICRlatin2utf8.xdy +{% if xindy_cyrillic -%} +XINDYOPTS += -M LICRcyr2utf8.xdy +{% endif -%} +{% endif -%} +{% if xindy_cyrillic -%} +XINDYOPTS += -M LatinRules.xdy +{% endif -%} +{% endif -%} +# format: pdf or dvi (used only by archive targets) +FMT = pdf + +{% if latex_engine in ('platex', 'uplatex') -%} +# latexmkrc is read then overridden by latexmkjarc +LATEX = latexmk -r latexmkjarc -dvi +PDFLATEX = latexmk -r latexmkjarc -pdfdvi -dvi- -ps- +{% else -%} +LATEX = latexmk -dvi +PDFLATEX = latexmk -pdf -dvi- -ps- +{% endif %} + +{% if latex_engine != 'xelatex' -%} +%.dvi: %.tex FORCE_MAKE + $(LATEX) $(LATEXMKOPTS) '$<' + +{% endif -%} +%.ps: %.dvi + dvips '$<' + +%.pdf: %.tex FORCE_MAKE + $(PDFLATEX) $(LATEXMKOPTS) '$<' + +all: $(ALLPDF) + +all-dvi: $(ALLDVI) + +all-ps: $(ALLPS) + +all-pdf: $(ALLPDF) + +zip: all-$(FMT) + mkdir $(ARCHIVEPREFIX)docs-$(FMT) + cp $(ALLPDF) $(ARCHIVEPREFIX)docs-$(FMT) + zip -q -r -9 $(ARCHIVEPREFIX)docs-$(FMT).zip $(ARCHIVEPREFIX)docs-$(FMT) + rm -r $(ARCHIVEPREFIX)docs-$(FMT) + +tar: all-$(FMT) + mkdir $(ARCHIVEPREFIX)docs-$(FMT) + cp $(ALLPDF) $(ARCHIVEPREFIX)docs-$(FMT) + tar cf $(ARCHIVEPREFIX)docs-$(FMT).tar $(ARCHIVEPREFIX)docs-$(FMT) + rm -r $(ARCHIVEPREFIX)docs-$(FMT) + +gz: tar + gzip -9 < $(ARCHIVEPREFIX)docs-$(FMT).tar > $(ARCHIVEPREFIX)docs-$(FMT).tar.gz + +bz2: tar + bzip2 -9 -k $(ARCHIVEPREFIX)docs-$(FMT).tar + +xz: tar + xz -9 -k $(ARCHIVEPREFIX)docs-$(FMT).tar + +clean: + rm -f *.log *.ind *.aux *.toc *.syn *.idx *.out *.ilg *.pla *.ps *.tar *.tar.gz *.tar.bz2 *.tar.xz $(ALLPDF) $(ALLDVI) $(ALLXDV) *.fls *.fdb_latexmk + +.PHONY: all all-pdf all-dvi all-ps clean zip tar gz bz2 xz +.PHONY: FORCE_MAKE diff --git a/sphinx/texinputs/Makefile_t b/sphinx/texinputs/Makefile_t deleted file mode 100644 index 96bb0fe..0000000 --- a/sphinx/texinputs/Makefile_t +++ /dev/null @@ -1,92 +0,0 @@ -# Makefile for Sphinx LaTeX output - -ALLDOCS = $(basename $(wildcard *.tex)) -ALLPDF = $(addsuffix .pdf,$(ALLDOCS)) -{% if latex_engine == 'xelatex' -%} -ALLDVI = -ALLXDV = $(addsuffix .xdv,$(ALLDOCS)) -{% else -%} -ALLDVI = $(addsuffix .dvi,$(ALLDOCS)) -ALLXDV = -{% endif -%} -ALLPS = $(addsuffix .ps,$(ALLDOCS)) - -# Prefix for archive names -ARCHIVEPREFIX = -# Additional LaTeX options (passed via variables in latexmkrc/latexmkjarc file) -export LATEXOPTS ?= -# Additional latexmk options -{% if latex_engine == 'xelatex' -%} -# with latexmk version 4.52b or higher set LATEXMKOPTS to -xelatex either here -# or on command line for faster builds. -{% endif -%} -LATEXMKOPTS ?= -{% if xindy_use -%} -export XINDYOPTS = {{ xindy_lang_option }} -M sphinx.xdy -{% if latex_engine == 'pdflatex' -%} -XINDYOPTS += -M LICRlatin2utf8.xdy -{% if xindy_cyrillic -%} -XINDYOPTS += -M LICRcyr2utf8.xdy -{% endif -%} -{% endif -%} -{% if xindy_cyrillic -%} -XINDYOPTS += -M LatinRules.xdy -{% endif -%} -{% endif -%} -# format: pdf or dvi (used only by archive targets) -FMT = pdf - -{% if latex_engine in ('platex', 'uplatex') -%} -# latexmkrc is read then overridden by latexmkjarc -LATEX = latexmk -r latexmkjarc -dvi -PDFLATEX = latexmk -r latexmkjarc -pdfdvi -dvi- -ps- -{% else -%} -LATEX = latexmk -dvi -PDFLATEX = latexmk -pdf -dvi- -ps- -{% endif %} - -{% if latex_engine != 'xelatex' -%} -%.dvi: %.tex FORCE_MAKE - $(LATEX) $(LATEXMKOPTS) '$<' - -{% endif -%} -%.ps: %.dvi - dvips '$<' - -%.pdf: %.tex FORCE_MAKE - $(PDFLATEX) $(LATEXMKOPTS) '$<' - -all: $(ALLPDF) - -all-dvi: $(ALLDVI) - -all-ps: $(ALLPS) - -all-pdf: $(ALLPDF) - -zip: all-$(FMT) - mkdir $(ARCHIVEPREFIX)docs-$(FMT) - cp $(ALLPDF) $(ARCHIVEPREFIX)docs-$(FMT) - zip -q -r -9 $(ARCHIVEPREFIX)docs-$(FMT).zip $(ARCHIVEPREFIX)docs-$(FMT) - rm -r $(ARCHIVEPREFIX)docs-$(FMT) - -tar: all-$(FMT) - mkdir $(ARCHIVEPREFIX)docs-$(FMT) - cp $(ALLPDF) $(ARCHIVEPREFIX)docs-$(FMT) - tar cf $(ARCHIVEPREFIX)docs-$(FMT).tar $(ARCHIVEPREFIX)docs-$(FMT) - rm -r $(ARCHIVEPREFIX)docs-$(FMT) - -gz: tar - gzip -9 < $(ARCHIVEPREFIX)docs-$(FMT).tar > $(ARCHIVEPREFIX)docs-$(FMT).tar.gz - -bz2: tar - bzip2 -9 -k $(ARCHIVEPREFIX)docs-$(FMT).tar - -xz: tar - xz -9 -k $(ARCHIVEPREFIX)docs-$(FMT).tar - -clean: - rm -f *.log *.ind *.aux *.toc *.syn *.idx *.out *.ilg *.pla *.ps *.tar *.tar.gz *.tar.bz2 *.tar.xz $(ALLPDF) $(ALLDVI) $(ALLXDV) *.fls *.fdb_latexmk - -.PHONY: all all-pdf all-dvi all-ps clean zip tar gz bz2 xz -.PHONY: FORCE_MAKE diff --git a/sphinx/texinputs/latexmkjarc.jinja b/sphinx/texinputs/latexmkjarc.jinja new file mode 100644 index 0000000..c7403a9 --- /dev/null +++ b/sphinx/texinputs/latexmkjarc.jinja @@ -0,0 +1,22 @@ +$latex = '{{ latex_engine }} ' . $ENV{'LATEXOPTS'} . ' -kanji=utf8 %O %S'; +$dvipdf = 'dvipdfmx %O -o %D %S'; +$makeindex = 'internal mendex %S %B %D'; +sub mendex { + my ($source, $basename, $destination) = @_; + my $dictfile = $basename . ".dic"; + unlink($destination); + system("mendex", "-U", "-f", "-d", $dictfile, "-s", "python.ist", $source); + if ($? > 0) { + print("mendex exited with error code $? (ignored)\n"); + } + if (!-e $destination) { + # create an empty .ind file if nothing + open(FH, ">" . $destination); + close(FH); + } + return 0; +} +add_cus_dep( "glo", "gls", 0, "makeglo" ); +sub makeglo { + return system( "mendex -J -f -s gglo.ist -o '$_[0].gls' '$_[0].glo'" ); +} diff --git a/sphinx/texinputs/latexmkjarc_t b/sphinx/texinputs/latexmkjarc_t deleted file mode 100644 index c7403a9..0000000 --- a/sphinx/texinputs/latexmkjarc_t +++ /dev/null @@ -1,22 +0,0 @@ -$latex = '{{ latex_engine }} ' . $ENV{'LATEXOPTS'} . ' -kanji=utf8 %O %S'; -$dvipdf = 'dvipdfmx %O -o %D %S'; -$makeindex = 'internal mendex %S %B %D'; -sub mendex { - my ($source, $basename, $destination) = @_; - my $dictfile = $basename . ".dic"; - unlink($destination); - system("mendex", "-U", "-f", "-d", $dictfile, "-s", "python.ist", $source); - if ($? > 0) { - print("mendex exited with error code $? (ignored)\n"); - } - if (!-e $destination) { - # create an empty .ind file if nothing - open(FH, ">" . $destination); - close(FH); - } - return 0; -} -add_cus_dep( "glo", "gls", 0, "makeglo" ); -sub makeglo { - return system( "mendex -J -f -s gglo.ist -o '$_[0].gls' '$_[0].glo'" ); -} diff --git a/sphinx/texinputs/latexmkrc.jinja b/sphinx/texinputs/latexmkrc.jinja new file mode 100644 index 0000000..a33b541 --- /dev/null +++ b/sphinx/texinputs/latexmkrc.jinja @@ -0,0 +1,32 @@ +{% if latex_engine == 'pdflatex' -%} +$latex = 'latex ' . $ENV{'LATEXOPTS'} . ' %O %S'; +$pdflatex = 'pdflatex ' . $ENV{'LATEXOPTS'} . ' %O %S'; +{% elif latex_engine == 'lualatex' -%} +$latex = 'lualatex --output-format=dvi ' . $ENV{'LATEXOPTS'} . ' %O %S'; +$pdflatex = 'lualatex ' . $ENV{'LATEXOPTS'} . ' %O %S'; +{% elif latex_engine == 'xelatex' -%} +$latex = 'xelatex --no-pdf ' . $ENV{'LATEXOPTS'} . ' %O %S'; +$pdflatex = 'xelatex ' . $ENV{'LATEXOPTS'} . ' %O %S'; +{% endif -%} +$lualatex = 'lualatex ' . $ENV{'LATEXOPTS'} . ' %O %S'; +$xelatex = 'xelatex --no-pdf ' . $ENV{'LATEXOPTS'} . ' %O %S'; +{% if xindy_use -%} +$makeindex = 'internal xindy ' . $ENV{'XINDYOPTS'} . ' %O -o %D %S'; +sub xindy { + my @args = @_; + if (-z $args[-1]) { + # create an empty .ind file if .idx is empty + open(FH, ">" . $args[-2]); + close(FH); + return 0; + } else { + return system("xindy", @args); + } +} +{% else -%} +$makeindex = 'makeindex -s python.ist %O -o %D %S'; +{% endif -%} +add_cus_dep( "glo", "gls", 0, "makeglo" ); +sub makeglo { + return system( "makeindex -s gglo.ist -o '$_[0].gls' '$_[0].glo'" ); +} diff --git a/sphinx/texinputs/latexmkrc_t b/sphinx/texinputs/latexmkrc_t deleted file mode 100644 index a33b541..0000000 --- a/sphinx/texinputs/latexmkrc_t +++ /dev/null @@ -1,32 +0,0 @@ -{% if latex_engine == 'pdflatex' -%} -$latex = 'latex ' . $ENV{'LATEXOPTS'} . ' %O %S'; -$pdflatex = 'pdflatex ' . $ENV{'LATEXOPTS'} . ' %O %S'; -{% elif latex_engine == 'lualatex' -%} -$latex = 'lualatex --output-format=dvi ' . $ENV{'LATEXOPTS'} . ' %O %S'; -$pdflatex = 'lualatex ' . $ENV{'LATEXOPTS'} . ' %O %S'; -{% elif latex_engine == 'xelatex' -%} -$latex = 'xelatex --no-pdf ' . $ENV{'LATEXOPTS'} . ' %O %S'; -$pdflatex = 'xelatex ' . $ENV{'LATEXOPTS'} . ' %O %S'; -{% endif -%} -$lualatex = 'lualatex ' . $ENV{'LATEXOPTS'} . ' %O %S'; -$xelatex = 'xelatex --no-pdf ' . $ENV{'LATEXOPTS'} . ' %O %S'; -{% if xindy_use -%} -$makeindex = 'internal xindy ' . $ENV{'XINDYOPTS'} . ' %O -o %D %S'; -sub xindy { - my @args = @_; - if (-z $args[-1]) { - # create an empty .ind file if .idx is empty - open(FH, ">" . $args[-2]); - close(FH); - return 0; - } else { - return system("xindy", @args); - } -} -{% else -%} -$makeindex = 'makeindex -s python.ist %O -o %D %S'; -{% endif -%} -add_cus_dep( "glo", "gls", 0, "makeglo" ); -sub makeglo { - return system( "makeindex -s gglo.ist -o '$_[0].gls' '$_[0].glo'" ); -} diff --git a/sphinx/texinputs/make.bat.jinja b/sphinx/texinputs/make.bat.jinja new file mode 100644 index 0000000..da2805a --- /dev/null +++ b/sphinx/texinputs/make.bat.jinja @@ -0,0 +1,50 @@ +@ECHO OFF + +REM Command file for Sphinx documentation + +pushd %~dp0 + +{% if latex_engine in ('platex', 'uplatex') -%} +REM latexmkrc is read then overridden by latexmkjarc +set PDFLATEX=latexmk -r latexmkjarc -pdfdvi -dvi- -ps- +{% else -%} +set PDFLATEX=latexmk -pdf -dvi- -ps- +{% endif %} +set "LATEXOPTS= " + +{% if xindy_use -%} +set XINDYOPTS={{ xindy_lang_option }} -M sphinx.xdy +{% if latex_engine == 'pdflatex' -%} +set XINDYOPTS=%XINDYOPTS% -M LICRlatin2utf8.xdy +{% if xindy_cyrillic -%} +set XINDYOPTS=%XINDYOPTS% -M LICRcyr2utf8.xdy +{% endif -%} +{% endif -%} +{% if xindy_cyrillic -%} +set XINDYOPTS=%XINDYOPTS% -M LatinRules.xdy +{% endif -%} +set XINDYOPTS=%XINDYOPTS% -I xelatex +{% endif -%} + + +if "%1" == "" goto all-pdf + +if "%1" == "all-pdf" ( + :all-pdf + for %%i in (*.tex) do ( + %PDFLATEX% %LATEXMKOPTS% %%i + ) + goto end +) + +if "%1" == "all-pdf-ja" ( + goto all-pdf +) + +if "%1" == "clean" ( + del /q /s *.dvi *.log *.ind *.aux *.toc *.syn *.idx *.out *.ilg *.pla *.ps *.tar *.tar.gz *.tar.bz2 *.tar.xz *.fls *.fdb_latexmk + goto end +) + +:end +popd diff --git a/sphinx/texinputs/make.bat_t b/sphinx/texinputs/make.bat_t deleted file mode 100644 index da2805a..0000000 --- a/sphinx/texinputs/make.bat_t +++ /dev/null @@ -1,50 +0,0 @@ -@ECHO OFF - -REM Command file for Sphinx documentation - -pushd %~dp0 - -{% if latex_engine in ('platex', 'uplatex') -%} -REM latexmkrc is read then overridden by latexmkjarc -set PDFLATEX=latexmk -r latexmkjarc -pdfdvi -dvi- -ps- -{% else -%} -set PDFLATEX=latexmk -pdf -dvi- -ps- -{% endif %} -set "LATEXOPTS= " - -{% if xindy_use -%} -set XINDYOPTS={{ xindy_lang_option }} -M sphinx.xdy -{% if latex_engine == 'pdflatex' -%} -set XINDYOPTS=%XINDYOPTS% -M LICRlatin2utf8.xdy -{% if xindy_cyrillic -%} -set XINDYOPTS=%XINDYOPTS% -M LICRcyr2utf8.xdy -{% endif -%} -{% endif -%} -{% if xindy_cyrillic -%} -set XINDYOPTS=%XINDYOPTS% -M LatinRules.xdy -{% endif -%} -set XINDYOPTS=%XINDYOPTS% -I xelatex -{% endif -%} - - -if "%1" == "" goto all-pdf - -if "%1" == "all-pdf" ( - :all-pdf - for %%i in (*.tex) do ( - %PDFLATEX% %LATEXMKOPTS% %%i - ) - goto end -) - -if "%1" == "all-pdf-ja" ( - goto all-pdf -) - -if "%1" == "clean" ( - del /q /s *.dvi *.log *.ind *.aux *.toc *.syn *.idx *.out *.ilg *.pla *.ps *.tar *.tar.gz *.tar.bz2 *.tar.xz *.fls *.fdb_latexmk - goto end -) - -:end -popd diff --git a/sphinx/texinputs/sphinx.sty b/sphinx/texinputs/sphinx.sty index 6c31f32..633b244 100644 --- a/sphinx/texinputs/sphinx.sty +++ b/sphinx/texinputs/sphinx.sty @@ -3,10 +3,13 @@ % % Adapted from the old python.sty, mostly written by Fred Drake, % by Georg Brandl. -% +% This has now grown to become a full-fledged LaTeX support, split +% among multiple files, some of which provide features unavailable +% from usual LaTeX packages in interaction with the mark-up produced +% by the Sphinx LaTeX writer. \NeedsTeXFormat{LaTeX2e}[1995/12/01] -\ProvidesPackage{sphinx}[2023/03/19 v6.2.0 LaTeX package (Sphinx markup)] +\ProvidesPackage{sphinx}[2024/07/01 v7.4.0 Sphinx LaTeX package (sphinx-doc)] % provides \ltx@ifundefined % (many packages load ltxcmds: graphicx does for pdftex and lualatex but @@ -34,26 +37,26 @@ } %% important build warnings use an undefined reference to induce latexmk %% into complaining (once per warning) at very end of console output -\newcommand\sphinxbuildwarning[1]{% - \ifcsname sphinx_emitted_#1\endcsname +\newcommand\sphinxbuildwarning[2][]{% + \ifcsname sphinx_emitted_#2\endcsname \else - \global\expandafter\let\csname sphinx_emitted_#1\endcsname\@empty + \global\expandafter\let\csname sphinx_emitted_#2\endcsname\@empty \AtEndDocument{\hbox{% should the printing of text be made conditional on - % some boolean? + % some boolean? (7.4.0 answers this by adding an + % optional argument and testing it here for emptiness + % but no usage is made of this novelty yet.) + \if\relax\detokenize{#1}\relax + % No [], print a red warning text at very end of document \bfseries\color{red}% - \@nameuse{sphinx_buildwarning_#1}% + \@nameuse{sphinx_buildwarning_#2}% + \fi % place an undefined reference deliberately \let\nfss@text\@gobble % no ?? - \ref{!!\@nameuse{sphinx_buildwarning_#1}}% - }}% + \ref{!!\@nameuse{sphinx_buildwarning_#2}}% + }% + }% \fi } -\@namedef{sphinx_buildwarning_coloursyntax}{% - The colours whose definition used xcolor syntax were set to white - as xcolor was not found; check the latex log warnings for details} -\@namedef{sphinx_buildwarning_colorblend}{% - Command \string\sphinxcolorblend\space seen but ignored in tables - as xcolor was not found; check the latex log warnings for details} \@namedef{sphinx_buildwarning_badtitlesec}{% Your system has titlesec version 2.10.1 which causes disappearance of section numbers; check the latex log warning for details} @@ -63,29 +66,28 @@ \@namedef{sphinx_buildwarning_badfootnotes}{% Footnote rendering may have had problems, due to extra package or document class; check latex log for instructions}% - +\@namedef{sphinx_buildwarning_badiconpackage}{% + You have set iconpackage=\spx@opt@iconpackage, but this LaTeX package + is not found}% %% OPTION HANDLING % - % We generally first handle options then load packages, but we need -% \definecolor from xcolor/color to handle the options. +% \definecolor and \colorlet from xcolor to handle the options. +% Support for colour options +% -------------------------- +% At 7.4.0, package xcolor is required (which has allowed to get rid of +% annoying fall-back branches). Internals here got refactored to some extent. +% % MEMO: xcolor \fcolorbox coloured boxes render better in some PDF viewers % than with color package \fcolorbox. Since 1.6.3, Sphinx uses only its own % custom variant of \fcolorbox when handling code-blocks. But \fcolorbox -% appears also in Pygmentize output mark-up. Also, since 5.3.0, 'sphinxsetup' -% color options get a richer input syntax if Sphinx knows xcolor is loaded, -% and the \sphinxcolorblend (for tables) is made available only if xcolor is -% loaded. -\IfFileExists{xcolor.sty}{ +% appears also in Pygmentize output mark-up. % Should Sphinx load xcolor with its dvipsnames and svgnames options? - \RequirePackage{xcolor} -}{ - \RequirePackage{color} -} +\RequirePackage{xcolor} -% the \colorlet of xcolor (if at all loaded) is overkill for most internal use +% the \colorlet of xcolor is overkill for our internal usage here \newcommand{\sphinxcolorlet}[2] {\expandafter\let\csname\@backslashchar color@#1\expandafter\endcsname \csname\@backslashchar color@#2\endcsname } @@ -93,6 +95,8 @@ % (5.3.0) Allow colour options to use both the \definecolor and the \colorlet % syntaxes, for example VerbatimColor={gray}{0.9} or VerbatimColor=red!10 % In the latter case we need the real \colorlet from xcolor package. +% Prior to 7.4.0 xcolor was not required and thus \spx@colorlet was configured +% to raise a warning in case of absence of xcolor. \def\spx@defineorletcolor#1{% \def\spx@definedcolor{{#1}}% \futurelet\spx@token\spx@defineorlet} @@ -101,21 +105,17 @@ \expandafter\spx@definecolor\else\expandafter\spx@colorlet\fi} \def\spx@colorlet#1\relax{\expandafter\colorlet\spx@definedcolor{#1}} \def\spx@definecolor{\expandafter\definecolor\spx@definedcolor} -% -\@ifpackageloaded{xcolor}% - {}% - {% xcolor not loaded because it was not found in the LaTeX installation -\def\spx@colorlet#1\relax{% - \sphinxbuildwarning{coloursyntax}% - \PackageWarning{sphinx}{% -Sorry, the #1 syntax requires package xcolor,\MessageBreak -which was not found on your TeX/LaTeX installation.\MessageBreak -\@spaces\expandafter\@firstofone\spx@definedcolor\MessageBreak -will be set to white}% - \expandafter\definecolor\spx@definedcolor{rgb}{1,1,1}% - }% end of redefinition of \spx@colorlet - }% end of xcolor not found branch - +% These internals refactored at 7.4.0: +\newcommand*{\spx@DeclareColorOption}[3][]{% +% #1 = almost always "sphinx" but left empty for a few for legacy reasons +% #2 = option name, but internal colour name is #1#2 (i.e. with prefix) +% #3 = initial default colour with either \definecolor or \colorlet syntax + % Set the initial default + \spx@defineorletcolor{#1#2}#3\relax + % Set the key handler to accept both \definecolor and \colorlet syntax + % The key name does not have the #1 prefix from the colour name + \define@key{sphinx}{#2}{\spx@defineorletcolor{#1#2}##1\relax}% +}% % Handle options via "kvoptions" (later loaded by hyperref anyhow) \RequirePackage{kvoptions} @@ -159,10 +159,15 @@ will be set to white}% \define@key{sphinx}{bookmarksdepth}{\AtBeginDocument{\hypersetup{bookmarksdepth=#1}}} \AtBeginDocument{\define@key{sphinx}{bookmarksdepth}{\hypersetup{bookmarksdepth=#1}}} % \DeclareBoolOption[false]{usespart}% not used + +% Code-blocks +% ----------- +% % INFO: the keys for padding and border widths were extended at 5.1.0, % and legacy names for user interface were kept, but their definitions % are delayed further down. The legacy internally used dimen registers % \sphinxverbatimborder and \sphinxverbatimsep got removed at 6.2.0. +% More code-blocks related options are found in "CSS" part below. \DeclareBoolOption[true]{verbatimwithframe} \DeclareBoolOption[true]{verbatimwrapslines} \DeclareBoolOption[false]{verbatimforcewraps} @@ -180,70 +185,50 @@ will be set to white}% \DeclareStringOption % must use braces to hide the brackets [{\makebox[2\fontcharwd\font`\x][r]{\textcolor{red}{\tiny$\m@th\hookrightarrow$}}}]% {verbatimcontinued} -% topic boxes + +% Topic boxes +% ----------- % % 5.1.0 added new keys for configuration. The legacy keys shadowsep, -% shadowsize, shadowrule were kept for backward compatibility. Unfortunately -% this had bugs due to typos, which got fixed later at 6.1.2. +% shadowsize, shadowrule were kept for backward compatibility. +% 5.1.2 fixed some bugs. % % All configuration is now to be found in the "CSS" section below. % -% \sphinxshadowsep, \sphinxshadowsize, \sphinxshadowrule \dimen registers -% became at 5.1.0 either no-op or, for the latter, were used under an aliased -% name. They got removed at 6.2.0. -% -% notices/admonitions -% -% 5.1.0 added much customizability to warning, caution, attention, danger and -% error types of notices via an enhanced sphinxheavybox environment. -% -% 6.2.0 added the possibility to use the same kind of rendering also for -% note, hint, important, and tip. -% -% Legacy user interface for options was kept working. All of it is handled in -% the "CSS" section below. -% -% These 6.2.0 added booleans serve internally. There is no reason for user to -% know about them, except if it is desired to toggle mid-way in the document -% whether note, hint, important, and tip should use the "lightbox" or the -% "heavybox" rendering. -\DeclareBoolOption[false]{heavynote} -\DeclareBoolOption[false]{heavyhint} -\DeclareBoolOption[false]{heavyimportant} -\DeclareBoolOption[false]{heavytip} -% footnotes +% 6.2.0 removed \sphinxshadowsep, \sphinxshadowsize, \sphinxshadowrule +% \dimen registers + +% Footnotes +% --------- \DeclareStringOption[\mbox{ }]{AtStartFootnote} % we need a public macro name for direct use in latex file \newcommand*{\sphinxAtStartFootnote}{\spx@opt@AtStartFootnote} % no such need for this one, as it is used inside other macros \DeclareStringOption[\leavevmode\unskip]{BeforeFootnote} -% some font styling. + +% Some font styling +% ----------------- +% TODO: the replacement of old syntax \py@HeaderFamily as used +% in sphinxlatexstyle{page,headings}.sty and sphinx{manual,howto}.cls +% has never been really put in place. Hence this isolated tidbit here. \DeclareStringOption[\sffamily\bfseries]{HeaderFamily} -% colours -% same problems as for dimensions: we want the key handler to use \definecolor. -% first, some colours with no prefix, for backward compatibility -\newcommand*{\sphinxDeclareColorOption}[2]{% - % set the initial default; only \definecolor syntax for defaults! - \definecolor{#1}#2% - % set the key handler to accept both \definecolor and \colorlet syntax - \define@key{sphinx}{#1}{\spx@defineorletcolor{#1}##1\relax}% -}% -\sphinxDeclareColorOption{TitleColor}{{rgb}{0.126,0.263,0.361}} -\sphinxDeclareColorOption{InnerLinkColor}{{rgb}{0.208,0.374,0.486}} -\sphinxDeclareColorOption{OuterLinkColor}{{rgb}{0.216,0.439,0.388}} -\sphinxDeclareColorOption{VerbatimColor}{{gray}{0.95}} -\sphinxDeclareColorOption{VerbatimBorderColor}{{RGB}{32,32,32}} -% all other colours will be named with a "sphinx" prefix -\newcommand*{\sphinxDeclareSphinxColorOption}[2]{% - % set the initial default; only \definecolor syntax for defaults! - \definecolor{sphinx#1}#2% - % set the key handler to accept both \definecolor and \colorlet syntax - \define@key{sphinx}{#1}{\spx@defineorletcolor{sphinx#1}##1\relax}% -}% -% table row colors -\sphinxDeclareSphinxColorOption{TableRowColorHeader}{{gray}{0.86}} -\sphinxDeclareSphinxColorOption{TableRowColorOdd}{{gray}{0.92}} -\sphinxDeclareSphinxColorOption{TableRowColorEven}{{gray}{0.98}} + +% Some legacy colour options +% -------------------------- +% +\spx@DeclareColorOption{TitleColor}{{rgb}{0.126,0.263,0.361}} +\spx@DeclareColorOption{InnerLinkColor}{{rgb}{0.208,0.374,0.486}} +\spx@DeclareColorOption{OuterLinkColor}{{rgb}{0.216,0.439,0.388}} +% The Verbatim ones are "legacy" only since 5.1.0... call it "new-legacy" ;-) +\spx@DeclareColorOption{VerbatimColor}{{RGB}{242,242,242}}% same as {gray}{0.95} +\spx@DeclareColorOption{VerbatimBorderColor}{{RGB}{32,32,32}} +% All other colours will be internally assigned a "sphinx" prefix + +% Table row colors (since 6.0.0) +% ---------------- +\spx@DeclareColorOption[sphinx]{TableRowColorHeader}{{gray}{0.86}} +\spx@DeclareColorOption[sphinx]{TableRowColorOdd}{{gray}{0.92}} +\spx@DeclareColorOption[sphinx]{TableRowColorEven}{{gray}{0.98}} % if not set, the "Merge" colour will keep in sync with the "Row" colour \def\sphinxTableMergeColorHeader{sphinxTableRowColorHeader} \define@key{sphinx}{TableMergeColorHeader}{% @@ -261,37 +246,67 @@ will be set to white}% \def\sphinxTableMergeColorEven{sphinxTableMergeColorEven}% }% % Default color chosen to be as in minted.sty LaTeX package! -\sphinxDeclareSphinxColorOption{VerbatimHighlightColor}{{rgb}{0.878,1,1}} -% admonition boxes, "light" style -% border color defaults to black -% at 6.2.0 also background color is possible, but it then triggers -% usage of the "sphinxheavybox" from sphinxlatexadmonitions.sty. -\sphinxDeclareSphinxColorOption{noteBorderColor}{{rgb}{0,0,0}} -\sphinxDeclareSphinxColorOption{hintBorderColor}{{rgb}{0,0,0}} -\sphinxDeclareSphinxColorOption{importantBorderColor}{{rgb}{0,0,0}} -\sphinxDeclareSphinxColorOption{tipBorderColor}{{rgb}{0,0,0}} -\sphinxDeclareSphinxColorOption{noteBgColor}{{rgb}{1,1,1}} -\sphinxDeclareSphinxColorOption{hintBgColor}{{rgb}{1,1,1}} -\sphinxDeclareSphinxColorOption{importantBgColor}{{rgb}{1,1,1}} -\sphinxDeclareSphinxColorOption{tipBgColor}{{rgb}{1,1,1}} -% admonition boxes, "heavy" style -% border color defaults to black and background color to white -% As long as the color are not explicitly set via user options, -% the sphinxpackageboxes.sty code will actually not use them anyhow. -\sphinxDeclareSphinxColorOption{warningBorderColor}{{rgb}{0,0,0}} -\sphinxDeclareSphinxColorOption{cautionBorderColor}{{rgb}{0,0,0}} -\sphinxDeclareSphinxColorOption{attentionBorderColor}{{rgb}{0,0,0}} -\sphinxDeclareSphinxColorOption{dangerBorderColor}{{rgb}{0,0,0}} -\sphinxDeclareSphinxColorOption{errorBorderColor}{{rgb}{0,0,0}} -% BgColor should have been from the start BackgroundColor for better -% match with CSS property names, but this is legacy interface -% which is too late to change because the internal color names -% and not only the option names have been documented at user level. -\sphinxDeclareSphinxColorOption{warningBgColor}{{rgb}{1,1,1}} -\sphinxDeclareSphinxColorOption{cautionBgColor}{{rgb}{1,1,1}} -\sphinxDeclareSphinxColorOption{attentionBgColor}{{rgb}{1,1,1}} -\sphinxDeclareSphinxColorOption{dangerBgColor}{{rgb}{1,1,1}} -\sphinxDeclareSphinxColorOption{errorBgColor}{{rgb}{1,1,1}} +\spx@DeclareColorOption[sphinx]{VerbatimHighlightColor}{{rgb}{0.878,1,1}} + +% Notices/admonitions +% ------------------- +% +% 5.1.0 added much customizability to warning, caution, attention, danger and +% error types of notices via an enhanced sphinxheavybox environment. +% +% 6.2.0 added the possibility to use the same kind of rendering also for +% note, hint, important, and tip. +% +% Legacy user interface for options was kept working. All of it is handled in +% the "CSS" section below. +% +% 6.2.0 added booleans to serve internally as a record of whether the +% note, hint, important and tip admonitions used the legacy "lightbox" or +% the then enhanced "heavybox" environment. +% +% 7.4.0 uses "heavybox" environment from sphinxlatexadmonitions in all cases, +% hence the booleans mentioned above have been removed as well as the rather +% complex TeX code which was done so that these booleans were made true if +% and only if the CSS-named keys had been made usage of via 'sphinxsetup'. +% +% The "light style" implemented in sphinxlatexadmonitions.sty as +% "sphinxlightbox" is not used. Also, admonitions by default have a "title +% row", and the corresponding options are only named in the CSS style which is +% implemented further below. Here we define options having a legacy name. +% +% seealso directive is also using "heavybox" at 7.4.0 acquiring the same +% customizability as admonitions. +% todo directive also. +\definecolor{sphinx-admonition-bgcolor} {RGB}{247, 247, 247}% #F7F7F7 +\definecolor{sphinx-admonition-bordercolor} {RGB}{134, 152, 155}% #86989B +\definecolor{sphinx-warning-bordercolor} {RGB}{148, 0, 0}% #940000 +\definecolor{sphinx-error-bordercolor} {RGB}{180, 0, 0}% #B40000 +\spx@DeclareColorOption[sphinx]{noteBorderColor} {sphinx-admonition-bordercolor} +\spx@DeclareColorOption[sphinx]{hintBorderColor} {sphinx-admonition-bordercolor} +\spx@DeclareColorOption[sphinx]{importantBorderColor}{sphinx-admonition-bordercolor} +\spx@DeclareColorOption[sphinx]{tipBorderColor} {sphinx-admonition-bordercolor} +\spx@DeclareColorOption[sphinx]{seealsoBorderColor} {sphinx-admonition-bordercolor}% 7.4.0 +\spx@DeclareColorOption[sphinx]{todoBorderColor} {sphinx-admonition-bordercolor}% 7.4.0 +% +\spx@DeclareColorOption[sphinx]{noteBgColor} {sphinx-admonition-bgcolor} +\spx@DeclareColorOption[sphinx]{hintBgColor} {sphinx-admonition-bgcolor} +\spx@DeclareColorOption[sphinx]{importantBgColor}{sphinx-admonition-bgcolor} +\spx@DeclareColorOption[sphinx]{tipBgColor} {sphinx-admonition-bgcolor} +\spx@DeclareColorOption[sphinx]{seealsoBgColor} {sphinx-admonition-bgcolor}% 7.4.0 +\spx@DeclareColorOption[sphinx]{todoBgColor} {sphinx-admonition-bgcolor}% 7.4.0 +% +\spx@DeclareColorOption[sphinx]{warningBorderColor} {sphinx-warning-bordercolor} +\spx@DeclareColorOption[sphinx]{cautionBorderColor} {sphinx-warning-bordercolor} +\spx@DeclareColorOption[sphinx]{attentionBorderColor}{sphinx-warning-bordercolor} +\spx@DeclareColorOption[sphinx]{dangerBorderColor} {sphinx-warning-bordercolor} +\spx@DeclareColorOption[sphinx]{errorBorderColor} {sphinx-error-bordercolor} +% +\spx@DeclareColorOption[sphinx]{warningBgColor} {sphinx-admonition-bgcolor} +\spx@DeclareColorOption[sphinx]{cautionBgColor} {sphinx-admonition-bgcolor} +\spx@DeclareColorOption[sphinx]{attentionBgColor}{sphinx-admonition-bgcolor} +\spx@DeclareColorOption[sphinx]{dangerBgColor} {sphinx-admonition-bgcolor} +\spx@DeclareColorOption[sphinx]{errorBgColor} {sphinx-admonition-bgcolor} +% %%%%%%%% % % Additions of CSS-like keys at 5.1.0 (and possibility of rounded boxes) @@ -324,14 +339,25 @@ will be set to white}% % finally been removed entirely. No more \dimen register is used here only % storage in macros. % +% Restyling at 7.4.0 with new defaults for all admonition types +% ------------------------------------------------------------- +% +% So far the 5.1.0 added possibilities for fancier boxes had been used by +% default only for code-blocks, and admonitions kept their old-fashioned +% legacy styles. At 7.4.0, as a follow-up to the revamped styles of +% admonitions in the HTML sphinx13 theme (PR #12439), it is decided to +% apply similar styling for PDF output. Also the seealso directive +% is handled as an admonition with the same customizability. And the +% todo directive. +% \def\spxstring@none{none} \def\spxstring@clone{clone} % % Border keys -% +% At 7.4.0 refactoring to avoid defining legacy \spx@@border +% macros which are (now) used nowhere, only @top, @right, @bottom, @left. \def\spx@tempa#1{% #1 = macro prefix \expandafter\spx@tempb - \csname #1border\expandafter\endcsname \csname #1border@top\expandafter\endcsname \csname #1border@right\expandafter\endcsname \csname #1border@bottom\expandafter\endcsname @@ -340,99 +366,100 @@ will be set to white}% \csname #1border@opentrue\expandafter\endcsname \csname #1border@openfalse\endcsname }% -\def\spx@tempb #1#2#3#4#5#6#7#8#9{% #9 = option prefix - \define@key{sphinx}{#9border-top-width}{\def#2{##1}}% - \define@key{sphinx}{#9border-right-width}{\def#3{##1}}% - \define@key{sphinx}{#9border-bottom-width}{\def#4{##1}}% - \define@key{sphinx}{#9border-left-width}{\def#5{##1}}% - \define@key{sphinx}{#9border-width}{% - \def#1{##1}% MEMO: not immediately expanded, should this be changed? - \def#2{#1}\let#3#2\let#4#2\let#5#2% +\def\spx@tempb #1#2#3#4#5#6#7#8#9{% #8 = option prefix + \define@key{sphinx}{#8border-top-width}{\def#1{##1}}% + \define@key{sphinx}{#8border-right-width}{\def#2{##1}}% + \define@key{sphinx}{#8border-bottom-width}{\def#3{##1}}% + \define@key{sphinx}{#8border-left-width}{\def#4{##1}}% + \define@key{sphinx}{#8border-width}{% + % MEMO: not immediately expanded, should this be changed? + \def#1{##1}\let#2#1\let#3#1\let#4#1% }% - \newif#6% - \define@key{sphinx}{#9box-decoration-break}% + \newif#5% + % 6.2.0 has added support for box-decoration-break also to admonition + % directives, formerly the option setting was ignored for them. + \define@key{sphinx}{#8box-decoration-break}% {\begingroup\edef\spx@tempa{##1}\expandafter\endgroup - \ifx\spx@tempa\spxstring@clone#8\else#7\fi}% - \spx@tempc{#9}% option prefix -} -\def\spx@tempc #1#2{% #1 = option prefix, #2 = legacy option name + \ifx\spx@tempa\spxstring@clone#7\else#6\fi}% + % 7.4.0 sets the default behaviour to "slice" not only for code-blocks but + % also for admonitions, as the latter now have a background colour each. + #6% + % #8 = option prefix (with underscore), #9 = legacy option name % keep legacy option names as aliases to new-named options - \expandafter\let\csname KV@sphinx@#2\expandafter\endcsname - \csname KV@sphinx@#1border-width\endcsname + \expandafter\let\csname KV@sphinx@#9\expandafter\endcsname + \csname KV@sphinx@#8border-width\endcsname % init border-width (fetches next argument) - \csname KV@sphinx@#1border-width\endcsname + \csname KV@sphinx@#8border-width\endcsname } -% MEMO: prior to 6.2.0 the \fboxrule value (0.4pt, a priori) was frozen here via -% a \dimen assignment done immediately. Now it remains \fboxrule until being used. +% MEMO: from 6.2.0 to 7.4.0 (excluive) \fboxrule was used in the first +% two, and was resolved only at location of use. At 7.4.0, we again +% use 0.4pt rather and not \fboxrule dimen register. % macro prefix option prefix legacy option init value -\spx@tempa{spx@pre@} {pre_} {verbatimborder} \fboxrule -\spx@tempa{spx@topic@} {div.topic_} {shadowrule} \fboxrule +\spx@tempa{spx@pre@} {pre_} {verbatimborder} {0.4pt} +\spx@tempa{spx@topic@} {div.topic_} {shadowrule} {0.5pt}% mod. at 7.4.0 \spx@tempa{spx@note@} {div.note_} {noteborder} {0.5pt} \spx@tempa{spx@hint@} {div.hint_} {hintborder} {0.5pt} \spx@tempa{spx@important@}{div.important_}{importantborder}{0.5pt} \spx@tempa{spx@tip@} {div.tip_} {tipborder} {0.5pt} +\spx@tempa{spx@seealso@} {div.seealso_} {seealsoborder} {0.5pt}% new at 7.4.0 +\spx@tempa{spx@todo@} {div.todo_} {todoborder} {0.5pt}% new at 7.4.0 \spx@tempa{spx@warning@} {div.warning_} {warningborder} {1pt} \spx@tempa{spx@caution@} {div.caution_} {cautionborder} {1pt} \spx@tempa{spx@attention@}{div.attention_}{attentionborder}{1pt} \spx@tempa{spx@danger@} {div.danger_} {dangerborder} {1pt} -\spx@tempa{spx@error@} {div.error_} {errorborder} {1pt} +\spx@tempa{spx@error@} {div.error_} {errorborder} {1.25pt}% mod. at 7.4.0 % this one new at 6.2.0: (we do not create a "legacy name" for it) -\spx@tempa{spx@box@} {box_} {box_border-width}\fboxrule -% Set default box-decoration-break style for codeblocks to slice -\spx@pre@border@opentrue % new default at 6.0.0: slice, not clone -% 6.2.0 has added support for box-decoration-break=slice to all -% other directives, formerly the option setting was ignored for them. +\spx@tempa{spx@box@} {box_} {box_border-width}{0.4pt} +% Reset default box-decoration-break style to "clone" for \sphinxbox, +% but anyhow this is ignored as \sphinxbox produces unbreakable boxes. +\spx@box@border@openfalse % Padding keys -% +% At 7.4.0, \spx@@padding internal macros removed, only @top, @right, +% @bottom, @left are actually needed by sphinxpackageboxes.sty. \def\spx@tempa#1{% \expandafter\spx@tempb - \csname #1padding\expandafter\endcsname \csname #1padding@top\expandafter\endcsname \csname #1padding@right\expandafter\endcsname \csname #1padding@bottom\expandafter\endcsname \csname #1padding@left\endcsname }% -\def\spx@tempb #1#2#3#4#5#6{% #6 = option prefix - \define@key{sphinx}{#6padding-top}{\def#2{##1}}% - \define@key{sphinx}{#6padding-right}{\def#3{##1}}% - \define@key{sphinx}{#6padding-bottom}{\def#4{##1}}% - \define@key{sphinx}{#6padding-left}{\def#5{##1}}% - \define@key{sphinx}{#6padding}{% - \def#1{##1}% - \def#2{#1}\let#3#2\let#4#2\let#5#2% +\def\spx@tempb #1#2#3#4#5#6#7#8#9{% #5 = option prefix + \define@key{sphinx}{#5padding-top}{\def#1{##1}}% + \define@key{sphinx}{#5padding-right}{\def#2{##1}}% + \define@key{sphinx}{#5padding-bottom}{\def#3{##1}}% + \define@key{sphinx}{#5padding-left}{\def#4{##1}}% + \define@key{sphinx}{#5padding}{% + \def#1{##1}\let#2#1\let#3#1\let#4#1% }% - % initialization (will fetch "init" argument next): - \csname KV@sphinx@#6padding\endcsname + % initial defaults + \def#1{#6}\def#2{#7}\def#3{#8}\def#4{#9}% } % MEMO: prior to 6.2.0 the \fboxsep value (3pt, a priori) was frozen here via -% a \dimen assignment done immediately. Now it remains \fboxsep until being used. -% #1 macro prefix #6 option prefix init value -\spx@tempa{spx@pre@} {pre_} \fboxsep -\spx@tempa{spx@topic@} {div.topic_} {5pt} -% MEMO: prior to 6.2.0, "note" type admonitions used sphinxlightbox automatically -% and had no interface to set the padding parameters needed by sphinxheavybox. -% At 6.2.0 they acquired such interface and the default is set as for legacy -% default of "warning" type. I hesitated using \fboxsep, but if I did I would -% then need to explain how to change "note etc..." into behaving exactly -% as "warning etc...", which goes via the \dimexpr here which is too scary to -% put sanely into documentation. -\spx@tempa{spx@note@} {div.note_} {\dimexpr.6\baselineskip-\spx@note@border\relax} -\spx@tempa{spx@hint@} {div.hint_} {\dimexpr.6\baselineskip-\spx@hint@border\relax} -\spx@tempa{spx@important@}{div.important_} {\dimexpr.6\baselineskip-\spx@important@border\relax} -\spx@tempa{spx@tip@} {div.tip_} {\dimexpr.6\baselineskip-\spx@tip@border\relax} -% MEMO: prior to 5.1.0 padding was not separately customizable from border -% width for warning type admonitions. The below keeps the legacy behavior of a -% constant borderwidth+padding. The dim expression is not evaluated yet, only -% at time of use (so that it dynamically adapts to the border width setting). -% MEMO: I could use everywhere \spx@notice@border, as sphinxadmonition environment -% configures it to hold the \spx@@border value. -\spx@tempa{spx@warning@} {div.warning_} {\dimexpr.6\baselineskip-\spx@warning@border\relax} -\spx@tempa{spx@caution@} {div.caution_} {\dimexpr.6\baselineskip-\spx@caution@border\relax} -\spx@tempa{spx@attention@}{div.attention_} {\dimexpr.6\baselineskip-\spx@attention@border\relax} -\spx@tempa{spx@danger@} {div.danger_} {\dimexpr.6\baselineskip-\spx@danger@border\relax} -\spx@tempa{spx@error@} {div.error_} {\dimexpr.6\baselineskip-\spx@error@border\relax} -\spx@tempa{spx@box@} {box_} \fboxsep +% a \dimen assignment done immediately. From 6.2.0 to 7.4.0 an unfrozen +% \fboxsep was used, and at 7.4.0 it is again explicit 3pt. +% The defaults for admonitions were all modified at 7.4.0. +% For topic/contents and all admonitions the horizontal padding plus borders +% are put inside the text area (i.e. do not go into the margins). +% In order for perfect exact same vertical alignment of contents from all such +% directives, the value of horizontal border-width+padding is kept constant +% (equal to 7.5pt since 7.4.0). +% #1 macro prefix #6 option prefix top right bottom left +\spx@tempa{spx@pre@} {pre_} {3pt}{3pt}{3pt}{3pt} +\spx@tempa{spx@topic@} {div.topic_} {10pt}{7pt}{12pt}{7pt} +% 7.4.0 drops legacy settings which linked strangely padding with border width +\spx@tempa{spx@note@} {div.note_} {6pt}{7pt}{6pt}{7pt} +\spx@tempa{spx@hint@} {div.hint_} {6pt}{7pt}{6pt}{7pt} +\spx@tempa{spx@important@}{div.important_} {6pt}{7pt}{6pt}{7pt} +\spx@tempa{spx@tip@} {div.tip_} {6pt}{7pt}{6pt}{7pt} +\spx@tempa{spx@seealso@} {div.seealso_} {6pt}{7pt}{6pt}{7pt} +\spx@tempa{spx@todo@} {div.todo_} {6pt}{7pt}{6pt}{7pt} +\spx@tempa{spx@warning@} {div.warning_} {6pt}{6.5pt}{6pt}{6.5pt} +\spx@tempa{spx@caution@} {div.caution_} {6pt}{6.5pt}{6pt}{6.5pt} +\spx@tempa{spx@attention@}{div.attention_} {6pt}{6.5pt}{6pt}{6.5pt} +\spx@tempa{spx@danger@} {div.danger_} {6pt}{6.5pt}{6pt}{6.5pt} +\spx@tempa{spx@error@} {div.error_} {6pt}{6.25pt}{6pt}{6.25pt} +\spx@tempa{spx@box@} {box_} {3pt}{3pt}{3pt}{3pt} % define legacy verbatimsep key as alias of pre_padding key \expandafter\let\expandafter\KV@sphinx@verbatimsep\csname KV@sphinx@pre_padding\endcsname % define legacy shadowsep key as alias of div.topic_padding key @@ -450,30 +477,35 @@ will be set to white}% \csname #1radius@bottomright\expandafter\endcsname \csname #1radius@bottomleft\endcsname }% -\def\spx@tempb #1#2#3#4#5{% #5 = option prefix +\def\spx@tempb #1#2#3#4#5#6#7#8#9{% #5 = option prefix \define@key{sphinx}{#5border-top-left-radius}{\def#1{##1}}% \define@key{sphinx}{#5border-top-right-radius}{\def#2{##1}}% \define@key{sphinx}{#5border-bottom-right-radius}{\def#3{##1}}% \define@key{sphinx}{#5border-bottom-left-radius}{\def#4{##1}}% \define@key{sphinx}{#5border-radius}{\def#1{##1}\let#2#1\let#3#1\let#4#1}% - \csname KV@sphinx@#5border-radius\endcsname % fetches next argument + \def#1{#6}\def#2{#7}\def#3{#8}\def#4{#9}% } % The init value for corner radius in code-blocks was \z@ (i.e. 0pt) prior -% to 6.0.0., then 3pt, then \fboxsep at 6.2.0 as padding is \fboxsep, -% and \fboxsep=3pt per default (also with platex). -% macro prefix option prefix init value -\spx@tempa{spx@pre@} {pre_} \fboxsep -\spx@tempa{spx@topic@} {div.topic_} \z@ -\spx@tempa{spx@note@} {div.note_} \z@ -\spx@tempa{spx@hint@} {div.hint_} \z@ -\spx@tempa{spx@important@}{div.important_} \z@ -\spx@tempa{spx@tip@} {div.tip_} \z@ -\spx@tempa{spx@warning@} {div.warning_} \z@ -\spx@tempa{spx@caution@} {div.caution_} \z@ -\spx@tempa{spx@attention@}{div.attention_} \z@ -\spx@tempa{spx@danger@} {div.danger_} \z@ -\spx@tempa{spx@error@} {div.error_} \z@ -\spx@tempa{spx@box@} {box_} \fboxsep +% to 6.0.0., then 3pt, then \fboxsep at 6.2.0 as padding was also \fboxsep. +% At 7.4.0: +% - the 3pt is used (which is normal value of \fboxsep). +% - some admonitions use rounded corners as well. +% - topic boxed have only their bottom right corner rounded. +% macro prefix option prefix tl tr br bl +\spx@tempa{spx@pre@} {pre_} {3pt}{3pt}{3pt}{3pt} +\spx@tempa{spx@topic@} {div.topic_} \z@ \z@ {12pt} \z@ +\spx@tempa{spx@note@} {div.note_} {5pt}{5pt}{5pt}{5pt} +\spx@tempa{spx@hint@} {div.hint_} {5pt}{5pt}{5pt}{5pt} +\spx@tempa{spx@important@}{div.important_} \z@\z@\z@\z@ +\spx@tempa{spx@tip@} {div.tip_} {5pt}{5pt}{5pt}{5pt} +\spx@tempa{spx@seealso@} {div.seealso_} \z@\z@\z@\z@ +\spx@tempa{spx@todo@} {div.todo_} \z@\z@\z@\z@ +\spx@tempa{spx@warning@} {div.warning_} \z@\z@\z@\z@ +\spx@tempa{spx@caution@} {div.caution_} \z@\z@\z@\z@ +\spx@tempa{spx@attention@}{div.attention_} \z@\z@\z@\z@ +\spx@tempa{spx@danger@} {div.danger_} \z@\z@\z@\z@ +\spx@tempa{spx@error@} {div.error_} \z@\z@\z@\z@ +\spx@tempa{spx@box@} {box_} {3pt}{3pt}{3pt}{3pt} % Shadow keys % @@ -494,6 +526,8 @@ will be set to white}% \spx@tempa{spx@hint@} \spx@tempa{spx@important@} \spx@tempa{spx@tip@} +\spx@tempa{spx@seealso@}% 7.4.0 +\spx@tempa{spx@todo@}% 7.4.0 \spx@tempa{spx@warning@} \spx@tempa{spx@caution@} \spx@tempa{spx@attention@} @@ -541,6 +575,8 @@ will be set to white}% \spx@tempa{spx@hint@} {div.hint_} \spx@tempa{spx@important@}{div.important_} \spx@tempa{spx@tip@} {div.tip_} +\spx@tempa{spx@seealso@} {div.seealso_} +\spx@tempa{spx@todo@} {div.todo_} \spx@tempa{spx@warning@} {div.warning_} \spx@tempa{spx@caution@} {div.caution_} \spx@tempa{spx@attention@}{div.attention_} @@ -552,7 +588,6 @@ will be set to white}% % This definition was broken due to a typo at 5.1.0 and got fixed at 6.1.2 % MEMO: at 6.2.0 this no longer does \number\dimexpr in an \edef. Reason is to % keep in sync with div.topic_box-shadow handling of xoffset and yoffset. -% Attention in particular to \ifdim context, we add a \dimexpr to the one here. \define@key{sphinx}{shadowsize}{% \def\spx@topic@shadow@xoffset{#1}% \let\spx@topic@shadow@yoffset\spx@topic@shadow@xoffset @@ -564,8 +599,9 @@ will be set to white}% \fi }% -% Color keys -% (four of them: border, background, shadow and the text color) +% Color keys, TeXextras key, keys for admonition titles with icon +% +% Historical remarks to be removed at some point: % % Some problems due to legacy naming scheme which had diverging conventions % for code-blocks (VerbatimBorderColor, VerbatimColor) and admonitions @@ -574,27 +610,31 @@ will be set to white}% % example sphinxwarningBgColor are also documented at user level, they are not % only internally used. % -% For topic directive, "legacy" (by this I mean Sphinx around 2016-2017 after -% my first additions to LaTeX) had no interface for colors, so I could change -% some internals with no breakage during 5.x up to 6.2.0. So topic -% (shadowbox) could be unified with admonitions (sphinxheavybox), and the -% "set-up" macros could all be moved into a single one in the -% sphinxpackageboxes.sty file, with only one argument holding the directive -% type. +% For topic directive, "legacy" (around 2016-2017) had no interface for +% colours, so some internals could be changed with no breakage during 5.x up +% to 6.2.0. For example topic (shadowbox) could be unified with admonitions +% (sphinxheavybox), and the "setup" macros could all be moved into a single +% one in the sphinxpackageboxes.sty file, with only one argument holding the +% directive type. % -% It was then needed only for sphinxlatexliterals.sty to let its +% It was then needed only by sphinxlatexliterals.sty to let its emitted % \spx@verb@boxes@fcolorbox@setup incorporate some extra adjustment. % -% We associate a boolean to each color, so that the box code can -% decide to insert a \color command or consider it is not needed. +% 7.4.0 removes usages of booleans relative to usage of a colour for +% background or border which were there to optimize the boxing code from +% sphinxpackageboxes.sty when colours where not needed. These were internal +% macros so their removal should not be considered breaking. +% We keep the infrastructure for "shadowcolor" and "textcolor" because the +% defaults for them remain not to have specific colour. +% +% 7.4.0 adds keys for admonition titles: for background and foreground colors, +% and for icons (whose defaults are picked from Free Fontawesome 5). \def\spx@tempa#1{% \expandafter\spx@tempb \csname if#1withshadowcolor\expandafter\endcsname - \csname if#1withbordercolor\expandafter\endcsname - \csname if#1withbackgroundcolor\expandafter\endcsname \csname if#1withtextcolor\endcsname }% -\def\spx@tempb#1#2#3#4{\newif#1\newif#2\newif#3\newif#4}% +\def\spx@tempb#1#2{\newif#1\newif#2}% % macro prefix \spx@tempa{spx@pre@} \spx@tempa{spx@topic@} @@ -602,6 +642,8 @@ will be set to white}% \spx@tempa{spx@hint@} \spx@tempa{spx@important@} \spx@tempa{spx@tip@} +\spx@tempa{spx@seealso@} +\spx@tempa{spx@todo@} \spx@tempa{spx@warning@} \spx@tempa{spx@caution@} \spx@tempa{spx@attention@} @@ -611,29 +653,36 @@ will be set to white}% % \def\spx@tempa#1{% #1 = macro prefix \expandafter\spx@tempb - \csname #1withbordercolortrue\expandafter\endcsname - \csname #1withbackgroundcolortrue\expandafter\endcsname \csname #1withshadowcolortrue\expandafter\endcsname - \csname #1withtextcolortrue\endcsname + \csname #1withtextcolortrue\expandafter\endcsname + \csname #1TeXextras\endcsname } -\def\spx@tempb#1#2#3#4#5#6{% #5 = option prefix, #6 = color name prefix - \define@key{sphinx}{#5border-TeXcolor}% - {#1\spx@defineorletcolor{#6BorderColor}##1\relax}% - \define@key{sphinx}{#5background-TeXcolor}% - {#2\spx@defineorletcolor{#6BgColor}##1\relax}% - \define@key{sphinx}{#5box-shadow-TeXcolor}% - {#3\spx@defineorletcolor{#6ShadowColor}##1\relax}% - \define@key{sphinx}{#5TeXcolor}% - {#4\spx@defineorletcolor{#6TextColor}##1\relax}% +% 7.4.0 adds options for a title. They have an action only for admonitions, +% seealso and todo directives. +\def\spx@tempb#1#2#3#4#5{% #4 = option prefix, #5 = color name prefix + \define@key{sphinx}{#4border-TeXcolor}% + {\spx@defineorletcolor{#5BorderColor}##1\relax}% + \define@key{sphinx}{#4background-TeXcolor}% + {\spx@defineorletcolor{#5BgColor}##1\relax}% + \define@key{sphinx}{#4title-background-TeXcolor}% + {\spx@defineorletcolor{#5TtlBgColor}##1\relax}% + \define@key{sphinx}{#4title-foreground-TeXcolor}% + {\spx@defineorletcolor{#5TtlFgColor}##1\relax}% + \define@key{sphinx}{#4title-icon}% + {\@namedef{#5TtlIcon}{##1}}% + \define@key{sphinx}{#4box-shadow-TeXcolor}% + {#1\spx@defineorletcolor{#5ShadowColor}##1\relax}% + \define@key{sphinx}{#4TeXcolor}% + {#2\spx@defineorletcolor{#5TextColor}##1\relax}% + \define@key{sphinx}{#4TeXextras}% + {\def#3{##1}}% } % macro prefix option prefix color name prefix \spx@tempa{spx@pre@} {pre_} {Verbatim} % (memo: internal VerbatimShadowColor was formerly sphinxVerbatimShadowColor) % internal legacy color name is VerbatimColor not VerbatimBgColor, so redefine: \define@key{sphinx}{pre_background-TeXcolor}% - {\spx@pre@withbackgroundcolortrue\spx@defineorletcolor{VerbatimColor}#1\relax}% - \spx@pre@withbordercolortrue % 6.0.0 VerbatimBorderColor {RGB}{32,32,32} - \spx@pre@withbackgroundcolortrue % 6.0.0 VerbatimColor {gray}{0.95} + {\spx@defineorletcolor{VerbatimColor}#1\relax}% % Keep legacy option names working \expandafter\let\expandafter\KV@sphinx@VerbatimBorderColor \csname KV@sphinx@pre_border-TeXcolor\endcsname @@ -646,6 +695,8 @@ will be set to white}% \spx@tempa{spx@hint@} {div.hint_} {sphinxhint} \spx@tempa{spx@important@}{div.important_} {sphinximportant} \spx@tempa{spx@tip@} {div.tip_} {sphinxtip} +\spx@tempa{spx@seealso@} {div.seealso_} {sphinxseealso} +\spx@tempa{spx@todo@} {div.todo_} {sphinxtodo} \spx@tempa{spx@warning@} {div.warning_} {sphinxwarning} \spx@tempa{spx@caution@} {div.caution_} {sphinxcaution} \spx@tempa{spx@attention@}{div.attention_} {sphinxattention} @@ -666,11 +717,12 @@ will be set to white}% \spx@tempa{div.error_} {error} % Keep legacy sphinxsetup BorderColor for =note, hint, ... - % which will not trigger sphinxheavybox - % Add "legacy" hintTextColor etc... that will not trigger sphinxheavybox + % Add "legacy" names BgColor (added at 7.4.0) and TextColor \def\spx@tempa#1#2{% #1 = CSS like option prefix, #2 = legacy option prefix \expandafter\let\csname KV@sphinx@#2BorderColor\expandafter\endcsname \csname KV@sphinx@#1border-TeXcolor\endcsname + \expandafter\let\csname KV@sphinx@#2BgColor\expandafter\endcsname + \csname KV@sphinx@#1background-TeXcolor\endcsname \expandafter\let\csname KV@sphinx@#2TextColor\expandafter\endcsname \csname KV@sphinx@#1TeXcolor\endcsname } @@ -679,28 +731,7 @@ will be set to white}% \spx@tempa{div.important_} {important} \spx@tempa{div.tip_} {tip} -% The TeXextras key -% -\def\spx@tempa#1{% #1 = macro prefix - \expandafter\spx@tempb\csname #1TeXextras\endcsname -} -\def\spx@tempb#1#2{% #2 = option prefix - \define@key{sphinx}{#2TeXextras}{\def#1{##1}}% -} -% macro prefix option prefix -\spx@tempa{spx@pre@} {pre_} -\spx@tempa{spx@topic@} {div.topic_} -\spx@tempa{spx@note@} {div.note_} -\spx@tempa{spx@hint@} {div.hint_} -\spx@tempa{spx@important@}{div.important_} -\spx@tempa{spx@tip@} {div.tip_} -\spx@tempa{spx@warning@} {div.warning_} -\spx@tempa{spx@caution@} {div.caution_} -\spx@tempa{spx@attention@}{div.attention_} -\spx@tempa{spx@danger@} {div.danger_} -\spx@tempa{spx@error@} {div.error_} -\spx@tempa{spx@box@} {box_} - % Add "legacy" hintTeXextras etc... that will not trigger sphinxheavybox + % Add "legacy" hintTeXextras etc... \def\spx@tempa#1#2{% #1 = CSS like option prefix, #2 = legacy option prefix \expandafter\let\csname KV@sphinx@#2TeXextras\expandafter\endcsname \csname KV@sphinx@#1TeXextras\endcsname @@ -710,64 +741,147 @@ will be set to white}% \spx@tempa{div.important_} {important} \spx@tempa{div.tip_} {tip} -% For note type admonitions, redefine all CSS-like named options to trigger -% the "heavybox" path. + % At 7.4.0, let topic/contents boxes acquire background and border colours + % and give the shadow some colour other than black + \setkeys{sphinx}{div.topic_border-TeXcolor=sphinx-admonition-bordercolor, + div.topic_background-TeXcolor=sphinx-admonition-bgcolor, + div.topic_box-shadow-TeXcolor={RGB}{108,108,108}, + } + + +% 7.4.0 lets all types of admonitions style especially their titlss. +% The Sphinx default colours for admonition titles are copied from PR #12486 +% which modified sphinx13.css (see also earlier #12439) +% The actual code using the colours and icons whose defaults are set here +% is to be found in sphinxlatexadmonitions.sty. +% +% MEMO: unfortunately xcolor does NOT implement HSL but only HSB! +% So the sphinx13.css colours specified via hsl() got converted to RGB here +\definecolor{sphinx-admonition-title-bgcolor}{RGB}{229,229,229} % hsl(0, 0%, 90%); +\definecolor{sphinx-admonition-title-fgcolor}{RGB}{127,127,127} % hsl(0, 0%, 50%); +\definecolor{sphinx-warning-title-bgcolor} {RGB}{248,228,210} % hsl(28.5, 74%, 90%); +\definecolor{sphinx-warning-title-fgcolor} {RGB}{221,122,33} % hsl(28.5, 74%, 50%); +\definecolor{sphinx-note-title-bgcolor} {RGB}{208,222,250} % hsl(219.5, 84%, 90%); +\definecolor{sphinx-note-title-fgcolor} {RGB}{20,93,234} % hsl(219.5, 84%, 50%); +\definecolor{sphinx-success-title-bgcolor} {RGB}{220,239,230} % hsl(150, 36.7%, 90%); +\definecolor{sphinx-success-title-fgcolor} {RGB}{81,174,128} % hsl(150, 36.7%, 50%); +\definecolor{sphinx-error-title-bgcolor} {RGB}{238,220,220} % hsl(0, 37%, 90%); +\definecolor{sphinx-error-title-fgcolor} {RGB}{174,80,80} % hsl(0, 37%, 50%); +\definecolor{sphinx-todo-title-bgcolor} {RGB}{226,204,254} % hsl(266.8, 100%, 90%); +\definecolor{sphinx-todo-title-fgcolor} {RGB}{113,0,255} % hsl(266.8, 100%, 50%); + +% Now use the above colours as default settings, following the choices +% done in sphinx13.css +\setkeys{sphinx}{ + div.note_title-background-TeXcolor=sphinx-note-title-bgcolor, + div.note_title-foreground-TeXcolor=sphinx-note-title-fgcolor, +% + div.hint_title-background-TeXcolor=sphinx-success-title-bgcolor, + div.hint_title-foreground-TeXcolor=sphinx-success-title-fgcolor, + div.tip_title-background-TeXcolor=sphinx-success-title-bgcolor, + div.tip_title-foreground-TeXcolor=sphinx-success-title-fgcolor, + div.seealso_title-background-TeXcolor=sphinx-success-title-bgcolor, + div.seealso_title-foreground-TeXcolor=sphinx-success-title-fgcolor, + div.todo_title-background-TeXcolor=sphinx-todo-title-bgcolor, + div.todo_title-foreground-TeXcolor=sphinx-todo-title-fgcolor, +% + div.important_title-background-TeXcolor=sphinx-warning-title-bgcolor, + div.important_title-foreground-TeXcolor=sphinx-warning-title-fgcolor, + div.caution_title-background-TeXcolor=sphinx-warning-title-bgcolor, + div.caution_title-foreground-TeXcolor=sphinx-warning-title-fgcolor, + div.warning_title-background-TeXcolor=sphinx-warning-title-bgcolor, + div.warning_title-foreground-TeXcolor=sphinx-warning-title-fgcolor, % -% MEMO: the noteBorderColor and noteborder legacy options have already been -% re-created and they do not trigger the "heavybox" as their meaning will not -% be modified in the loop below contrarily to their CSS counterparts -% div.note_border-TeXcolor and div.note_border-width, and to the noteBgColor -% etc... which are handled below. + div.attention_title-background-TeXcolor=sphinx-error-title-bgcolor, + div.attention_title-foreground-TeXcolor=sphinx-error-title-fgcolor, + div.danger_title-background-TeXcolor=sphinx-error-title-bgcolor, + div.danger_title-foreground-TeXcolor=sphinx-error-title-fgcolor, + div.error_title-background-TeXcolor=sphinx-error-title-bgcolor, + div.error_title-foreground-TeXcolor=sphinx-error-title-fgcolor, % -% This goes via rather hardcore TeX here. -\def\spx@tempa#1{\if\relax#1\expandafter\@gobble +% TODO: implement todo (sic) +% +} + +% 7.4.0 Support for icons in admonition titles +% We try to +% - get Sphinx PDF builds to process fine in absence of fontawesome5 +% - use fontawesome5 if present, but not if user prefers another package +% - provide an interface for using other LaTeX code for icons +% - provide an interface for using some other package than fontawesome5 +% Indeed we can't load fontawesome5 unconditionally even if available, +% as it proves incompatible with fontawesome package. +% We thus must delay its loading. +\IfFileExists{fontawesome5.sty}{% + \DeclareStringOption[fontawesome5]{iconpackage}% +}% +{% + \IfFileExists{fontawesome.sty} + {\DeclareStringOption[fontawesome]{iconpackage}} + {\DeclareStringOption[none]{iconpackage}}% +}% +\newcommand\spx@faIcon[3][]{}% +% The hacky definition of \spx@faIcon above is to let it by default swallow +% the icon macro and the \sphinxtitlerowaftericonspacecmd (see +% \sphinxdotitlerowwithicon in sphinxlatexadmonitions.sty) which inserts +% a space between it and title. See how \spx@faIcon is used below. +% +% If user sets a title-icon key to some LaTeX code of their own, of course +% \spx@faIcon is not executed and the inserted space will thus be there, as +% expected. +% +\def\spxstring@fontawesome{fontawesome} +\def\spxstring@fontawesomev{fontawesome5} +\AtBeginDocument{% + \ifx\spx@opt@iconpackage\spxstring@none \else - \toks@{##1}% - \expandafter\def\csname KV@sphinx@div.note_#1\expandafter\endcsname - \the\toks0\expandafter{% - \csname spx@opt@heavynotetrue\expandafter\expandafter\expandafter\endcsname - \csname KV@sphinx@div.note_#1\endcsname{##1}}% - \expandafter\def\csname KV@sphinx@div.hint_#1\expandafter\endcsname - \the\toks0\expandafter{% - \csname spx@opt@heavyhinttrue\expandafter\expandafter\expandafter\endcsname - \csname KV@sphinx@div.hint_#1\endcsname{##1}}% - \expandafter\def\csname KV@sphinx@div.important_#1\expandafter\endcsname - \the\toks0\expandafter{% - \csname spx@opt@heavyimportanttrue\expandafter\expandafter\expandafter\endcsname - \csname KV@sphinx@div.important_#1\endcsname{##1}}% - \expandafter\def\csname KV@sphinx@div.tip_#1\expandafter\endcsname - \the\toks0\expandafter{% - \csname spx@opt@heavytiptrue\expandafter\expandafter\expandafter\endcsname - \csname KV@sphinx@div.tip_#1\endcsname{##1}}% + \IfFileExists{\spx@opt@iconpackage.sty} + {\RequirePackage{\spx@opt@iconpackage}% + \ifx\spx@opt@iconpackage\spxstring@fontawesomev + \renewcommand\spx@faIcon{\faIcon}% + \else + \ifx\spx@opt@iconpackage\spxstring@fontawesome + \renewcommand\spx@faIcon[2][]{\faicon{##2}}% + % The \ifdefined's are a bit silly because we know that + % fontawesome.sty does not provide it, but perhaps + % there can be some new release of that package? + \ifdefined\faicon@lightbulb\else + \let\faicon@lightbulb\faLightbulbO + \fi + \ifdefined\faicon@radiation\else + \let\faicon@radiation\faBolt + \fi + \ifdefined\faicon@pen\else + \let\faicon@pen\faPencil + \fi + % if neither has been required, \spx@faIcon will simply swallow + % its argument (and follwing space macro) and it is up to user + % to set the keys appropriately. + \fi\fi % + }% + {% + \sphinxbuildwarning{badiconpackage}% + \PackageWarningNoLine{sphinx}{% + You have set iconpackage=\spx@opt@iconpackage\MessageBreak + But \spx@opt@iconpackage.sty is not found by LaTeX} + }% \fi - \spx@tempa } -\spx@tempa{border-width}% - {border-top-width}{border-right-width}{border-bottom-width}{border-left-width}% - {box-decoration-break}% - {padding}% - {padding-top}{padding-right}{padding-bottom}{padding-left}% - {border-radius}% - {border-top-left-radius}{border-top-right-radius}% - {border-bottom-right-radius}{border-bottom-left-radius}% - {box-shadow}% - {border-TeXcolor}{background-TeXcolor}{box-shadow-TeXcolor}{TeXcolor}% - {TeXextras}% -\relax - -% Now we add at 6.2.0 BgColor et al. options which will trigger the -% "heavybox" as they are \let to the div._background-TeXColor option -% which has already been enhanced to set the boolean for rendering via -% "heavybox". This is in contrast with legacy BorderColor, -% and with the new TeXcolor and TeXextras. - \def\spx@tempa#1#2{% #1 = CSS like option prefix, #2 = legacy style option prefix - \expandafter\let\csname KV@sphinx@#2BgColor\expandafter\endcsname - \csname KV@sphinx@#1background-TeXcolor\endcsname - } - \spx@tempa{div.note_} {note} - \spx@tempa{div.hint_} {hint} - \spx@tempa{div.important_} {important} - \spx@tempa{div.tip_} {tip} + +\setkeys{sphinx}{ +% Icon defaults. + div.note_title-icon = \spx@faIcon{info-circle}, + div.hint_title-icon = \spx@faIcon[regular]{lightbulb}, + div.tip_title-icon = \spx@faIcon[regular]{lightbulb}, + div.seealso_title-icon = \spx@faIcon{share}, + div.todo_title-icon = \spx@faIcon{pen}, + div.important_title-icon = \spx@faIcon{pause-circle}, + div.caution_title-icon = \spx@faIcon{radiation}, + div.warning_title-icon = \spx@faIcon{exclamation-triangle}, + div.attention_title-icon = \spx@faIcon{exclamation-triangle}, + div.danger_title-icon = \spx@faIcon{radiation}, + div.error_title-icon = \spx@faIcon{times-circle}, +} \newif\ifspx@opt@box@addstrut \expandafter\def\csname KV@sphinx@box_addstrut\endcsname#1{% @@ -918,20 +1032,23 @@ will be set to white}% } % Some of these defaults got already set. But we now list them all explicitly % for a complete initial configuration of reset storage. -% +% At 7.4.0, \fboxrule and \fboxsep replaced by 0.4pt and 3pt which are anyhow +% the defaults for these LaTeX dimensions. \let\spx@boxes@sphinxbox@defaults\@gobble \sphinxboxsetup{% - border-width=\fboxrule,% <-not really needed to avoid EOL space - padding=\fboxsep,% but done here out of habit - border-radius=\fboxsep,% - box-shadow=none,% -% As xcolor is perhaps not loaded we can not use background-TeXcolor=VerbatimColor -% which would not be compatible with \definecolor syntax. - border-TeXcolor={RGB}{32,32,32},% the default VerbatimBorderColor - background-TeXcolor={gray}{0.95},% the default VerbatimColor - box-shadow-TeXcolor={rgb}{0,0,0},% - TeXextras={},% - addstrut=false% (a final comma here would not hurt) + border-width=0.4pt, + padding=3pt, + border-radius=0.4pt, + box-shadow=none, +% MEMO: as xcolor is loaded, \spx@defineorletcolor has a "\colorlet" branch +% which makes this syntax acceptable and avoids duplicating here the values. + border-TeXcolor=VerbatimBorderColor, + background-TeXcolor=VerbatimColor, +% 7.4.0 modified the color of the shadow (anyhow box-shadow is set above to none +% so no shadow is drawn), to be as the new shadow colour of topic boxes. + box-shadow-TeXcolor={RGB}{108,108,108}, + TeXextras={}, + addstrut=false, }% \RequirePackage{sphinxpackageboxes} \input{sphinxlatexadmonitions.sty} diff --git a/sphinx/texinputs/sphinxlatexadmonitions.sty b/sphinx/texinputs/sphinxlatexadmonitions.sty index a31ae4c..c0f6578 100644 --- a/sphinx/texinputs/sphinxlatexadmonitions.sty +++ b/sphinx/texinputs/sphinxlatexadmonitions.sty @@ -1,25 +1,51 @@ %% NOTICES AND ADMONITIONS % % change this info string if making any custom modification -\ProvidesFile{sphinxlatexadmonitions.sty}[2023/03/19 admonitions] +\ProvidesFile{sphinxlatexadmonitions.sty}[2024/07/01 v7.4.0 admonitions] % Provides support for this output mark-up from Sphinx latex writer: % -% - sphinxseealso environment added at 6.1.0 +% - sphinxseealso environment added at 6.1.0. +% +% At 7.4.0 it too now uses sphinxheavybox, and has the same associated +% sphinxsetup CSS keys as admonitions do. +% +% - sphinxtodo environment added at 7.4.0. % % - sphinxadmonition (environment) -% This is a dispatch supporting +% This is a dispatch which formerly configured +% +% - note, hint, important, tip to use sphinxlightbox (or optionally +% sphinxheavybox since 6.2.0), +% - warning, caution, attention, danger, error to use sphinxheavybox. % -% - note, hint, important, tip (via sphinxlightbox) -% (also optionally via sphinxheavybox since 6.2.0) -% - warning, caution, attention, danger, error (via sphinxheavybox) +% At 7.4.0 all admonitions use sphinxheavybox. % -% Each sphinx environment can be redefined by user. -% The defaults are customizable via various colour and dimension -% settings, cf sphinx docs (latex customization). +% - All environments sphinxnote, sphinxwarning, etc... can be redefined as +% will by user. Thay have a single parameter #1 which is the title. +% +% - The default sphinxnote, sphinxwarning, etc... use associated +% one-argument macros \sphinxstylenotetitle, \sphinxstylewarningtitle, etc +% which can be redefined. Their default is to use \sphinxdotitlerowwithicon +% to typeset the title in a coloured header row at top of the +% admonition. (new with 7.4.0) +% +% The sphinxlightbox environment is kept for backward compatiblity, for user +% custom code which used it via custom definitions done in preamble or via +% raw latex directive. +% MEMO: here is for example how sphinxnote was formerly defined: +% (where #1 is the localized string Note, followed with a colon) +% \newenvironment{sphinxnote}[1] +% {\begin{sphinxlightbox}\sphinxstrong{#1} } +% {\end{sphinxlightbox}} +% Use this if you want to revert the 7.4.0 switch to usage of sphinxheavybox. +% (the 7.4.0 redefined \sphinxstylenotetitle will not work in sphinxlightbox, +% so \sphinxstrong{#1} which was its former default is used above). + % % Requires: \RequirePackage{sphinxpackageboxes} +% 7.4.0 removes unneeded \spx@boxes@border \RequirePackage{framed}% used by sphinxheavybox % % Dependencies (they do not need to be defined at time of loading): @@ -29,25 +55,17 @@ % - dimension register \spx@image@maxheight from sphinxlatexgraphics.sty % % - \savenotes/\spewnotes from sphinxpackagefootnote (for sphinxheavybox) -% -% - \sphinxstylenotetitle, ..., \sphinxstylewarningtitle, etc... which are used by -% default in the corresponding sphinx environments to replace at 6.2.0 -% formerly hard-coded \sphinxstrong{#1} -% Their definitions are in sphinxlatexstyletext.sty. - % Provides: (also in sphinxlatexliterals.sty) +% Only needed here by legacy (deprecated) sphinxlightbox environment. \providecommand*\sphinxvspacefixafterfrenchlists{% \ifvmode\ifdim\lastskip<\z@ \vskip\parskip\fi\else\par\fi } -% Some are quite plain -\newenvironment{sphinxseealso}[1]{\sphinxstyleseealsotitle{#1}}{} - % This \dimen register is a legacy relic from Sphinx 1.5 which is used now % only for sphinxlightbox. It is set in the sphinxadmonition environment. \newdimen\spx@notice@border - +% sphinxlightbox is now also a legacy relic, not used by Sphinx anymore \newenvironment{sphinxlightbox}{% \par \noindent{\color{spx@notice@bordercolor}% @@ -65,55 +83,28 @@ {\linewidth}{\spx@notice@border}}\hss}\allowbreak }% end of sphinxlightbox environment definition -% note/hint/important/tip notices -% -% Since 1.5 these environments are named individually to allow user to -% redefine them entirely. +% Since 1.5 these environments are named individually sphinxnote, sphinxhint, +% etc... to allow user to redefine them entirely. % -% The Sphinx definitions were done like this, prior to 6.2.0: +% The Sphinx definitions for note/hint/important/tip notices were done like +% this, prior to 6.2.0: % % \newenvironment{sphinxhint}[1] % {\begin{sphinxlightbox}\sphinxstrong{#1} }{\end{sphinxlightbox}} % -% The more complex definition below will branch to sphinxheavybox if a certain -% boolean associated to the notice type is true. This boolean is set to true -% whenever a CSS-named alike options for the notice type has been used in -% sphinxsetup. The old coding as above would still work, with the new options -% being then simply ignored. A user redefinition will probably either use -% directly sphinxlightbox or sphinxheavybox or something else, with no need to -% test the boolean. -% -% 6.2.0 also adds one layer of mark-up via \sphinxnotetitle etc..., because -% the former \sphinxstrong{#1} used a too generic \sphinxstrong. But -% perhaps the #1 should be passed over to sphinx{light,heavy}box as parameter. -% Unfortunately replacing these environments with one-parameter environments -% would be potentially a breaking change. Anyway, sphinxpackageboxes.sty does not -% provide a "titled" box; the caption of code-blocks is handled by extra -% code in sphinxVerbatim. -\newenvironment{sphinxnote}[1] - {\edef\spx@env{sphinx\ifspx@opt@heavynote heavy\else light\fi box}% - \expandafter\begin\expandafter{\spx@env}\sphinxstylenotetitle{#1}} - {\expandafter\end\expandafter{\spx@env}} -\newenvironment{sphinxhint}[1] - {\edef\spx@env{sphinx\ifspx@opt@heavyhint heavy\else light\fi box}% - \expandafter\begin\expandafter{\spx@env}\sphinxstylehinttitle{#1}} - {\expandafter\end\expandafter{\spx@env}} -\newenvironment{sphinximportant}[1] - {\edef\spx@env{sphinx\ifspx@opt@heavyimportant heavy\else light\fi box}% - \expandafter\begin\expandafter{\spx@env}\sphinxstyleimportanttitle{#1}} - {\expandafter\end\expandafter{\spx@env}} -\newenvironment{sphinxtip}[1] - {\edef\spx@env{sphinx\ifspx@opt@heavytip heavy\else light\fi box}% - \expandafter\begin\expandafter{\spx@env}\sphinxstyletiptitle{#1}} - {\expandafter\end\expandafter{\spx@env}} - -% warning/caution/attention/danger/error get more distinction +% Then from 6.2.0 to 7.4.0 (exclusive) a more complex definition decided +% to use either sphinxlightbox or sphinxheavybox according to whether +% some CSS-like options had been used, for example for a background color. +% +% 6.2.0 also added one layer of mark-up via \sphinxnotetitle etc..., because +% the former \sphinxstrong{#1} used a too generic \sphinxstrong. +% +% At 7.4.0, sphinxheavybox environment is default for all types of notices +% and also for the seealso and todo directives. % % Code adapted from framed.sty's "snugshade" environment. % Nesting works (inner frames do not allow page breaks). \newenvironment{sphinxheavybox}{\par - % 6.2.0 allows to not have to distinguish here between warning type notices - % which always use sphinxheavybox or note type notices which might use it. % (MEMO: it is not a problem here if there is no sphinxShadowColor, % as it used only if set) \spx@boxes@fcolorbox@setup{\spx@noticetype}% @@ -205,16 +196,80 @@ % Example: % \renewcommand{\sphinxwarningtitle}[1]{\textbf{#1}\par\smallskip % {\color{sphinxwarningBorderColor}\hrule height1pt}\smallskip} +% +% - Since 7.4.0, all types of notices use sphinxheavybox and the default +% for \sphinxstyletitle is mapped to using \sphinxdotitlerowwithicon{} +% +% MEMO: except for the generic admonition directive (which uses "note" type) +% the argument #1 in these environments has a postfixed colon originating +% in Sphinx LaTeX writer legacy code. The +% \sphinxremovefinalcolon utility in sphinxlatexstyletext.sty can be used as +% \sphinxremovefinalcolon{#1} from inside the definitions of +% \sphinxstylenotetitle et al. commands. + +% Important: even prior to 5.1.0 it was not really possible to use directly +% sphinxheavybox if not triggered from sphinxadmonition, because some +% parameters were defined in sphinxadmonition. This meant that the +% sphinxwarning, sphinxcaution etc... environments (defined below) could not +% be used directly in a document, they had to be triggered via +% sphinxadmonition. The sole data since 5.1.0 needed by sphinxheavybox is the +% type of the notice which sphinxadmonition stores into \spx@noticetype. +% +% In order to facilitate recycling or imitation of the sphinx +% environments, 7.4.0 inserts an extra \def\spx@noticetype{} in their +% definitions, so that they can be used independently of sphinxadmonition +% dispatcher. +% +% MEMO: direct usage of these environments does not execute the div._TeXextras +% and div._TexColor code, there are only done from the sphinxadmonition wrapper. +\newenvironment{sphinxnote}[1] + {\def\spx@noticetype{note}\begin{sphinxheavybox}\sphinxstylenotetitle{#1}} + {\end{sphinxheavybox}} +\newenvironment{sphinxhint}[1] + {\def\spx@noticetype{hint}\begin{sphinxheavybox}\sphinxstylehinttitle{#1}} + {\end{sphinxheavybox}} +\newenvironment{sphinxtip}[1] + {\def\spx@noticetype{tip}\begin{sphinxheavybox}\sphinxstyletiptitle{#1}} + {\end{sphinxheavybox}} +\newenvironment{sphinximportant}[1] + {\def\spx@noticetype{important}\begin{sphinxheavybox}\sphinxstyleimportanttitle{#1}} + {\end{sphinxheavybox}} \newenvironment{sphinxwarning}[1] - {\begin{sphinxheavybox}\sphinxstylewarningtitle{#1}}{\end{sphinxheavybox}} + {\def\spx@noticetype{warning}\begin{sphinxheavybox}\sphinxstylewarningtitle{#1}} + {\end{sphinxheavybox}} \newenvironment{sphinxcaution}[1] - {\begin{sphinxheavybox}\sphinxstylecautiontitle{#1}}{\end{sphinxheavybox}} + {\def\spx@noticetype{caution}\begin{sphinxheavybox}\sphinxstylecautiontitle{#1}} + {\end{sphinxheavybox}} \newenvironment{sphinxattention}[1] - {\begin{sphinxheavybox}\sphinxstyleattentiontitle{#1}}{\end{sphinxheavybox}} + {\def\spx@noticetype{attention}\begin{sphinxheavybox}\sphinxstyleattentiontitle{#1}} + {\end{sphinxheavybox}} \newenvironment{sphinxdanger}[1] - {\begin{sphinxheavybox}\sphinxstyledangertitle{#1}}{\end{sphinxheavybox}} + {\def\spx@noticetype{danger}\begin{sphinxheavybox}\sphinxstyledangertitle{#1}} + {\end{sphinxheavybox}} \newenvironment{sphinxerror}[1] - {\begin{sphinxheavybox}\sphinxstyleerrortitle{#1}}{\end{sphinxheavybox}} + {\def\spx@noticetype{error}\begin{sphinxheavybox}\sphinxstyleerrortitle{#1}} + {\end{sphinxheavybox}} +% The "see also" was quite plain until 7.4.0 as it simply did +% \newenvironment{sphinxseealso}[1]{\sphinxstyleseealsotitle{#1}}{} +% Here we need to manually insert execution of div.seealso_TeX{color,extras} values +\newenvironment{sphinxseealso}[1] + {\def\spx@noticetype{seealso}% + \begin{sphinxheavybox}\sphinxstyleseealsotitle{#1}% + \ifspx@seealso@withtextcolor\color{sphinxseealsoTextColor}\fi + \spx@seealso@TeXextras + } + {\end{sphinxheavybox}} +% There was no sphinxtodo environment until 7.4.0 because sphinx.ext.todo +% generated \begin{sphinxadmonition}{note}{Todo:} mark-up. +\newcounter{sphinxtodo}% to provide targets from todolist directive output +\newenvironment{sphinxtodo}[1] + {\refstepcounter{sphinxtodo}\def\spx@noticetype{todo}% + \begin{sphinxheavybox}\sphinxstyletodotitle{#1}% + \ifspx@todo@withtextcolor\color{sphinxtodoTextColor}\fi + \spx@todo@TeXextras + } + {\end{sphinxheavybox}} + % the main dispatch for all types of notices \newenvironment{sphinxadmonition}[2]{% #1=type, #2=heading @@ -227,16 +282,104 @@ % the more bulky "sphinx\spx@noticetype BgColor". \sphinxcolorlet{spx@notice@bordercolor}{sphinx#1BorderColor}% \sphinxcolorlet{spx@notice@bgcolor}{sphinx#1BgColor}% - \spx@notice@border \dimexpr\csname spx@#1@border\endcsname\relax + % At 7.4.0 there are no \spx@@boder macros anymore only top, left, + % bottom, right. For this legacy \spx@notice@border only needed by + % sphinxlightbox (which is not used by own Sphinx environments anymore) + % we thus use here @top + \spx@notice@border \dimexpr\csname spx@#1@border@top\endcsname\relax % trigger the sphinx environment, #2=heading is passed as argument \begin{sphinx#1}{#2}% + % MEMO: the heading #2 will be typeset before the next lines are executed % 6.2.0 support of div._TeX{color,extras} options \csname ifspx@\spx@noticetype @withtextcolor\endcsname \color{sphinx\spx@noticetype TextColor}% \fi + % Other code to be executed at start of contents (after title) \csname spx@\spx@noticetype @TeXextras\endcsname } - % workaround some LaTeX "feature" of \end command (can't use "sphinx#1" here) + % workaround some LaTeX "feature" of \end command (i.e. can't use "sphinx#1" here) {\edef\spx@temp{\noexpand\end{sphinx\spx@noticetype}}\spx@temp} +\newcommand\sphinxtitlerowtoppadding{5pt} +\newcommand\sphinxtitlerowbottompadding{3pt} +\newcommand\sphinxtitlerowaftericonspacecmd{\hskip0.5em\relax} +\newcommand\sphinxdotitlerowwithicon[2]{% #1=type, #2=heading (without final colon) + \begingroup + \kern-\spx@boxes@padding@top + \parskip\z@skip % the \parskip business is a workaround to a vertical + % glue issue showing in LaTeX earlier than 2023-06-01 + \noindent + \kern-\spx@boxes@padding@left % must have been configured by a prior + % \spx@boxes@fcolorbox@setup{} + % inherit settings from the enclosing box and modify what is needed + \spx@boxes@border@top =\z@ + \spx@boxes@border@right =\z@ + \spx@boxes@border@bottom =\z@ + \spx@boxes@border@left =\z@ + \spx@boxes@radius@bottomright@x=\z@ + \spx@boxes@radius@bottomright@y=\z@ + \spx@boxes@radius@bottomleft@x=\z@ + \spx@boxes@radius@bottomleft@x=\z@ + \spx@boxes@padding@top =\sphinxtitlerowtoppadding\relax + \spx@boxes@padding@bottom=\sphinxtitlerowbottompadding\relax + \spx@boxes@withshadowfalse + \sphinxcolorlet{spx@boxes@backgroundcolor}{sphinx#1TtlBgColor}% + \spx@boxes@fcolorbox{% + \makebox[\linewidth][l]{% + \textcolor{sphinx#1TtlFgColor}{% + \@nameuse{sphinx#1TtlIcon}% + % This macro is located here and not after the closing brace + % for reasons of fall-back \spx@faIcon definition in sphinx.sty + % in case fontawesome5 package not found. + \sphinxtitlerowaftericonspacecmd + }% + \sphinxstrong{#2}% + \strut}% + }% + \kern-\spx@boxes@padding@right + \par + \endgroup + \vskip-\parskip + \kern\spx@boxes@padding@top +} + +% #1 holds the localized name of the notice, postfixed with a colon. +% \sphinxremovefinalcolon{#1} will typeset #1 without the colon. +% Legacy definitions (done in sphinxlatexstyletext.sty) were all using +% a boring plain \sphinxstrong{#1}, now we use a coloured title row. +\newcommand\sphinxstylenotetitle [1]{\sphinxdotitlerowwithicon{note}{\sphinxremovefinalcolon{#1}}} +\newcommand\sphinxstylehinttitle [1]{\sphinxdotitlerowwithicon{hint}{\sphinxremovefinalcolon{#1}}} +\newcommand\sphinxstyleimportanttitle[1]{\sphinxdotitlerowwithicon{important}{\sphinxremovefinalcolon{#1}}} +\newcommand\sphinxstyletiptitle [1]{\sphinxdotitlerowwithicon{tip}{\sphinxremovefinalcolon{#1}}} +\newcommand\sphinxstylewarningtitle [1]{\sphinxdotitlerowwithicon{warning}{\sphinxremovefinalcolon{#1}}} +\newcommand\sphinxstylecautiontitle [1]{\sphinxdotitlerowwithicon{caution}{\sphinxremovefinalcolon{#1}}} +\newcommand\sphinxstyleattentiontitle[1]{\sphinxdotitlerowwithicon{attention}{\sphinxremovefinalcolon{#1}}} +\newcommand\sphinxstyledangertitle [1]{\sphinxdotitlerowwithicon{danger}{\sphinxremovefinalcolon{#1}}} +\newcommand\sphinxstyleerrortitle [1]{\sphinxdotitlerowwithicon{error}{\sphinxremovefinalcolon{#1}}} +\newcommand\sphinxstyleseealsotitle [1]{\sphinxdotitlerowwithicon{seealso}{\sphinxremovefinalcolon{#1}}} +\newcommand\sphinxstyletodotitle [1]{\sphinxdotitlerowwithicon{todo}{\sphinxremovefinalcolon{#1}}} +% +% A utility to remove a final colon. Removing last token is not easy in +% LaTeX, and there are additional complications: +% - some languages will make the : "active" in document body, +% - the generic admonition ends up using "note", so for \sphinxnotetitle to +% use it safely, the utility has to allow an input not having any final colon. +% - a bit far-fetched but maybe there is more than one colon inside the input +% (possible from a generic admonition title). +% Hence the scary code. +\newcommand\sphinxremovefinalcolon[1]{% #1 is the "active" : TeX token +% Prior to 7.4.0 this was defined with \protected\def but we do not +% see what usefulness this could have. +\renewcommand\sphinxremovefinalcolon[1]{% + % complications due to : possibly "active" + \begingroup\ifnum\catcode`:=\active + \def\x####1#1\relax{####1}% + \else\def\x####1:\relax{####1}\fi + \expandafter\endgroup\x##1\relax + % trick to let \x work also if input ##1 has no ending colon + \@gobblefour#1\relax:\relax\relax\relax + }% +}% end of wrapper to inject active : +\begingroup\catcode`:\active\expandafter\endgroup\sphinxremovefinalcolon: + \endinput diff --git a/sphinx/texinputs/sphinxlatexliterals.sty b/sphinx/texinputs/sphinxlatexliterals.sty index 3a73a76..8acea9f 100644 --- a/sphinx/texinputs/sphinxlatexliterals.sty +++ b/sphinx/texinputs/sphinxlatexliterals.sty @@ -1,7 +1,7 @@ %% LITERAL BLOCKS % % change this info string if making any custom modification -\ProvidesFile{sphinxlatexliterals.sty}[2023/04/01 code-blocks and parsed literals] +\ProvidesFile{sphinxlatexliterals.sty}[2024/07/01 v7.4.0 code-blocks and parsed literals] % Provides support for this output mark-up from Sphinx latex writer: % @@ -34,6 +34,7 @@ % - needspace % - sphinxpackageboxes \RequirePackage{sphinxpackageboxes} +% 7.4.0 removes unneeded usage of \spx@boxes@border % also in sphinxlatexadmonitions.sty: % This is a workaround to a "feature" of French lists, when literal block @@ -224,7 +225,6 @@ \spx@boxes@border@right\z@ \spx@boxes@border@bottom\z@ \spx@boxes@border@left\z@ - \spx@boxes@border\z@ % MEMO: rounded corners still make sense in presence of a background % color, so we do not force the fcolorbox@rectangle here \fi @@ -670,25 +670,18 @@ \def\sphinxVerbatim@Before {\sphinxVerbatim@Title\nointerlineskip \kern\dimexpr-\dp\strutbox+\sphinxbelowcaptionspace - % if no frame (code-blocks inside table cells), remove - % the top padding (better visually) - \ifspx@opt@verbatimwithframe\else - % but we must now check if there is a background color - % MEMO: "fcolorbox@setup" will have been done by time of use - \ifspx@boxes@withbackgroundcolor\else-\spx@boxes@padding@top\fi - \fi + % MEMO: prior to 7.4.0 a test was done for presence or + % not of a frame and if not top padding was removed if + % no background color. A background color is now always + % assumed, so this got removed. % caption package adds \abovecaptionskip vspace, remove it - \spx@ifcaptionpackage{-\abovecaptionskip}{}\relax}% + \spx@ifcaptionpackage{-\abovecaptionskip}{}\relax}% \else \vskip\sphinxverbatimsmallskipamount \def\sphinxVerbatim@After {\nointerlineskip\kern\dimexpr\dp\strutbox - \ifspx@opt@verbatimwithframe\else - % but we must now check if there is a background color - % MEMO: "fcolorbox@setup" will have been done by time of use - \ifspx@boxes@withbackgroundcolor\else-\spx@boxes@padding@bottom\fi - \fi - \spx@ifcaptionpackage{-\abovecaptionskip}{}\relax + % MEMO: 7.4.0 removes here too an optional removal of bottom padding + \spx@ifcaptionpackage{-\abovecaptionskip}{}\relax \sphinxVerbatim@Title}% \fi \def\@captype{literalblock}% diff --git a/sphinx/texinputs/sphinxlatexstyletext.sty b/sphinx/texinputs/sphinxlatexstyletext.sty index d900090..1655fbc 100644 --- a/sphinx/texinputs/sphinxlatexstyletext.sty +++ b/sphinx/texinputs/sphinxlatexstyletext.sty @@ -1,45 +1,11 @@ %% TEXT STYLING % % change this info string if making any custom modification -\ProvidesFile{sphinxlatexstyletext.sty}[2023/07/23 text styling] +\ProvidesFile{sphinxlatexstyletext.sty}[2024/07/01 v7.4.0 text styling] -% Basically everything here consists of macros which are part of the latex -% markup produced by the Sphinx latex writer - -% But those arise rather from the default definitions of the respective -% latex environments done in sphinxlatexadmonitions.sty -\def\sphinxstylenotetitle #1{\sphinxstrong{#1} } -\let\sphinxstylehinttitle \sphinxstylenotetitle % #1 holds the localized notice name -\let\sphinxstyleimportanttitle\sphinxstylenotetitle % followed by a colon -\let\sphinxstyletiptitle \sphinxstylenotetitle -\let\sphinxstylewarningtitle \sphinxstylenotetitle -\let\sphinxstylecautiontitle \sphinxstylenotetitle -\let\sphinxstyleattentiontitle\sphinxstylenotetitle -\let\sphinxstyledangertitle \sphinxstylenotetitle -\let\sphinxstyleerrortitle \sphinxstylenotetitle -\def\sphinxstyleseealsotitle#1{\sphinxstrong{#1}\par\nopagebreak} -% -% A utility to remove a final colon. Removing last token is not easy in -% LaTeX, and there are additional complications: -% - some languages will make the : "active" in document body, -% - the generic admonition ends up using "note", so for \sphinxnotetitle to -% use it safely, the utility has to allow an input not having any final colon. -% - a bit far-fetched but maybe there is more than one colon inside the input -% (possible from a generic admonition title). -% Hence the scary code. -\def\sphinxremovefinalcolon#1{% #1 is the "active" : TeX token -\protected\def\sphinxremovefinalcolon ##1{% - % complications due to : possibly "active" - \begingroup\ifnum\catcode`:=\active - \def\x####1#1\relax{####1}% - \else\def\x####1:\relax{####1}\fi - \expandafter\endgroup\x##1\relax - % trick to let \x work also if input ##1 has no ending colon - \@gobblefour#1\relax:\relax\relax\relax - }% -}% end of wrapper to inject active : -\begingroup\catcode`:\active\expandafter\endgroup\sphinxremovefinalcolon: -% See doc/latex.rst for an example. +% 7.4.0 has moved all that is related to admonitions to sphinxlatexadmonitions.sty +% Most everything left here consists of macros which are part of the latex markup +% produced by the Sphinx LaTeX writer. % Some custom font markup commands. \protected\def\sphinxstrong#1{\textbf{#1}} diff --git a/sphinx/texinputs/sphinxlatextables.sty b/sphinx/texinputs/sphinxlatextables.sty index 380fc17..54b42cb 100644 --- a/sphinx/texinputs/sphinxlatextables.sty +++ b/sphinx/texinputs/sphinxlatextables.sty @@ -1,7 +1,7 @@ %% TABLES (WITH SUPPORT FOR MERGED CELLS OF GENERAL CONTENTS) % % change this info string if making any custom modification -\ProvidesFile{sphinxlatextables.sty}[2022/08/15 tables]% +\ProvidesFile{sphinxlatextables.sty}[2024/07/01 v7.4.0 tables]% % Provides support for this output mark-up from Sphinx latex writer % and table templates: @@ -42,6 +42,11 @@ % - \sphinxthistablewithnocolorrowsstyle % - \sphinxthistablewithvlinesstyle % - \sphinxthistablewithnovlinesstyle +% +% Also provides user command (see docs) +% - \sphixncolorblend +% (Sphinx 7.4.0 now requires xcolor, so \sphinxcolorblend does not check +% its availability anymore) % % Executes \RequirePackage for: % @@ -103,6 +108,7 @@ \vbox{}% get correct baseline from above \LTpre\z@skip\LTpost\z@skip % set to zero longtable's own skips \edef\sphinxbaselineskip{\dimexpr\the\dimexpr\baselineskip\relax\relax}% + \spx@inframedtrue % message to sphinxheavybox }% % Compatibility with caption package \def\sphinxthelongtablecaptionisattop{% @@ -116,7 +122,9 @@ \def\sphinxatlongtableend{\@nobreakfalse % latex3/latex2e#173 \prevdepth\z@\vskip\sphinxtablepost\relax}% % B. Table with tabular or tabulary -\def\sphinxattablestart{\par\vskip\dimexpr\sphinxtablepre\relax}% +\def\sphinxattablestart{\par\vskip\dimexpr\sphinxtablepre\relax + \spx@inframedtrue % message to sphinxheavybox + }% \let\sphinxattableend\sphinxatlongtableend % This is used by tabular and tabulary templates \newcommand*\sphinxcapstartof[1]{% @@ -513,19 +521,6 @@ \fi } \def\sphinxcolorblend#1{\gdef\spx@colorblendparam{{#1}}\spx@table@hackCT@colorblend} -% Either xcolor.sty exists on user system and has been loaded by sphinx.sty, -% or it does not exist, so we can use \@ifpackageloaded without delaying. -\@ifpackageloaded{xcolor}% - {}% - {\def\sphinxcolorblend#1{% -\PackageWarning{sphinx}{This table uses \string\sphinxcolorblend\space - but xcolor is not in\MessageBreak - the TeX/LaTeX installation, the command will be\MessageBreak - ignored in this and the next tables}% - \global\let\sphinxcolorblend\@gobble - \sphinxbuildwarning{colorblend}% - }% - } %%%%%%%%%%%%%%%%%% diff --git a/sphinx/texinputs/sphinxpackageboxes.sty b/sphinx/texinputs/sphinxpackageboxes.sty index b0d3707..2345051 100644 --- a/sphinx/texinputs/sphinxpackageboxes.sty +++ b/sphinx/texinputs/sphinxpackageboxes.sty @@ -1,7 +1,12 @@ %% COLOURED BOXES % % change this info string if making any custom modification -\ProvidesPackage{sphinxpackageboxes}[2023/03/19 v6.2.0 advanced colored boxes] +\ProvidesPackage{sphinxpackageboxes}[2024/07/01 v7.4.0 advanced colored boxes] +% 7.4.0 removes usage of some booleans "...withbackgroundcolor" and +% "...withbordercolor" as well as \spx@boxes@border dimen which was +% actually really needed nowhere. This was done in sync with changes in +% sphinx.sty, sphinxlatexadmonitions.sty and sphinxlatexliterals.sty. +% % Optionally executes \RequirePackage for: % % - pict2e. Ideally we would like to use the v0.4a 2020/08/16 release of this @@ -78,15 +83,13 @@ %%%%%%%%%%%%%%%% % Internal registers, conditionals, colors to be configured by each caller % via a preliminary "setup" call -% \newif\ifspx@boxes@withshadow \newif\ifspx@boxes@insetshadow -\newif\ifspx@boxes@withbackgroundcolor +%%% \newif\ifspx@boxes@withbackgroundcolor % removed at 7.4.0 \newif\ifspx@boxes@withshadowcolor -\newif\ifspx@boxes@withbordercolor +%%% \newif\ifspx@boxes@withbordercolor % removed at 7.4.0 \newif\ifspx@boxes@shadowinbbox % -\newdimen\spx@boxes@border \newdimen\spx@boxes@border@top \newdimen\spx@boxes@border@right \newdimen\spx@boxes@border@bottom @@ -150,7 +153,6 @@ \spx@boxes@border@right \dimexpr\@nameuse{spx@#1@border@right}\relax \spx@boxes@border@bottom\dimexpr\@nameuse{spx@#1@border@bottom}\relax \spx@boxes@border@left \dimexpr\@nameuse{spx@#1@border@left}\relax - \spx@boxes@border \dimexpr\@nameuse{spx@#1@border}\relax % \spx@boxes@padding@top \dimexpr\@nameuse{spx@#1@padding@top}\relax \spx@boxes@padding@right \dimexpr\@nameuse{spx@#1@padding@right}\relax @@ -200,19 +202,9 @@ \spx@boxes@insetshadowfalse \fi % - \@nameuse{ifspx@#1@withbordercolor}% - \spx@boxes@withbordercolortrue \sphinxcolorlet{spx@boxes@bordercolor}{sphinx#1BorderColor}% - \else - \spx@boxes@withbordercolorfalse - \fi % - \@nameuse{ifspx@#1@withbackgroundcolor}% - \spx@boxes@withbackgroundcolortrue \sphinxcolorlet{spx@boxes@backgroundcolor}{sphinx#1BgColor}% - \else - \spx@boxes@withbackgroundcolorfalse - \fi % \@nameuse{ifspx@#1@withshadowcolor}% \spx@boxes@withshadowcolortrue @@ -447,14 +439,12 @@ \fi % BACKGROUND % draw background and move back to reference point - \ifspx@boxes@withbackgroundcolor {\color{spx@boxes@backgroundcolor}% \vrule\@height\ht\spx@tempboxa \@depth\dp\spx@tempboxa \@width\wd\spx@tempboxa \kern-\wd\spx@tempboxa }% - \fi % BOX SHADOW % draw shadow and move back to reference point \ifspx@boxes@withshadow @@ -494,13 +484,8 @@ }% end of \vbox \fi % end of shadow drawing, and we are back to horizontal reference point % BOX BORDER - \vbox{\ifspx@boxes@withbordercolor - \color{spx@boxes@bordercolor}% - \else - % 6.2.0: guard against a \color command in contents whose effect - % could leak to border at a pagebreak - \normalcolor - \fi + % 7.4.0 requires a set border color + \vbox{\color{spx@boxes@bordercolor}% \hrule\@height\spx@boxes@border@top \kern-\spx@boxes@border@top \setbox\spx@tempboxb\hb@xt@\wd\spx@tempboxa @@ -540,14 +525,13 @@ \def\spx@boxes@fcolorbox@insetshadow{% % BACKGROUND % draw background and move back to reference point - \ifspx@boxes@withbackgroundcolor + % 7.4.0 always assumes a background color {\color{spx@boxes@backgroundcolor}% \vrule\@height\ht\spx@tempboxa \@depth\dp\spx@tempboxa \@width\wd\spx@tempboxa \kern-\wd\spx@tempboxa }% - \fi % BOX SHADOW % draw shadow and move back to reference point \ifspx@boxes@withshadow @@ -589,13 +573,8 @@ }% end of \hbox, attention its depth is only |yoffset| if yoffset<0 \fi % end of inset shadow drawing, and we are back to horizontal reference point % BOX BORDER - \vbox{\ifspx@boxes@withbordercolor - \color{spx@boxes@bordercolor}% - \else - % 6.2.0: guard against a \color command in contents whose effect - % could leak to border at a pagebreak - \normalcolor - \fi + % 7.4.0 requires a set border color + \vbox{\color{spx@boxes@bordercolor}% \hrule\@height\spx@boxes@border@top \kern-\spx@boxes@border@top \setbox\spx@tempboxb\hb@xt@\wd\spx@tempboxa @@ -807,17 +786,11 @@ \fi \spx@boxes@border@defpath% must be redone after each \fillpath! (even if % was in a \put) - \ifspx@boxes@withbordercolor + % 7.4.0 requires a set border color \color{spx@boxes@bordercolor}% - \else - \normalcolor - \fi \fillpath - \ifspx@boxes@withbackgroundcolor + % and backgroundcolor command \color{spx@boxes@backgroundcolor}% - \else - \color{white}% - \fi \edef\spx@width{\number\dimexpr\spx@width-\spx@boxes@border@left -\spx@boxes@border@right sp}% \edef\spx@height{\number\dimexpr\spx@height-\spx@boxes@border@top diff --git a/sphinx/texinputs/sphinxpackagefootnote.sty b/sphinx/texinputs/sphinxpackagefootnote.sty index 5590123..7f2e291 100644 --- a/sphinx/texinputs/sphinxpackagefootnote.sty +++ b/sphinx/texinputs/sphinxpackagefootnote.sty @@ -1,6 +1,6 @@ \NeedsTeXFormat{LaTeX2e} \ProvidesPackage{sphinxpackagefootnote}% - [2022/08/15 v5.3.0 Sphinx custom footnotehyper package (Sphinx team)] + [2024/05/17 v7.3.x Sphinx custom footnotehyper package (Sphinx team)] %% %% Package: sphinxpackagefootnote %% Version: based on footnotehyper.sty 2021/02/04 v1.1d @@ -409,9 +409,10 @@ {\gdef\@thefnmark{?}% on first LaTeX run \refstepcounter{sphinxfootnotemark}\label{footnotemark.\thesphinxfootnotemark}% }% - {\sphinx@xdef@thefnmark{#1}% also defines \spx@footrefHref - \def\@makefnmark{% will be used by \H@@footnotemark + {\def\@makefnmark{% will be used by \H@@footnotemark \refstepcounter{sphinxfootnotemark}\label{footnotemark.\thesphinxfootnotemark}% + \sphinx@xdef@thefnmark{#1}% also defines \spx@footrefHref + % must be executed after \refstepcounter \hyper@linkstart{link}{\spx@footrefHref}% \spx@saved@makefnmark \hyper@linkend diff --git a/sphinx/texinputs_win/Makefile.jinja b/sphinx/texinputs_win/Makefile.jinja new file mode 100644 index 0000000..4131762 --- /dev/null +++ b/sphinx/texinputs_win/Makefile.jinja @@ -0,0 +1,86 @@ +# Makefile for Sphinx LaTeX output + +ALLDOCS = $(basename $(wildcard *.tex)) +ALLPDF = $(addsuffix .pdf,$(ALLDOCS)) +ALLDVI = $(addsuffix .dvi,$(ALLDOCS)) +ALLPS = $(addsuffix .ps,$(ALLDOCS)) + +# Prefix for archive names +ARCHIVEPREFIX = +# Additional LaTeX options +LATEXOPTS = +# format: pdf or dvi +FMT = pdf + +LATEX = latex +PDFLATEX = {{ latex_engine }} +MAKEINDEX = makeindex + +{% if latex_engine in ('platex', 'uplatex') -%} +all: all-pdf-ja +all-pdf: all-pdf-ja +{% else %} +all: $(ALLPDF) +all-pdf: $(ALLPDF) +{% endif -%} +all-dvi: $(ALLDVI) +all-ps: $(ALLPS) + +all-pdf-ja: + for f in *.pdf *.png *.gif *.jpg *.jpeg; do extractbb $$f; done + for f in *.tex; do {{ latex_engine }} -kanji=utf8 $(LATEXOPTS) $$f; done + for f in *.tex; do {{ latex_engine }} -kanji=utf8 $(LATEXOPTS) $$f; done + for f in *.tex; do {{ latex_engine }} -kanji=utf8 $(LATEXOPTS) $$f; done + -for f in *.idx; do mendex -U -f -d "`basename $$f .idx`.dic" -s python.ist $$f; done + for f in *.tex; do {{ latex_engine }} -kanji=utf8 $(LATEXOPTS) $$f; done + for f in *.tex; do {{ latex_engine }} -kanji=utf8 $(LATEXOPTS) $$f; done + for f in *.dvi; do dvipdfmx $$f; done + +zip: all-$(FMT) + mkdir $(ARCHIVEPREFIX)docs-$(FMT) + cp $(ALLPDF) $(ARCHIVEPREFIX)docs-$(FMT) + zip -q -r -9 $(ARCHIVEPREFIX)docs-$(FMT).zip $(ARCHIVEPREFIX)docs-$(FMT) + rm -r $(ARCHIVEPREFIX)docs-$(FMT) + +tar: all-$(FMT) + mkdir $(ARCHIVEPREFIX)docs-$(FMT) + cp $(ALLPDF) $(ARCHIVEPREFIX)docs-$(FMT) + tar cf $(ARCHIVEPREFIX)docs-$(FMT).tar $(ARCHIVEPREFIX)docs-$(FMT) + rm -r $(ARCHIVEPREFIX)docs-$(FMT) + +gz: tar + gzip -9 < $(ARCHIVEPREFIX)docs-$(FMT).tar > $(ARCHIVEPREFIX)docs-$(FMT).tar.gz + +bz2: tar + bzip2 -9 -k $(ARCHIVEPREFIX)docs-$(FMT).tar + +xz: tar + xz -9 -k $(ARCHIVEPREFIX)docs-$(FMT).tar + +# The number of LaTeX runs is quite conservative, but I don't expect it +# to get run often, so the little extra time won't hurt. +%.dvi: %.tex + $(LATEX) $(LATEXOPTS) '$<' + $(LATEX) $(LATEXOPTS) '$<' + $(LATEX) $(LATEXOPTS) '$<' + -$(MAKEINDEX) -s python.ist '$(basename $<).idx' + $(LATEX) $(LATEXOPTS) '$<' + $(LATEX) $(LATEXOPTS) '$<' + +%.pdf: %.tex + $(PDFLATEX) $(LATEXOPTS) '$<' + $(PDFLATEX) $(LATEXOPTS) '$<' + $(PDFLATEX) $(LATEXOPTS) '$<' + -$(MAKEINDEX) -s python.ist '$(basename $<).idx' + $(PDFLATEX) $(LATEXOPTS) '$<' + $(PDFLATEX) $(LATEXOPTS) '$<' + +%.ps: %.dvi + dvips '$<' + +clean: + rm -f *.log *.ind *.aux *.toc *.syn *.idx *.out *.ilg *.pla *.ps *.tar *.tar.gz *.tar.bz2 *.tar.xz $(ALLPDF) $(ALLDVI) + +.PHONY: all all-pdf all-dvi all-ps clean zip tar gz bz2 xz +.PHONY: all-pdf-ja + diff --git a/sphinx/texinputs_win/Makefile_t b/sphinx/texinputs_win/Makefile_t deleted file mode 100644 index 4131762..0000000 --- a/sphinx/texinputs_win/Makefile_t +++ /dev/null @@ -1,86 +0,0 @@ -# Makefile for Sphinx LaTeX output - -ALLDOCS = $(basename $(wildcard *.tex)) -ALLPDF = $(addsuffix .pdf,$(ALLDOCS)) -ALLDVI = $(addsuffix .dvi,$(ALLDOCS)) -ALLPS = $(addsuffix .ps,$(ALLDOCS)) - -# Prefix for archive names -ARCHIVEPREFIX = -# Additional LaTeX options -LATEXOPTS = -# format: pdf or dvi -FMT = pdf - -LATEX = latex -PDFLATEX = {{ latex_engine }} -MAKEINDEX = makeindex - -{% if latex_engine in ('platex', 'uplatex') -%} -all: all-pdf-ja -all-pdf: all-pdf-ja -{% else %} -all: $(ALLPDF) -all-pdf: $(ALLPDF) -{% endif -%} -all-dvi: $(ALLDVI) -all-ps: $(ALLPS) - -all-pdf-ja: - for f in *.pdf *.png *.gif *.jpg *.jpeg; do extractbb $$f; done - for f in *.tex; do {{ latex_engine }} -kanji=utf8 $(LATEXOPTS) $$f; done - for f in *.tex; do {{ latex_engine }} -kanji=utf8 $(LATEXOPTS) $$f; done - for f in *.tex; do {{ latex_engine }} -kanji=utf8 $(LATEXOPTS) $$f; done - -for f in *.idx; do mendex -U -f -d "`basename $$f .idx`.dic" -s python.ist $$f; done - for f in *.tex; do {{ latex_engine }} -kanji=utf8 $(LATEXOPTS) $$f; done - for f in *.tex; do {{ latex_engine }} -kanji=utf8 $(LATEXOPTS) $$f; done - for f in *.dvi; do dvipdfmx $$f; done - -zip: all-$(FMT) - mkdir $(ARCHIVEPREFIX)docs-$(FMT) - cp $(ALLPDF) $(ARCHIVEPREFIX)docs-$(FMT) - zip -q -r -9 $(ARCHIVEPREFIX)docs-$(FMT).zip $(ARCHIVEPREFIX)docs-$(FMT) - rm -r $(ARCHIVEPREFIX)docs-$(FMT) - -tar: all-$(FMT) - mkdir $(ARCHIVEPREFIX)docs-$(FMT) - cp $(ALLPDF) $(ARCHIVEPREFIX)docs-$(FMT) - tar cf $(ARCHIVEPREFIX)docs-$(FMT).tar $(ARCHIVEPREFIX)docs-$(FMT) - rm -r $(ARCHIVEPREFIX)docs-$(FMT) - -gz: tar - gzip -9 < $(ARCHIVEPREFIX)docs-$(FMT).tar > $(ARCHIVEPREFIX)docs-$(FMT).tar.gz - -bz2: tar - bzip2 -9 -k $(ARCHIVEPREFIX)docs-$(FMT).tar - -xz: tar - xz -9 -k $(ARCHIVEPREFIX)docs-$(FMT).tar - -# The number of LaTeX runs is quite conservative, but I don't expect it -# to get run often, so the little extra time won't hurt. -%.dvi: %.tex - $(LATEX) $(LATEXOPTS) '$<' - $(LATEX) $(LATEXOPTS) '$<' - $(LATEX) $(LATEXOPTS) '$<' - -$(MAKEINDEX) -s python.ist '$(basename $<).idx' - $(LATEX) $(LATEXOPTS) '$<' - $(LATEX) $(LATEXOPTS) '$<' - -%.pdf: %.tex - $(PDFLATEX) $(LATEXOPTS) '$<' - $(PDFLATEX) $(LATEXOPTS) '$<' - $(PDFLATEX) $(LATEXOPTS) '$<' - -$(MAKEINDEX) -s python.ist '$(basename $<).idx' - $(PDFLATEX) $(LATEXOPTS) '$<' - $(PDFLATEX) $(LATEXOPTS) '$<' - -%.ps: %.dvi - dvips '$<' - -clean: - rm -f *.log *.ind *.aux *.toc *.syn *.idx *.out *.ilg *.pla *.ps *.tar *.tar.gz *.tar.bz2 *.tar.xz $(ALLPDF) $(ALLDVI) - -.PHONY: all all-pdf all-dvi all-ps clean zip tar gz bz2 xz -.PHONY: all-pdf-ja - diff --git a/sphinx/themes/agogo/layout.html b/sphinx/themes/agogo/layout.html index 5b46819..9f5fabf 100644 --- a/sphinx/themes/agogo/layout.html +++ b/sphinx/themes/agogo/layout.html @@ -15,14 +15,14 @@
    {%- if logo_url %} {%- endif %} {%- block headertitle %} {%- endblock %} -